bd034fa7ea4349e0b5a4ec49dc380edd7f33ac5d.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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.Date;
  7. import java.util.List;
  8. /**
  9. * entity:TacProvincePblmInfo
  10. *
  11. * @author lune
  12. * @date 2020-5-28
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class TacProvincePblmInfoDingChuan extends BaseBean implements Serializable {
  16. @ApiModelProperty("主键ID")
  17. private String id;
  18. @ApiModelProperty("问题名称")
  19. private String problemName;
  20. @ApiModelProperty("严重等级:0一般,1较重,2严重")
  21. private String pblmPasi;
  22. @ApiModelProperty("主体单位名称,多个名称用','分隔")
  23. private String subjectNames;
  24. @ApiModelProperty("存在问题描述")
  25. private String pblmDesc;
  26. @ApiModelProperty("问题原因分析")
  27. private String pblmReason;
  28. @ApiModelProperty("整改意见或建议")
  29. private String pblmSggtn;
  30. @ApiModelProperty("问题序号")
  31. private String pblmSn;
  32. @ApiModelProperty("工作底稿类型")
  33. private String listType;
  34. @ApiModelProperty("专家姓名")
  35. private String persNm;
  36. @ApiModelProperty("创建时间(专家填写日期)")
  37. private Date intm;
  38. @ApiModelProperty("特派员姓名")
  39. private String spclNm;
  40. @ApiModelProperty("特派员复核意见")
  41. private String spclRvwOptn;
  42. @ApiModelProperty("备注")
  43. private String note;
  44. private List<TacPblmSubject> pblmSubjectList;
  45. @ApiModelProperty("附件信息")
  46. private List<GwComFile> gwComFileList;
  47. @ApiModelProperty("序号")
  48. private int sn;
  49. public String getId() {
  50. return id;
  51. }
  52. public void setId(String id) {
  53. this.id = id;
  54. }
  55. public String getProblemName() {
  56. return problemName;
  57. }
  58. public void setProblemName(String problemName) {
  59. this.problemName = problemName;
  60. }
  61. public String getPblmPasi() {
  62. return pblmPasi;
  63. }
  64. public void setPblmPasi(String pblmPasi) {
  65. this.pblmPasi = pblmPasi;
  66. }
  67. public String getSubjectNames() {
  68. return subjectNames;
  69. }
  70. public void setSubjectNames(String subjectNames) {
  71. this.subjectNames = subjectNames;
  72. }
  73. public String getPblmDesc() {
  74. return pblmDesc;
  75. }
  76. public void setPblmDesc(String pblmDesc) {
  77. this.pblmDesc = pblmDesc;
  78. }
  79. public String getPblmReason() {
  80. return pblmReason;
  81. }
  82. public void setPblmReason(String pblmReason) {
  83. this.pblmReason = pblmReason;
  84. }
  85. public String getPblmSggtn() {
  86. return pblmSggtn;
  87. }
  88. public void setPblmSggtn(String pblmSggtn) {
  89. this.pblmSggtn = pblmSggtn;
  90. }
  91. public String getPblmSn() {
  92. return pblmSn;
  93. }
  94. public void setPblmSn(String pblmSn) {
  95. this.pblmSn = pblmSn;
  96. }
  97. public String getListType() {
  98. return listType;
  99. }
  100. public void setListType(String listType) {
  101. this.listType = listType;
  102. }
  103. public String getPersNm() {
  104. return persNm;
  105. }
  106. public void setPersNm(String persNm) {
  107. this.persNm = persNm;
  108. }
  109. public Date getIntm() {
  110. return intm;
  111. }
  112. public void setIntm(Date intm) {
  113. this.intm = intm;
  114. }
  115. public String getSpclNm() {
  116. return spclNm;
  117. }
  118. public void setSpclNm(String spclNm) {
  119. this.spclNm = spclNm;
  120. }
  121. public String getSpclRvwOptn() {
  122. return spclRvwOptn;
  123. }
  124. public void setSpclRvwOptn(String spclRvwOptn) {
  125. this.spclRvwOptn = spclRvwOptn;
  126. }
  127. public String getNote() {
  128. return note;
  129. }
  130. public void setNote(String note) {
  131. this.note = note;
  132. }
  133. public List<TacPblmSubject> getPblmSubjectList() {
  134. return pblmSubjectList;
  135. }
  136. public void setPblmSubjectList(List<TacPblmSubject> pblmSubjectList) {
  137. this.pblmSubjectList = pblmSubjectList;
  138. }
  139. public List<GwComFile> getGwComFileList() {
  140. return gwComFileList;
  141. }
  142. public void setGwComFileList(List<GwComFile> gwComFileList) {
  143. this.gwComFileList = gwComFileList;
  144. }
  145. public int getSn() {
  146. return sn;
  147. }
  148. public void setSn(int sn) {
  149. this.sn = sn;
  150. }
  151. }