2 changed files with 61 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/23 18:43 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenItemListFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 9002139861797676107L; |
|||
|
|||
/** |
|||
* 页码 -必传项 |
|||
*/ |
|||
@NotNull(message = "页码 不能为空") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 -必传项 |
|||
*/ |
|||
@NotNull(message = "页容量 不能为空") |
|||
private Integer pageSize; |
|||
} |
@ -0,0 +1,34 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/23 18:44 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenItemListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -2604744896996074330L; |
|||
|
|||
/** |
|||
* 项目ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 项目内容 |
|||
*/ |
|||
private String itemContent; |
|||
|
|||
/** |
|||
* 纬度 |
|||
*/ |
|||
private String issueLatitude; |
|||
|
|||
/** |
|||
* 经度 |
|||
*/ |
|||
private String issueLongitude; |
|||
} |
Loading…
Reference in new issue