AttendanceInfoBean.java
1.13 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.sincere.att.vo;
/**
 * 考勤账号表
 */
public class AttendanceInfoBean {
    /**
     * 控制器类型,0是其他控制器,1是微耕控制器
     */
    private Integer isControl;
    public Integer getIsControl() {
        return isControl;
    }
    public void setIsControl(Integer isControl) {
        this.isControl = isControl;
    }
    public String getInfo() {
        return info;
    }
    public void setInfo(String info) {
        this.info = info;
    }
    public String getUsername() {
        return username;
    }
    public void setUsername(String username) {
        this.username = username;
    }
    public String getPwd() {
        return pwd;
    }
    public void setPwd(String pwd) {
        this.pwd = pwd;
    }
    /**
     * 刷卡信息,XML格式字符串:<AttendanceInfo submitTime="2017-08-01T16:30:30">
     * <Info device="FD98DC58C467DB43" card="223456789" operTime="2017-08-01T11:20:30" direc="0"></Info>
     * </AttendanceInfo>
     */
    private String info;
    /**
     * 账号
     */
    private String username;
    /**
     * 密码
     */
    private String pwd;
}