| | |
| | | }
|
| | |
|
| | | // 人员主键
|
| | | private Integer id;
|
| | | private String id;
|
| | | // 人员名字
|
| | | private String name;
|
| | | // 人员名首字母
|
| | | private String nameSpell;
|
| | | // 性别
|
| | | private Integer gender;
|
| | | private String gender;
|
| | | // 国籍
|
| | | private String country;
|
| | | // 省
|
| | |
| | | // 市
|
| | | private String city;
|
| | | // 出生日期
|
| | | private Date birthday;
|
| | | private String birthday;
|
| | | // 座机电话
|
| | | private String phone;
|
| | | // 移动电话
|
| | | private String mobilePhone;
|
| | | // 证件类型
|
| | | private Integer identityType;
|
| | | private String identityType;
|
| | | // 证件编号
|
| | | private String identify;
|
| | | // 公司主键
|
| | | private Integer companyId;
|
| | | private String companyId;
|
| | | // 部门主键
|
| | | private Integer departmentId;
|
| | | private String departmentId;
|
| | | // 职务主键
|
| | | private Integer postId;
|
| | | private String postId;
|
| | | // 人员备注消息
|
| | | private String remark;
|
| | | // 危险人员警告消息
|
| | | private Integer warning;
|
| | | private String warning;
|
| | |
|
| | | /**
|
| | | * Get 人员主键
|
| | | */
|
| | | public Integer getId() {
|
| | | public String getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 人员主键
|
| | | */
|
| | | public void setId(Integer id) {
|
| | | public void setId(String id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | |
| | | /**
|
| | | * Get 性别
|
| | | */
|
| | | public Integer getGender() {
|
| | | public String getGender() {
|
| | | return gender;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 性别
|
| | | */
|
| | | public void setGender(Integer gender) {
|
| | | public void setGender(String gender) {
|
| | | this.gender = gender;
|
| | | }
|
| | |
|
| | |
| | | /**
|
| | | * Get 出生日期
|
| | | */
|
| | | public Date getBirthday() {
|
| | | public String getBirthday() {
|
| | | return birthday;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 出生日期
|
| | | */
|
| | | public void setBirthday(Date birthday) {
|
| | | public void setBirthday(String birthday) {
|
| | | this.birthday = birthday;
|
| | | }
|
| | |
|
| | |
| | | /**
|
| | | * Get 证件类型
|
| | | */
|
| | | public Integer getIdentityType() {
|
| | | public String getIdentityType() {
|
| | | return identityType;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 证件类型
|
| | | */
|
| | | public void setIdentityType(Integer identityType) {
|
| | | public void setIdentityType(String identityType) {
|
| | | this.identityType = identityType;
|
| | | }
|
| | |
|
| | |
| | | /**
|
| | | * Get 公司主键
|
| | | */
|
| | | public Integer getCompanyId() {
|
| | | public String getCompanyId() {
|
| | | return companyId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 公司主键
|
| | | */
|
| | | public void setCompanyId(Integer companyId) {
|
| | | public void setCompanyId(String companyId) {
|
| | | this.companyId = companyId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 部门主键
|
| | | */
|
| | | public Integer getDepartmentId() {
|
| | | public String getDepartmentId() {
|
| | | return departmentId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 部门主键
|
| | | */
|
| | | public void setDepartmentId(Integer departmentId) {
|
| | | public void setDepartmentId(String departmentId) {
|
| | | this.departmentId = departmentId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Get 职务主键
|
| | | */
|
| | | public Integer getPostId() {
|
| | | public String getPostId() {
|
| | | return postId;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 职务主键
|
| | | */
|
| | | public void setPostId(Integer postId) {
|
| | | public void setPostId(String postId) {
|
| | | this.postId = postId;
|
| | | }
|
| | |
|
| | |
| | | /**
|
| | | * Get 危险人员警告消息
|
| | | */
|
| | | public Integer getWarning() {
|
| | | public String getWarning() {
|
| | | return warning;
|
| | | }
|
| | |
|
| | | /**
|
| | | * Set 危险人员警告消息
|
| | | */
|
| | | public void setWarning(Integer warning) {
|
| | | public void setWarning(String warning) {
|
| | | this.warning = warning;
|
| | | }
|
| | |
|