3c9eb9059878b6d365b4201058d5908127e7ee0d.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. import java.util.List;
  7. /**
  8. * entity:TacSlbLawIndex
  9. *
  10. * @author lune
  11. * @date 2019-9-25
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class TacSlbLawIndex extends BaseBean implements Serializable {
  15. private String id;
  16. @ApiModelProperty("法规章节")
  17. private String lawTitle;
  18. @ApiModelProperty("法规目录")
  19. private String lawKeyword;
  20. @ApiModelProperty("法规修订描述")
  21. private String lawModify;
  22. @ApiModelProperty("法规所在页")
  23. private Double lawPage;
  24. @ApiModelProperty("内容简介")
  25. private String briefContent;
  26. @ApiModelProperty("关联法律法规著作")
  27. private String bookId;
  28. @ApiModelProperty("文档id")
  29. private String docId;
  30. @ApiModelProperty("法规全文")
  31. private String bookContent;
  32. @ApiModelProperty("附件")
  33. private List<GwComFile> gwComFile;
  34. @ApiModelProperty("法规附件标识")
  35. private String fileId;
  36. @ApiModelProperty("删除标识符")
  37. private String flagValid;
  38. public String getFlagValid() {
  39. return flagValid;
  40. }
  41. public void setFlagValid(String flagValid) {
  42. this.flagValid = flagValid;
  43. }
  44. public String getFileId() {
  45. return fileId;
  46. }
  47. public void setFileId(String fileId) {
  48. this.fileId = fileId;
  49. }
  50. public TacSlbLawIndex() {
  51. }
  52. public String getBookContent() {
  53. return bookContent;
  54. }
  55. public List<GwComFile> getGwComFile() {
  56. return gwComFile;
  57. }
  58. public void setGwComFile(List<GwComFile> gwComFile) {
  59. this.gwComFile = gwComFile;
  60. }
  61. public void setBookContent(String bookContent) {
  62. this.bookContent = bookContent;
  63. }
  64. public String getDocId() {
  65. return docId;
  66. }
  67. public void setDocId(String docId) {
  68. this.docId = docId;
  69. }
  70. public String getId() {
  71. return id;
  72. }
  73. public void setId(String id) {
  74. this.id = id;
  75. }
  76. public String getLawTitle() {
  77. return lawTitle;
  78. }
  79. public void setLawTitle(String lawTitle) {
  80. this.lawTitle = lawTitle;
  81. }
  82. public String getLawKeyword() {
  83. return lawKeyword;
  84. }
  85. public void setLawKeyword(String lawKeyword) {
  86. this.lawKeyword = lawKeyword;
  87. }
  88. public String getLawModify() {
  89. return lawModify;
  90. }
  91. public void setLawModify(String lawModify) {
  92. this.lawModify = lawModify;
  93. }
  94. public Double getLawPage() {
  95. return lawPage;
  96. }
  97. public void setLawPage(Double lawPage) {
  98. this.lawPage = lawPage;
  99. }
  100. public String getBriefContent() {
  101. return briefContent;
  102. }
  103. public void setBriefContent(String briefContent) {
  104. this.briefContent = briefContent;
  105. }
  106. public String getBookId() {
  107. return bookId;
  108. }
  109. public void setBookId(String bookId) {
  110. this.bookId = bookId;
  111. }
  112. @Override
  113. public String toString() {
  114. return "TacSlbLawIndex [" + "id=" + id + ", lawTitle=" + lawTitle + ", lawKeyword=" + lawKeyword + ", lawModify=" + lawModify + ", lawPage=" + lawPage + ", briefContent=" + briefContent + ", bookId=" + bookId + "]";
  115. }
  116. }