admin
2019-06-24 480fa41fa7ee8b3b3a38f46f28c2b8403299b44d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package com.yeshi.fanli.entity.bus.lable;
 
import java.io.Serializable;
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  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_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;
    }
    
}