xiaoyong931011
2022-09-22 a56aa58c55f966c38cb8b5fc969eb1018fad5ce8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package cc.mrbird.febs.mall.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "AdminMallNewsInfoVo", description = "信息返回类")
public class AdminMallNewsInfoVo {
 
    private Long id;
 
    private String title;
 
    private String content;
 
    private String thumb;
 
    private Long targetId;
 
    private String targetName;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    /**
     * 1-文章2-跳转到产品
     */
    private Integer type;
 
    private String categoryName;
 
    private Integer isTop;
}