7 changed files with 133 additions and 1 deletions
@ -0,0 +1,16 @@ |
|||
package com.epmet.opendata.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class WghSjxxbDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -7558785082629887627L; |
|||
|
|||
/** |
|||
* 唯一id |
|||
*/ |
|||
private String taskid; |
|||
} |
@ -0,0 +1,46 @@ |
|||
package com.epmet.opendata.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class WghSjxxbDetailResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8965818800454155651L; |
|||
|
|||
/** |
|||
* 事件来源 |
|||
*/ |
|||
private String infosourcename; |
|||
|
|||
/** |
|||
* 事件类别 |
|||
*/ |
|||
private String infotypename; |
|||
|
|||
/** |
|||
* 社区名称 |
|||
*/ |
|||
private String communityname; |
|||
|
|||
/** |
|||
* 事见描述 |
|||
*/ |
|||
private String description; |
|||
|
|||
/** |
|||
* 事见地址 |
|||
*/ |
|||
private String address; |
|||
|
|||
/** |
|||
* 事见状态 |
|||
*/ |
|||
private String statusname; |
|||
|
|||
/** |
|||
* 街道名称 |
|||
*/ |
|||
private String streetname; |
|||
} |
Loading…
Reference in new issue