2 changed files with 79 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/11 9:06 上午 |
|||
*/ |
|||
@Data |
|||
public class MyPubIssuesAuditingFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8417818340366917358L; |
|||
|
|||
public interface MyPubIssuesAuditing{} |
|||
|
|||
@NotBlank(message = "页码不能为空",groups = MyPubIssuesAuditing.class) |
|||
private Integer pageNo; |
|||
|
|||
@NotBlank(message = "每页数量不能为空",groups = MyPubIssuesAuditing.class) |
|||
private Integer pageSize; |
|||
|
|||
private String userId; |
|||
} |
@ -0,0 +1,53 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/11 9:17 上午 |
|||
*/ |
|||
@Data |
|||
public class MyPubIssuesAuditingResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -659855213089511649L; |
|||
|
|||
/** |
|||
* 议题id |
|||
*/ |
|||
private String issueId; |
|||
|
|||
/** |
|||
* 议题标题 |
|||
*/ |
|||
private String issueTitle; |
|||
|
|||
/** |
|||
* 议题建议 |
|||
*/ |
|||
private String suggestion; |
|||
|
|||
/** |
|||
* 转议题时间 |
|||
*/ |
|||
private Long shiftIssueTime; |
|||
|
|||
/** |
|||
* 议题来源的小组名 |
|||
*/ |
|||
private String topicReleaseGroupName; |
|||
|
|||
/** |
|||
* 议题来源的网格名 |
|||
*/ |
|||
private String topicReleaseGridName; |
|||
|
|||
@JsonIgnore |
|||
private String gridId; |
|||
|
|||
@JsonIgnore |
|||
private String topicId; |
|||
|
|||
} |
Loading…
Reference in new issue