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;
|
}
|