package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * TacSlbLawContentParam * * @author lune * @date 2019-9-25 */ public class TacSlbLawContentParam extends PageParam implements Serializable { private String id; @ApiModelProperty("所属章节") private String chapters; @ApiModelProperty("章节内容") private String content; @ApiModelProperty("索引id") private int indexId; @ApiModelProperty("章节排序,为章节id") private int sort; @ApiModelProperty("条目排序") private int sort2; public TacSlbLawContentParam() { } 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 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; } }