7 changed files with 180 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
package com.epmet.opendata.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.net.Inet4Address; |
|||
|
|||
@Data |
|||
public class WghSjxxFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3208547934202974728L; |
|||
|
|||
/** |
|||
* 事件来源 |
|||
*/ |
|||
private String infosourcename; |
|||
|
|||
/** |
|||
* 事件类别 |
|||
*/ |
|||
private String infotypename; |
|||
|
|||
/** |
|||
* 社区名称 |
|||
*/ |
|||
private String communityname; |
|||
|
|||
/** |
|||
* 事件状态 |
|||
*/ |
|||
private String statusname; |
|||
|
|||
private Integer page; |
|||
|
|||
private Integer limit; |
|||
} |
@ -0,0 +1,47 @@ |
|||
package com.epmet.opendata.dto.result; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class WghSjxxResultDTO extends PageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5318466282262952340L; |
|||
|
|||
/** |
|||
* 事件来源 |
|||
*/ |
|||
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