admin
2022-03-28 2f5935ed11672046c37f733d855214f6147b4b58
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
package com.yeshi.fanli.entity.bus.clazz;
 
import java.util.Date;
 
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
/**
 * 二级分类标签
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_sub_class_label_map")
public class GoodsSubClassLabelMap {
    @Column(name="sclm_id")
    private Long id;// 主键ID
    @Column(name="sclm_label_id")
    private GoodsSubClassLabel label;
    @Column(name="sclm_sub_class_id")
    private GoodsSubClass goodsSubClass;
    @Column(name="sclm_order_by")
    private Integer orderBy;// 排序值
    @Column(name="sclm_create_time")
    private Date createTime;// 创建时间
    @Column(name="sclm_update_time")
    private Date updateTime;// 更改时间
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public GoodsSubClassLabel getLabel() {
        return label;
    }
 
    public void setLabel(GoodsSubClassLabel label) {
        this.label = label;
    }
 
    public GoodsSubClass getGoodsSubClass() {
        return goodsSubClass;
    }
 
    public void setGoodsSubClass(GoodsSubClass goodsSubClass) {
        this.goodsSubClass = goodsSubClass;
    }
 
    public Integer getOrderBy() {
        return orderBy;
    }
 
    public void setOrderBy(Integer orderBy) {
        this.orderBy = orderBy;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}