123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.example.xiaoshiweixinback.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- import org.joda.time.DateTime;
- /**
- * 产品
- * @TableName product
- */
- @TableName(value ="product")
- @Data
- public class Product extends BaseEntity<Product> {
- /**
- * ID
- */
- private Integer id;
- /**
- *
- */
- private String name;
- /**
- *
- */
- private String description;
- /**
- * 检索条件
- */
- private String searchCondition;
- /**
- * 来源
- */
- private String sourceFrom;
- /**
- * 售卖平台
- */
- private String sellPlatform;
- /**
- *
- */
- private Integer ifHot;
- /**
- * 是否显示(上架)
- */
- private Integer ifShow;
- /**
- * 是否自定义
- */
- private Boolean ifCustomized;
- /**
- *
- */
- private String createId;
- /**
- *
- */
- private DateTime createTime;
- }
|