package com.xcong.excoin.modules.helpCenter.vo;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "NewNoticeInfoVo", description = "参数返回类")
|
public class NewNoticeInfoVo {
|
|
@ApiModelProperty("ID")
|
private Long id;
|
/**
|
* 创建者
|
*/
|
@ApiModelProperty("创建者")
|
private String createBy;
|
/**
|
* 创建时间
|
*/
|
@ApiModelProperty("创建时间")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
private Date createTime;
|
/**
|
* 所属类别(1:最新公告2:重要公告)
|
*/
|
@ApiModelProperty("所属类别(1:最新公告2:重要公告)")
|
private int articleNotice;
|
/**
|
* 文章id
|
*/
|
@ApiModelProperty("文章id")
|
private Long articleId;
|
/**
|
*文章标题
|
*/
|
@ApiModelProperty("文章标题")
|
private String articleTitle;
|
|
}
|