New file |
| | |
| | | package cn.com.basic.face.discern.entity;
|
| | |
|
| | |
|
| | | import java.io.Serializable;
|
| | |
|
| | | import cn.com.basic.face.discern.common.BaseEntity;
|
| | | /**
|
| | | * Created by SJW on 2017/7/21 0021.
|
| | | */
|
| | |
|
| | | public class Employee extends BaseEntity implements Serializable {
|
| | |
|
| | | public static final class FieldNames {
|
| | | //人员主键
|
| | | private static final String registerId="registerId";
|
| | | //设备所在机构id
|
| | | private static final String deviceCompanyId="deviceCompanyId";
|
| | |
|
| | | //同步时间
|
| | | private static final String updateTime="updateTime";
|
| | |
|
| | | //是否同步
|
| | | private static final String isSynchron="isSynchron";
|
| | |
|
| | |
|
| | | }
|
| | | //人员主键
|
| | | private String registerId ;
|
| | | //设备所在机构id
|
| | | private String deviceCompanyId;
|
| | |
|
| | | //同步时间
|
| | | private String updateTime;
|
| | |
|
| | | //是否同步
|
| | | private String isSynchron;
|
| | |
|
| | | public String getRegisterId() {
|
| | | return registerId;
|
| | | }
|
| | |
|
| | | public void setRegisterId(String registerId) {
|
| | | this.registerId = registerId;
|
| | | }
|
| | |
|
| | | public String getDeviceCompanyId() {
|
| | | return deviceCompanyId;
|
| | | }
|
| | |
|
| | | public void setDeviceCompanyId(String deviceCompanyId) {
|
| | | this.deviceCompanyId = deviceCompanyId;
|
| | | }
|
| | |
|
| | | public String getUpdateTime() {
|
| | | return updateTime;
|
| | | }
|
| | |
|
| | | public void setUpdateTime(String updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public String getIsSynchron() {
|
| | | return isSynchron;
|
| | | }
|
| | |
|
| | | public void setIsSynchron(String isSynchron) {
|
| | | this.isSynchron = isSynchron;
|
| | | }
|
| | | }
|