8 changed files with 132 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||
package com.epmet.opendata.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class CaKettleDetailsById implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8874110627694588503L; |
|||
|
|||
private Integer baseKeyId; |
|||
} |
@ -0,0 +1,47 @@ |
|||
package com.epmet.opendata.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class CaKettleDetailsResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 2712173770296330515L; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String griddingname; |
|||
|
|||
/** |
|||
* 事件名称 |
|||
*/ |
|||
private String eventtitle; |
|||
|
|||
/** |
|||
* 发生日期 |
|||
*/ |
|||
private Date eventdate; |
|||
|
|||
/** |
|||
* 发生地点 |
|||
*/ |
|||
private String eventaddrdetail; |
|||
|
|||
/** |
|||
* 事件简述 |
|||
*/ |
|||
private String eventtext; |
|||
|
|||
/** |
|||
* 涉及单位 |
|||
*/ |
|||
private String responsibilityUnit; |
|||
|
|||
/** |
|||
* 主要当事人姓名 |
|||
*/ |
|||
private String mainpartyid; |
|||
} |
Loading…
Reference in new issue