yujian
2019-06-24 bd331a582851cffcce54316e677e23760de4f384
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
package com.yeshi.fanli.entity.bus.help;
 
import java.io.Serializable;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
 
/**
 * 帮助中心标题
 * 
 * @author yj
 *
 * @date 2018年8月14日
 */
@org.yeshi.utils.mybatis.Table("yeshi_ec_help_center")
public class HelpCenter implements Serializable{
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Column(name = "h_id")
    private Long id;
 
    @Column(name = "h_title")
    private String title;// 名称
 
    @Column(name = "h_weight")
    private Integer weight; // 权重
    
    @Column(name = "h_cid")
    private HelpClass helpClass; // 分类
    
 
    @Column(name = "h_createtime")
    private Date createtime; // 创建时间
 
    @Column(name = "h_updatetime")
    private Date updatetime; // 更新时间(修改时间)
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Integer getWeight() {
        return weight;
    }
 
    public void setWeight(Integer weight) {
        this.weight = weight;
    }
 
    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;
    }
 
    public HelpClass getHelpClass() {
        return helpClass;
    }
 
    public void setHelpClass(HelpClass helpClass) {
        this.helpClass = helpClass;
    }
 
}