c4b49b9dc97154112c2d2d3b61b0ced6fc8c978f.svn-base 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * TacSlbLawContentParam
  7. *
  8. * @author lune
  9. * @date 2019-9-25
  10. */
  11. public class TacSlbLawContentParam extends PageParam implements Serializable {
  12. private String id;
  13. @ApiModelProperty("所属章节")
  14. private String chapters;
  15. @ApiModelProperty("章节内容")
  16. private String content;
  17. @ApiModelProperty("索引id")
  18. private int indexId;
  19. @ApiModelProperty("章节排序,为章节id")
  20. private int sort;
  21. @ApiModelProperty("条目排序")
  22. private int sort2;
  23. public TacSlbLawContentParam() {
  24. }
  25. public int getSort2() {
  26. return sort2;
  27. }
  28. public void setSort2(int sort2) {
  29. this.sort2 = sort2;
  30. }
  31. public int getSort() {
  32. return sort;
  33. }
  34. public void setSort(int sort) {
  35. this.sort = sort;
  36. }
  37. public String getId() {
  38. return id;
  39. }
  40. public void setId(String id) {
  41. this.id = id;
  42. }
  43. public String getChapters() {
  44. return chapters;
  45. }
  46. public void setChapters(String chapters) {
  47. this.chapters = chapters;
  48. }
  49. public String getContent() {
  50. return content;
  51. }
  52. public void setContent(String content) {
  53. this.content = content;
  54. }
  55. public int getIndexId() {
  56. return indexId;
  57. }
  58. public void setIndexId(int indexId) {
  59. this.indexId = indexId;
  60. }
  61. }