12 changed files with 208 additions and 2 deletions
@ -0,0 +1,43 @@ |
|||
package com.elink.esua.epdc.dto.consult.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2020/3/3 9:42 |
|||
* @Description: 获取网格内网格员公示信息 入参 |
|||
*/ |
|||
@Data |
|||
public class GridOperatorListFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 6657811237503660654L; |
|||
|
|||
|
|||
/** |
|||
* pageIndex : 9380 |
|||
* pageSize : 77145 |
|||
* timestamp : bvthA2vDrf |
|||
*/ |
|||
|
|||
/** |
|||
* 页码,从1开始 |
|||
*/ |
|||
@Min(value = 1, message = "页码必须大于0") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量,默认10页 |
|||
*/ |
|||
@Min(value = 1, message = "每页条数必须大于必须大于0") |
|||
private Integer pageSize = 10; |
|||
|
|||
/** |
|||
* 第一页查询发起时的时间 |
|||
*/ |
|||
@NotBlank(message = "时间戳不能为空") |
|||
private String timestamp; |
|||
|
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.elink.esua.epdc.dto.consult.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2020/3/3 9:33 |
|||
* @Description: 获取网格内网格员公示信息 |
|||
*/ |
|||
@Data |
|||
public class GridOperatorListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -3136273091412370579L; |
|||
|
|||
|
|||
/** |
|||
* realName : t0vomWYcIf |
|||
* sex : py2l5BDyZ0 |
|||
* mobile : 5w4uEShWqw |
|||
* dutyCategoryName : bHKUpRkzRv |
|||
* remark : MeAS4cLAcD |
|||
* workUnit : yspgMhIk9P |
|||
* faceImg : bocqTGoyRo |
|||
*/ |
|||
|
|||
private String realName; |
|||
private String sex; |
|||
private String mobile; |
|||
private String dutyCategoryName; |
|||
private String remark; |
|||
private String workUnit; |
|||
private String faceImg; |
|||
|
|||
} |
Loading…
Reference in new issue