1 changed files with 60 additions and 0 deletions
@ -0,0 +1,60 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/7/15 4:34 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ArticleListFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6397877545890473794L; |
||||
|
|
||||
|
/** |
||||
|
* 文章标题 |
||||
|
*/ |
||||
|
private String title; |
||||
|
/** |
||||
|
* 标签Id集合 |
||||
|
*/ |
||||
|
private List<String> tagIds; |
||||
|
/** |
||||
|
* 上下线状态,上线:published,下线:offline |
||||
|
*/ |
||||
|
private String statusFlag; |
||||
|
/** |
||||
|
* 发布范围类型,组织:agency,网格:grid |
||||
|
*/ |
||||
|
private String publishRangeType; |
||||
|
/** |
||||
|
* 发布范围Id==网格Id |
||||
|
*/ |
||||
|
private String publishRangeId; |
||||
|
/** |
||||
|
* 开始日期 yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
private String startDate; |
||||
|
/** |
||||
|
* 结束日期 yyyy-MM-dd HH:mm:ss |
||||
|
*/ |
||||
|
private String endDate; |
||||
|
/** |
||||
|
* 页码 |
||||
|
*/ |
||||
|
private Integer pageNo = 1; |
||||
|
/** |
||||
|
* 每页显示数量 |
||||
|
*/ |
||||
|
private Integer pageSize = 20; |
||||
|
|
||||
|
private Boolean isPage = true; |
||||
|
private String articleId; |
||||
|
private String customerId; |
||||
|
private String agencyId; |
||||
|
private String staffId; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue