1 changed files with 63 additions and 0 deletions
@ -0,0 +1,63 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* 疫情防控 - 监测点信息 |
|||
**/ |
|||
@Data |
|||
public class EpdcScreenTestingPointResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 8941151515678741844L; |
|||
|
|||
/** |
|||
* 监测点 ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 监测点名称 |
|||
*/ |
|||
private String testingPointName; |
|||
|
|||
/** |
|||
* 位置 |
|||
*/ |
|||
private String address; |
|||
|
|||
/** |
|||
* 经度 |
|||
*/ |
|||
private BigDecimal longitude; |
|||
|
|||
/** |
|||
* 纬度 |
|||
*/ |
|||
private BigDecimal latitude; |
|||
|
|||
/** |
|||
* 负责人 |
|||
*/ |
|||
private String contacts; |
|||
|
|||
/** |
|||
* 联系电话 |
|||
*/ |
|||
private String tel; |
|||
|
|||
/** |
|||
* 监测点介绍 |
|||
*/ |
|||
private String introduce; |
|||
|
|||
// 以下字段为虚字段
|
|||
|
|||
/** |
|||
* 核酸检测人数 |
|||
*/ |
|||
private Integer testNum; |
|||
|
|||
} |
Loading…
Reference in new issue