2 changed files with 71 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
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/10 11:16 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenGridGovernanceItemFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 2516740295976767405L; |
|||
|
|||
/** |
|||
* 页码 -必传项 |
|||
*/ |
|||
@NotNull(message = "页码 不能为空") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 -必传项 |
|||
*/ |
|||
@NotNull(message = "页容量 不能为空") |
|||
private Integer pageSize; |
|||
|
|||
/** |
|||
* 排序:0-最新,1-关注度 |
|||
*/ |
|||
private String orderType; |
|||
} |
@ -0,0 +1,39 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/10 13:41 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenGridGovernanceItemResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 5974665915967745709L; |
|||
|
|||
/** |
|||
* 项目ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 项目内容 |
|||
*/ |
|||
private String itemContent; |
|||
|
|||
/** |
|||
* 项目类别 |
|||
*/ |
|||
private String categoryName; |
|||
|
|||
/** |
|||
* 关注度 |
|||
*/ |
|||
private String attentionNum; |
|||
|
|||
/** |
|||
* 发布时间 |
|||
*/ |
|||
private String distributeTime; |
|||
} |
Loading…
Reference in new issue