| | |
| | | * @date 2018年7月3日
|
| | | */
|
| | | @Table("yeshi_ec_quality_factory")
|
| | | public class QualityFactory implements Serializable {
|
| | | public class QualityFactory implements Serializable{
|
| | |
|
| | | /**
|
| | | *
|
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | // 人工筛选入库
|
| | | public final static int MODE_MANUAL = 1;
|
| | | // 系统算法 -自动入库
|
| | | public final static int MODE_SYSTEM = 2;
|
| | | // 自动入库
|
| | | public final static int MODE_AUTO = 3;
|
| | | |
| | | |
| | |
|
| | | // 来源-淘宝
|
| | | public final static int SOURCE_TAOBAO = 1;
|
| | |
| | | public final static int SOURCE_OTHER = 5;
|
| | |
|
| | |
|
| | | |
| | | |
| | | @Column(name = "sg_id")
|
| | | private Long id;
|
| | |
|
| | | |
| | | @Column(name = "sg_class_id")
|
| | | private Long systemCid; // 商品类目id
|
| | |
|
| | | @Column(name = "sg_goods_id")
|
| | | private TaoBaoGoodsBrief taoBaoGoodsBrief;// 商品id
|
| | |
|
| | |
|
| | | @Column(name = "sg_entry_mode")
|
| | | private Integer entryMode; // 录入方式
|