| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.FieldStrategy;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author zwhui
- * @date 2023/10/11 17:11
- */
- @Getter
- @Setter
- public class Information extends BaseEntity{
- /**
- * 文章标题
- */
- private String title;
- /**
- * 副标题
- */
- private String subTitle;
- @TableField(updateStrategy = FieldStrategy.IGNORED)
- private String logo;
- /**
- * 缩略图
- */
- private String thumbnail;
- /**
- * 文章类型
- */
- private String categoryIds;
- /**
- * 内容
- */
- private String content;
- /**
- * true 上架 || false 下架
- */
- private Boolean status;
- /**
- * true 推荐 || false
- */
- private Boolean recommend;
- /**
- * true 置顶 || false
- */
- private Boolean top;
- /**
- * true 存在 || false 删除
- */
- private Boolean deleted;
- /**
- * 推荐商品
- */
- private String goodsIds;
- }
|