7 changed files with 271 additions and 0 deletions
@ -0,0 +1,41 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/27 09:01 |
|||
*/ |
|||
@Data |
|||
public class EmployeeRegisterListFormDTO extends PageFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -5327830228503748858L; |
|||
|
|||
private String customerId; |
|||
private String staffId; |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 核酸检测开始、结束日期,eg:2022-02-02 |
|||
*/ |
|||
private String natStartDate; |
|||
private String natEndDate; |
|||
|
|||
/** |
|||
* 检查状态,1:已检测;0:未检测 |
|||
*/ |
|||
private String checkStatus; |
|||
|
|||
private String placeOrgName; |
|||
|
|||
/** |
|||
* 场所类别:0九小场所、1企事业单位 |
|||
*/ |
|||
private String placeCategory; |
|||
|
|||
private String name; |
|||
private String mobile; |
|||
private String idCard; |
|||
} |
@ -0,0 +1,37 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/27 09:10 |
|||
*/ |
|||
@Data |
|||
public class EmployeeRegisterListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -7966608283208846072L; |
|||
|
|||
private String placeOrgName; |
|||
private String name; |
|||
private String mobile; |
|||
private String idCard; |
|||
private Integer ymjzCount; |
|||
private String latestNatTime; |
|||
private String dbCompare; |
|||
private String dbCompareName; |
|||
private String registerId; |
|||
|
|||
public EmployeeRegisterListResultDTO() { |
|||
this.placeOrgName = ""; |
|||
this.name = ""; |
|||
this.mobile = ""; |
|||
this.idCard = ""; |
|||
this.ymjzCount = NumConstant.ZERO; |
|||
this.latestNatTime = ""; |
|||
this.dbCompare = ""; |
|||
this.dbCompareName = ""; |
|||
this.registerId = ""; |
|||
} |
|||
} |
Loading…
Reference in new issue