5 changed files with 58 additions and 8 deletions
@ -0,0 +1,20 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 政府端:选中草稿编辑,获取草稿属性-封面图片 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/6/3 14:26 |
|||
*/ |
|||
@Data |
|||
public class CoverImgDTO implements Serializable { |
|||
private static final long serialVersionUID = -6735712590479867385L; |
|||
private String coverId; |
|||
private String url; |
|||
private String auditStatus; |
|||
private String auditReason; |
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 政府端:选中草稿编辑,获取草稿属性 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/6/3 14:15 |
|||
*/ |
|||
@Data |
|||
public class DraftAttrResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 6999941497971286747L; |
|||
private String draftId; |
|||
private CoverImgDTO coverImg; |
|||
private List<String> tagNameList; |
|||
private Integer isTop; |
|||
private List<String> gridIdList; |
|||
private String publisher; |
|||
private String publisherName; |
|||
@JsonFormat(pattern="yyyy-MM-dd", timezone = "GMT+8") |
|||
private Date publishDate; |
|||
private String title; |
|||
private String publishRangeDesc; |
|||
private String tags; |
|||
private String publisherType; |
|||
} |
Loading…
Reference in new issue