forked from rongchao/epmet-cloud-rizhao
10 changed files with 153 additions and 1 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form;/** |
||||
|
* @author ZhaoQiFeng |
||||
|
* @date 2023/2/2 |
||||
|
* @apiNote |
||||
|
*/ |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2023/2/2 15:20 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VaccinePieFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
private String customerId; |
||||
|
private String agencyId; |
||||
|
private String gridId; |
||||
|
/** |
||||
|
* 接种次数 |
||||
|
*/ |
||||
|
private String vaccineCount; |
||||
|
} |
@ -0,0 +1,22 @@ |
|||||
|
package com.epmet.dto.result;/** |
||||
|
* @author ZhaoQiFeng |
||||
|
* @date 2023/2/2 |
||||
|
* @apiNote |
||||
|
*/ |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2023/2/2 15:20 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VaccinePieResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
private String code; |
||||
|
private String value; |
||||
|
private String label; |
||||
|
} |
Loading…
Reference in new issue