| | |
| | | package com.yeshi.fanli.entity.bus.help;
|
| | |
|
| | | import java.io.Serializable;
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 帮助中心分类
|
| | |
| | | */
|
| | |
|
| | | @Table("yeshi_ec_help_class")
|
| | | public class HelpClass {
|
| | | public class HelpClass implements Serializable{
|
| | |
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Expose
|
| | | @Column(name = "hc_id")
|
| | | private Long id;
|
| | |
|
| | | // 名称
|
| | | @Expose
|
| | | @Column(name = "hc_name")
|
| | | private String name;
|
| | |
|
| | | // 图片链接
|
| | | @Expose
|
| | | @Column(name = "hc_picture")
|
| | | private String picture;
|
| | |
|