| | |
| | | import org.springframework.format.annotation.DateTimeFormat;
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 帮助中心标题
|
| | | *
|
| | |
| | | */
|
| | | 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; // 分类
|
| | |
| | | this.endTime = endTime;
|
| | | }
|
| | |
|
| | | public Integer getState() {
|
| | | return state;
|
| | | }
|
| | |
|
| | | public void setState(Integer state) {
|
| | | this.state = state;
|
| | | }
|
| | | |
| | | }
|