11 changed files with 184 additions and 2 deletions
@ -0,0 +1,52 @@ |
|||
package com.elink.esua.epdc.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author songyunpeng |
|||
* @Date 2020/6/3 16:24 |
|||
*/ |
|||
@Data |
|||
public class MyPartyTopicFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3034807666143092535L; |
|||
|
|||
|
|||
/** |
|||
* 页码 |
|||
*/ |
|||
@NotNull(message = "页码不能为空") |
|||
private Integer pageIndex; |
|||
/** |
|||
* 页容量 |
|||
*/ |
|||
@NotNull(message = "分页数量不能为空") |
|||
private Integer pageSize; |
|||
|
|||
/** |
|||
* 第一页查询发起时的时间 |
|||
*/ |
|||
@NotBlank(message = "时间戳不能为空") |
|||
private String timestamp; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
/** |
|||
* 话题类型 |
|||
*/ |
|||
private String topicType; |
|||
/** |
|||
* 党群ID |
|||
*/ |
|||
private String partyGroupId; |
|||
/** |
|||
* 话题ID |
|||
*/ |
|||
private String partyTopicId; |
|||
|
|||
} |
Loading…
Reference in new issue