| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.xcong.farmer.cms.common.system.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import java.util.Date; |
| | | |
| | |
| | | private String title; |
| | | //副标题 |
| | | private String childTitle; |
| | | //作者 |
| | | private String author; |
| | | //描述 |
| | | private String describe; |
| | | private String remark; |
| | | //所属栏目ID |
| | | private Long columnId; |
| | | //访问量 |
| | |
| | | private String articleDetails; |
| | | //是否删除 0:已删除 1:未删除 |
| | | private Integer delStatus; |
| | | //所属ID |
| | | private Long belongId; |
| | | |
| | | } |