| | |
| | | package com.yeshi.fanli.entity.bus.help;
|
| | |
|
| | | 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 {
|
| | |
|
| | | @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;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.bus.help; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | |
| | | import com.google.gson.annotations.Expose; |
| | | |
| | | /** |
| | | * 帮助中心标题 |
| | | * |
| | | * @author yj |
| | | * |
| | | * @date 2018年8月14日 |
| | | */ |
| | | @org.yeshi.utils.generater.mybatis.Table("yeshi_ec_help_center") |
| | | public class HelpCenter implements Serializable{ |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Expose |
| | | @Column(name = "h_id") |
| | | private Long id; |
| | | |
| | | @Expose |
| | | @Column(name = "h_title") |
| | | private String title;// 名称 |
| | | |
| | | @Column(name = "h_weight") |
| | | private Integer weight; // 权重 |
| | | |
| | | @Column(name = "h_state") |
| | | private Integer state; |
| | | |
| | | @Column(name = "h_cid") |
| | | private HelpClass helpClass; // 分类 |
| | | |
| | | //起始时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Column(name = "h_start_time") |
| | | private Date startTime; |
| | | |
| | | //结束时间 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Column(name = "h_end_time") |
| | | private Date endTime; |
| | | |
| | | @Column(name = "h_createtime") |
| | | private Date createtime; // 创建时间 |
| | | |
| | | @Column(name = "h_updatetime") |
| | | private Date updatetime; // 更新时间(修改时间) |
| | | |
| | | @Column(name = "h_system") |
| | | private SystemEnum system; //系统 |
| | | |
| | | public SystemEnum getSystem() { |
| | | return system; |
| | | } |
| | | |
| | | public void setSystem(SystemEnum system) { |
| | | this.system = system; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | |
| | | public Date getStartTime() { |
| | | return startTime; |
| | | } |
| | | |
| | | public void setStartTime(Date startTime) { |
| | | this.startTime = startTime; |
| | | } |
| | | |
| | | public Date getEndTime() { |
| | | return endTime; |
| | | } |
| | | |
| | | public void setEndTime(Date endTime) { |
| | | this.endTime = endTime; |
| | | } |
| | | |
| | | public Integer getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(Integer state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | } |