| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * entity:TacSlbLawContent
- *
- * @author lune
- * @date 2019-9-25
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class TacSlbLawContent extends BaseBean implements Serializable {
- private String id;
- @ApiModelProperty("所属章节")
- private String chapters;
- @ApiModelProperty("章节内容")
- private String content;
- @ApiModelProperty("索引id")
- private int indexId;
- @ApiModelProperty("章节排序")
- private int sort;
- @ApiModelProperty("条目排序")
- private int sort2;
- public int getSort2() {
- return sort2;
- }
- public void setSort2(int sort2) {
- this.sort2 = sort2;
- }
- public int getSort() {
- return sort;
- }
- public void setSort(int sort) {
- this.sort = sort;
- }
- public TacSlbLawContent() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getChapters() {
- return chapters;
- }
- public void setChapters(String chapters) {
- this.chapters = chapters;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public int getIndexId() {
- return indexId;
- }
- public void setIndexId(int indexId) {
- this.indexId = indexId;
- }
- @Override
- public String toString() {
- return "TacSlbLawContent [" + "id=" + id + ", chapters=" + chapters + ", content=" + content + ", indexId=" + indexId + "]";
- }
- }
|