| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.cyksj.model.entity;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author chan
- * @date 2022/9/26 4:58 PM
- */
- @Getter
- @Setter
- @SearchBean(tables = "goods_don")
- public class GoodsDon extends BaseEntity {
- /**
- * 商品录入人
- */
- private String writer;
- /**
- * 标签
- */
- private String tags;
- /**
- * 商品名称
- */
- private String title;
- /**
- * 缩略图
- */
- private String logo;
- /**
- * 背景图
- */
- private String img;
- /**
- * true 上架 / false 下架
- */
- private Boolean status;
- /**
- * true 存在 / false 删除
- */
- private Boolean deleted;
- /**
- * 详情
- */
- private String detail;
- /**
- * 描述
- */
- private String remark;
- private Integer type;
- }
|