30c587c26595defcac53d40f043c1811397c67a2.svn-base 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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:BisInspAll
  10. *
  11. * @author lune
  12. * @date 2019-2-23
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspAll extends BaseBean implements Serializable {
  16. private String id;
  17. private String pid;
  18. private String pnm;
  19. private Date sttm;
  20. private Date entm;
  21. private int count;
  22. private String code;
  23. private int onLineCount;
  24. private String inspYear;
  25. private String inspMnth;
  26. private String inspTask;
  27. @ApiModelProperty(value = "导入数据标记(1:新增;2:修改)", name = "impData")
  28. private String impData;
  29. @ApiModelProperty(value = "是否有路书", name = "isTravel")
  30. private String isTravel;
  31. private String orgName;
  32. @ApiModelProperty(value = "检查模式 1自查 2抽查(新增)", name = "chkType")
  33. private String chkType;
  34. // 牵头单位(新增)
  35. @ApiModelProperty(value = "牵头单位(新增)", name = "leadDep")
  36. private String leadDep;
  37. // 检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他
  38. @ApiModelProperty(value = "检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他", name = "chkForm")
  39. private String chkForm;
  40. // 年度任务ID(新增)
  41. @ApiModelProperty(value = "年度任务ID(新增)", name = "yearTaskId")
  42. private String yearTaskId;
  43. @ApiModelProperty(value = "是否是计划", name = "isPlan")
  44. private String isPlan;
  45. @ApiModelProperty("计划检查项目数量")
  46. private Long quantity;
  47. @ApiModelProperty("单位 ID")
  48. private String planDpId;
  49. private String note;
  50. //组里的角色
  51. private String pertype;
  52. private List<BisInspAll> childrens;
  53. public List<BisInspAll> getChildrens() {
  54. return childrens;
  55. }
  56. public void setChildrens(List<BisInspAll> childrens) {
  57. this.childrens = childrens;
  58. }
  59. public BisInspAll() {
  60. }
  61. public String getOrgName() {
  62. return orgName;
  63. }
  64. public void setOrgName(String orgName) {
  65. this.orgName = orgName;
  66. }
  67. public String getCode() {
  68. return code;
  69. }
  70. public void setCode(String code) {
  71. this.code = code;
  72. }
  73. public String getIsTravel() {
  74. return isTravel;
  75. }
  76. public void setIsTravel(String isTravel) {
  77. this.isTravel = isTravel;
  78. }
  79. public String getInspYear() {
  80. return inspYear;
  81. }
  82. public void setInspYear(String inspYear) {
  83. this.inspYear = inspYear;
  84. }
  85. public String getInspMnth() {
  86. return inspMnth;
  87. }
  88. public void setInspMnth(String inspMnth) {
  89. this.inspMnth = inspMnth;
  90. }
  91. public String getId() {
  92. return id;
  93. }
  94. public void setId(String id) {
  95. this.id = id;
  96. }
  97. public String getPid() {
  98. return pid;
  99. }
  100. public void setPid(String pid) {
  101. this.pid = pid;
  102. }
  103. public String getPnm() {
  104. return pnm;
  105. }
  106. public void setPnm(String pnm) {
  107. this.pnm = pnm;
  108. }
  109. public Date getSttm() {
  110. return sttm;
  111. }
  112. public void setSttm(Date sttm) {
  113. this.sttm = sttm;
  114. }
  115. public Date getEntm() {
  116. return entm;
  117. }
  118. public void setEntm(Date entm) {
  119. this.entm = entm;
  120. }
  121. public int getCount() {
  122. return count;
  123. }
  124. public void setCount(int count) {
  125. this.count = count;
  126. }
  127. public int getOnLineCount() {
  128. return onLineCount;
  129. }
  130. public void setOnLineCount(int onLineCount) {
  131. this.onLineCount = onLineCount;
  132. }
  133. @Override
  134. public String toString() {
  135. return "BisInspAll [" + "id=" + id + ", pid=" + pid + ", pnm=" + pnm + ", sttm=" + sttm + ", entm=" + entm + "]";
  136. }
  137. public String getInspTask() {
  138. return inspTask;
  139. }
  140. public void setInspTask(String inspTask) {
  141. this.inspTask = inspTask;
  142. }
  143. public String getImpData() {
  144. return impData;
  145. }
  146. public void setImpData(String impData) {
  147. this.impData = impData;
  148. }
  149. public String getChkType() {
  150. return chkType;
  151. }
  152. public void setChkType(String chkType) {
  153. this.chkType = chkType;
  154. }
  155. public String getLeadDep() {
  156. return leadDep;
  157. }
  158. public void setLeadDep(String leadDep) {
  159. this.leadDep = leadDep;
  160. }
  161. public String getChkForm() {
  162. return chkForm;
  163. }
  164. public void setChkForm(String chkForm) {
  165. this.chkForm = chkForm;
  166. }
  167. public String getYearTaskId() {
  168. return yearTaskId;
  169. }
  170. public void setYearTaskId(String yearTaskId) {
  171. this.yearTaskId = yearTaskId;
  172. }
  173. public String getIsPlan() {
  174. return isPlan;
  175. }
  176. public void setIsPlan(String isPlan) {
  177. this.isPlan = isPlan;
  178. }
  179. public Long getQuantity() {
  180. return quantity;
  181. }
  182. public void setQuantity(Long quantity) {
  183. this.quantity = quantity;
  184. }
  185. public String getPlanDpId() {
  186. return planDpId;
  187. }
  188. public void setPlanDpId(String planDpId) {
  189. this.planDpId = planDpId;
  190. }
  191. public String getNote() {
  192. return note;
  193. }
  194. public void setNote(String note) {
  195. this.note = note;
  196. }
  197. public String getPertype() {
  198. return pertype;
  199. }
  200. public void setPertype(String pertype) {
  201. this.pertype = pertype;
  202. }
  203. }