| | |
| | | package com.xcong.farmer.cms.modules.system.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | 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; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 文章表 |
| | |
| | | |
| | | private String articleUrl; |
| | | |
| | | //内容类型 1:文章 2:图片 3:文件 4:音频" |
| | | private Integer contentType; |
| | | |
| | | @TableField(exist = false) |
| | | private String columnCode; |
| | | |
| | | @TableField(exist = false) |
| | | private String columnName; |
| | | |
| | | /** |
| | | * 栏目目录 |
| | | */ |
| | | @TableField(exist = false) |
| | | private String path; |
| | | @TableField(exist = false) |
| | | private List<Long> columnIds; |
| | | |
| | | } |