forked from rongchao/epmet-cloud-rizhao
8 changed files with 143 additions and 2 deletions
@ -0,0 +1,27 @@ |
|||||
|
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 10:47 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupPeopleRegisterListFormDTO extends PageFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6837328932168590069L; |
||||
|
|
||||
|
private String customerId; |
||||
|
private String staffId; |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 核酸检测开始、结束日期,eg:2022-02-02 |
||||
|
*/ |
||||
|
private String natStartDate; |
||||
|
private String natEndDate; |
||||
|
|
||||
|
private String placeOrgName; |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/10/27 10:53 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupPeopleRegisterListResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3000826126115218664L; |
||||
|
|
||||
|
private String placeOrgName; |
||||
|
private String natTime; |
||||
|
private String szTotal; |
||||
|
private String hsjcTotal; |
||||
|
private String id; |
||||
|
} |
Loading…
Reference in new issue