长庆项目day1
This commit is contained in:
parent
56fe5a2b45
commit
3be03258a0
|
@ -0,0 +1,31 @@
|
|||
package net.shapelight.modules.iCq.controller.member.vo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class MemberListVo {
|
||||
// id 或者 person id 一样的
|
||||
private Long id;
|
||||
//单位名称
|
||||
private String unitName;
|
||||
//姓名
|
||||
private String name;
|
||||
//性别
|
||||
private String sex;
|
||||
//手机号
|
||||
private String phone;
|
||||
//身份证号
|
||||
private String idCard;
|
||||
private String isEnterSulfurArea; //含硫
|
||||
private String isProtectDevice; //防护设备
|
||||
private String isWatchSafeVideo; //安全视频是否观看
|
||||
//员工类型
|
||||
private String employeeType;
|
||||
//是否提取成功
|
||||
private Integer isExtract;
|
||||
|
||||
}
|
Loading…
Reference in New Issue