package com.matrix.system.score.entity;
|
|
import com.matrix.core.anotations.Extend;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @description 商品表
|
* @author jyy
|
* @date 2021-02-26 15:26
|
*/
|
@Data
|
@TableName("score_goods")
|
public class ScoreGoods extends BaseEntity{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/**
|
* 商品名称
|
*/
|
|
|
private String goodsName;
|
|
/**
|
* 商品编码
|
*/
|
|
|
private String goodsCode;
|
|
/**
|
* 商品分类ID
|
*/
|
|
|
private Long categoryId;
|
|
/**
|
* 上架状态(1:不上架 2:上架)
|
*/
|
|
|
private Integer state;
|
|
/**
|
* 限购数量(设置为限购数量 不设置则表示不限购)
|
*/
|
|
|
private Integer limitedNum;
|
|
/**
|
* 所需积分(单价)
|
*/
|
|
|
private Integer scorePrice;
|
|
/**
|
* 市场价
|
*/
|
|
|
private String markPrice;
|
|
/**
|
* 商品详情
|
*/
|
|
|
private String details;
|
|
/**
|
* 推荐到栏目
|
*/
|
|
|
private Long navigationId;
|
|
/**
|
* 备注
|
*/
|
|
|
private String remarks;
|
|
/**
|
* 所属公司ID
|
*/
|
|
|
private Long companyId;
|
|
|
|
|
}
|