package com.yeshi.fanli.entity.bus.lable;
|
|
import java.util.Date;
|
|
import org.yeshi.utils.mybatis.Column;
|
import org.yeshi.utils.mybatis.Table;
|
|
import com.yeshi.fanli.entity.common.AdminUser;
|
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
|
/**
|
* 提现审批记录
|
*
|
* @author yj
|
*
|
* @date 2018年7月3日
|
*/
|
@Table("yeshi_ec_quality_factory")
|
public class QualityFactory {
|
|
// 人工筛选入库
|
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_TAOBAO_MATERIAL = 11;
|
// 来源-淘宝大淘客
|
public final static int SOURCE_TAOBAO_DATAOKE = 12;
|
// 来源-京东
|
public final static int SOURCE_JINGDONG = 2;
|
// 来源-拼多多
|
public final static int SOURCE_PINDUODUO = 3;
|
// 来源-唯品会
|
public final static int SOURCE_WEIPINHUI = 4;
|
// 来源-其他商务合作
|
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; // 录入方式
|
|
@Column(name = "sg_goods_source")
|
private Integer goodsSource; // 商品来源
|
|
@Column(name = "sg_source_calss")
|
private String sourceCalss; // 来源具体类目
|
|
@Column(name = "sg_rule_id")
|
private BoutiqueAutoRule boutiqueAutoRule; // 录入方式
|
|
@Column(name = "sg_weight")
|
private Integer weight; // 商品权重 -- 排序
|
|
@Column(name = "sg_create_aid")
|
private AdminUser createUser; // 创建人
|
|
@Column(name = "sg_createtime")
|
private Date createtime; // 创建时间
|
|
@Column(name = "sg_update_aid")
|
private AdminUser updateUser; // 修改人
|
|
@Column(name = "sg_updatetime")
|
private Date updatetime; // 更新时间
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public TaoBaoGoodsBrief getTaoBaoGoodsBrief() {
|
return taoBaoGoodsBrief;
|
}
|
|
public void setTaoBaoGoodsBrief(TaoBaoGoodsBrief taoBaoGoodsBrief) {
|
this.taoBaoGoodsBrief = taoBaoGoodsBrief;
|
}
|
|
public Integer getGoodsSource() {
|
return goodsSource;
|
}
|
|
public void setGoodsSource(Integer goodsSource) {
|
this.goodsSource = goodsSource;
|
}
|
|
public Integer getEntryMode() {
|
return entryMode;
|
}
|
|
public void setEntryMode(Integer entryMode) {
|
this.entryMode = entryMode;
|
}
|
|
public Integer getWeight() {
|
return weight;
|
}
|
|
public void setWeight(Integer weight) {
|
this.weight = weight;
|
}
|
|
public AdminUser getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(AdminUser createUser) {
|
this.createUser = createUser;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public AdminUser getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(AdminUser updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public Long getSystemCid() {
|
return systemCid;
|
}
|
|
public void setSystemCid(Long systemCid) {
|
this.systemCid = systemCid;
|
}
|
|
public String getSourceCalss() {
|
return sourceCalss;
|
}
|
|
public void setSourceCalss(String sourceCalss) {
|
this.sourceCalss = sourceCalss;
|
}
|
|
public BoutiqueAutoRule getBoutiqueAutoRule() {
|
return boutiqueAutoRule;
|
}
|
|
public void setBoutiqueAutoRule(BoutiqueAutoRule boutiqueAutoRule) {
|
this.boutiqueAutoRule = boutiqueAutoRule;
|
}
|
|
}
|