王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.slcf.pojo;
 
/**
 * 读卡器实体类
 * @author Administrator
 * @date 2018年8月27日
 */
public class ReaderBean {
    private Long f_ReaderID;
 
    private Long f_ControllerID;
 
    private Long f_ReaderNO;
 
    private String f_ReaderName;
 
    private Long f_PasswordEnabled;
 
    private Long f_Attend;    
 
    private Long f_Patrol;
 
    private Long f_DutyOnOff;
 
    private Long f_InputCardno_Enabled;
 
    public Long getF_ReaderID() {
        return f_ReaderID;
    }
 
    public void setF_ReaderID(Long f_ReaderID) {
        this.f_ReaderID = f_ReaderID;
    }
 
    public Long getF_ControllerID() {
        return f_ControllerID;
    }
 
    public void setF_ControllerID(Long f_ControllerID) {
        this.f_ControllerID = f_ControllerID;
    }
 
    public Long getF_ReaderNO() {
        return f_ReaderNO;
    }
 
    public void setF_ReaderNO(Long f_ReaderNO) {
        this.f_ReaderNO = f_ReaderNO;
    }
 
    public String getF_ReaderName() {
        return f_ReaderName;
    }
 
    public void setF_ReaderName(String f_ReaderName) {
        this.f_ReaderName = f_ReaderName;
    }
 
    public Long getF_PasswordEnabled() {
        return f_PasswordEnabled;
    }
 
    public void setF_PasswordEnabled(Long f_PasswordEnabled) {
        this.f_PasswordEnabled = f_PasswordEnabled;
    }
 
    public Long getF_Attend() {
        return f_Attend;
    }
 
    public void setF_Attend(Long f_Attend) {
        this.f_Attend = f_Attend;
    }
 
    public Long getF_Patrol() {
        return f_Patrol;
    }
 
    public void setF_Patrol(Long f_Patrol) {
        this.f_Patrol = f_Patrol;
    }
 
    public Long getF_DutyOnOff() {
        return f_DutyOnOff;
    }
 
    public void setF_DutyOnOff(Long f_DutyOnOff) {
        this.f_DutyOnOff = f_DutyOnOff;
    }
 
    public Long getF_InputCardno_Enabled() {
        return f_InputCardno_Enabled;
    }
 
    public void setF_InputCardno_Enabled(Long f_InputCardno_Enabled) {
        this.f_InputCardno_Enabled = f_InputCardno_Enabled;
    }    
 
}