7 changed files with 172 additions and 0 deletions
@ -0,0 +1,35 @@ |
|||
package com.epmet.opendata.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class NewWghSjxxFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4846956644682609996L; |
|||
|
|||
/** |
|||
* 网格员名称 |
|||
*/ |
|||
private String wgymc; |
|||
|
|||
/** |
|||
* 街道标签 |
|||
*/ |
|||
private String ssjdbq; |
|||
|
|||
/** |
|||
* 社区标签 |
|||
*/ |
|||
private String sssqbq; |
|||
|
|||
/** |
|||
* 核查意见 |
|||
*/ |
|||
private String hcyj; |
|||
|
|||
private Integer page; |
|||
|
|||
private Integer limit; |
|||
} |
@ -0,0 +1,43 @@ |
|||
package com.epmet.opendata.dto.result; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class NewWghSjxxResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -4088593179578850358L; |
|||
|
|||
/** |
|||
* 网格员标签 |
|||
*/ |
|||
private String wgymc; |
|||
|
|||
/** |
|||
* 所属街道标签 |
|||
*/ |
|||
private String ssjdbq; |
|||
|
|||
/** |
|||
* 所属社区标签 |
|||
*/ |
|||
private String sssqbq; |
|||
|
|||
/** |
|||
* 核查意见 |
|||
*/ |
|||
private String hcyj; |
|||
|
|||
/** |
|||
* 核查时间 |
|||
*/ |
|||
private Date hcsj; |
|||
|
|||
/** |
|||
* 事件描述 |
|||
*/ |
|||
private String sjms; |
|||
} |
Loading…
Reference in new issue