4a36116aa88dc0a005ccf230b96d844736fcc72d.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:TacSlbLawContent
  8. *
  9. * @author lune
  10. * @date 2019-9-25
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class TacSlbLawContent extends BaseBean implements Serializable {
  14. private String id;
  15. @ApiModelProperty("所属章节")
  16. private String chapters;
  17. @ApiModelProperty("章节内容")
  18. private String content;
  19. @ApiModelProperty("索引id")
  20. private int indexId;
  21. @ApiModelProperty("章节排序")
  22. private int sort;
  23. @ApiModelProperty("条目排序")
  24. private int sort2;
  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 TacSlbLawContent() {
  38. }
  39. public String getId() {
  40. return id;
  41. }
  42. public void setId(String id) {
  43. this.id = id;
  44. }
  45. public String getChapters() {
  46. return chapters;
  47. }
  48. public void setChapters(String chapters) {
  49. this.chapters = chapters;
  50. }
  51. public String getContent() {
  52. return content;
  53. }
  54. public void setContent(String content) {
  55. this.content = content;
  56. }
  57. public int getIndexId() {
  58. return indexId;
  59. }
  60. public void setIndexId(int indexId) {
  61. this.indexId = indexId;
  62. }
  63. @Override
  64. public String toString() {
  65. return "TacSlbLawContent [" + "id=" + id + ", chapters=" + chapters + ", content=" + content + ", indexId=" + indexId + "]";
  66. }
  67. }