| | |
| | | public class AttendanceQueryCondition extends BaseCondition {
|
| | |
|
| | | public static final class FieldNames {
|
| | | /**
|
| | | *
|
| | | */
|
| | | public static final String deviceCompanyId = "deviceCompanyId";
|
| | | /**
|
| | | * 人员名字
|
| | | */
|
| | | public static final String username = "username";
|
| | | }
|
| | |
|
| | | //
|
| | | private String deviceCompanyId;
|
| | | // 人员名字
|
| | | private String username;
|
| | |
|
| | | /**
|
| | | * Get
|
| | | */
|
| | | public String getDeviceCompanyId() {
|
| | | return deviceCompanyId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set
|
| | | */
|
| | | public void setDeviceCompanyId(String deviceCompanyId) {
|
| | | this.deviceCompanyId = deviceCompanyId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 人员名字
|
| | | */
|
| | | public String getUsername() {
|
| | | return username;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 人员名字
|
| | | */
|
| | | public void setUsername(String username) {
|
| | | this.username = username;
|
| | | }
|
| | |
|
| | | public String toString() {
|
| | | return "";
|
| | | return
|
| | | ", =" + deviceCompanyId + ",人员名字 =" + username ;
|
| | | }
|
| | | }
|