liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.basic.x01.location.model;
 
public class Form_sign {
    
    public String getSign_time() {
        return sign_time;
    }
    public void setSign_time(String sign_time) {
        this.sign_time = sign_time;
    }
    public String getSign_card_id() {
        return sign_card_id;
    }
    public void setSign_card_id(String sign_card_id) {
        this.sign_card_id = sign_card_id;
    }
    public int getSign_type() {
        return sign_type;
    }
    public void setSign_type(int sign_type) {
        this.sign_type = sign_type;
    }
    public int getLocation_id() {
        return location_id;
    }
    public void setLocation_id(int location_id) {
        this.location_id = location_id;
    }
    String sign_time;
    String sign_card_id;
    int sign_type;
    int location_id;
 
}