3f8d640cb2b8cc9fb276d5d850c77ede1a1b2d91.svn-base 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * Created by 61618 on 2019/5/7.
  6. */
  7. public class BisInspAllDto extends BaseBean {
  8. @ApiModelProperty("主键id")
  9. private String id;
  10. @ApiModelProperty("上级节点id")
  11. private String pid;
  12. @ApiModelProperty("节点名称")
  13. private String pnm;
  14. // 督查开始时间
  15. @ApiModelProperty("开始时间")
  16. private String sttm;
  17. // 督查结束时间
  18. @ApiModelProperty("结束时间")
  19. private String entm;
  20. // 数据插入时间
  21. @ApiModelProperty("数据插入时间")
  22. private String intm;
  23. // 插入人id
  24. private String psn;
  25. // 督查计划年份
  26. @ApiModelProperty("主键id")
  27. private String inspYear;
  28. // 督查计划月份
  29. @ApiModelProperty("月份")
  30. private String inspMnth;
  31. // 督查任务
  32. @ApiModelProperty("督查任务")
  33. private String inspTask;
  34. @ApiModelProperty("组长")
  35. private String groupLeader;
  36. @ApiModelProperty("组员")
  37. private String groupMember;
  38. @ApiModelProperty("联络员")
  39. private String liaisonOfficer;
  40. @ApiModelProperty("专家")
  41. private String specialist;
  42. @ApiModelProperty("督查项")
  43. private String objTypeName;
  44. @ApiModelProperty("批次名称")
  45. private String ppnm;
  46. @ApiModelProperty("区域")
  47. private String objNm;
  48. @ApiModelProperty("经度")
  49. private double centerXGd;
  50. @ApiModelProperty("纬度")
  51. private double centerYGd;
  52. @ApiModelProperty("组长电话")
  53. private String groupLeaderPhone;
  54. @ApiModelProperty("计划检查项目数量")
  55. private Long quantity;
  56. public String getGroupLeaderPhone() {
  57. return groupLeaderPhone;
  58. }
  59. public void setGroupLeaderPhone(String groupLeaderPhone) {
  60. this.groupLeaderPhone = groupLeaderPhone;
  61. }
  62. public double getCenterXGd() {
  63. return centerXGd;
  64. }
  65. public void setCenterXGd(double centerXGd) {
  66. this.centerXGd = centerXGd;
  67. }
  68. public double getCenterYGd() {
  69. return centerYGd;
  70. }
  71. public void setCenterYGd(double centerYGd) {
  72. this.centerYGd = centerYGd;
  73. }
  74. public String getObjNm() {
  75. return objNm;
  76. }
  77. public void setObjNm(String objNm) {
  78. this.objNm = objNm;
  79. }
  80. public String getObjTypeName() {
  81. return objTypeName;
  82. }
  83. public void setObjTypeName(String objTypeName) {
  84. this.objTypeName = objTypeName;
  85. }
  86. public String getPpnm() {
  87. return ppnm;
  88. }
  89. public void setPpnm(String ppnm) {
  90. this.ppnm = ppnm;
  91. }
  92. public String getGroupLeader() {
  93. return groupLeader;
  94. }
  95. public void setGroupLeader(String groupLeader) {
  96. this.groupLeader = groupLeader;
  97. }
  98. public String getGroupMember() {
  99. return groupMember;
  100. }
  101. public void setGroupMember(String groupMember) {
  102. this.groupMember = groupMember;
  103. }
  104. public String getLiaisonOfficer() {
  105. return liaisonOfficer;
  106. }
  107. public void setLiaisonOfficer(String liaisonOfficer) {
  108. this.liaisonOfficer = liaisonOfficer;
  109. }
  110. public String getSpecialist() {
  111. return specialist;
  112. }
  113. public void setSpecialist(String specialist) {
  114. this.specialist = specialist;
  115. }
  116. public String getId() {
  117. return id;
  118. }
  119. public void setId(String id) {
  120. this.id = id;
  121. }
  122. public String getPid() {
  123. return pid;
  124. }
  125. public void setPid(String pid) {
  126. this.pid = pid;
  127. }
  128. public String getPnm() {
  129. return pnm;
  130. }
  131. public void setPnm(String pnm) {
  132. this.pnm = pnm;
  133. }
  134. public String getSttm() {
  135. return sttm;
  136. }
  137. public void setSttm(String sttm) {
  138. this.sttm = sttm;
  139. }
  140. public String getEntm() {
  141. return entm;
  142. }
  143. public void setEntm(String entm) {
  144. this.entm = entm;
  145. }
  146. public String getIntm() {
  147. return intm;
  148. }
  149. public void setIntm(String intm) {
  150. this.intm = intm;
  151. }
  152. public String getPsn() {
  153. return psn;
  154. }
  155. public void setPsn(String psn) {
  156. this.psn = psn;
  157. }
  158. public String getInspYear() {
  159. return inspYear;
  160. }
  161. public void setInspYear(String inspYear) {
  162. this.inspYear = inspYear;
  163. }
  164. public String getInspMnth() {
  165. return inspMnth;
  166. }
  167. public void setInspMnth(String inspMnth) {
  168. this.inspMnth = inspMnth;
  169. }
  170. public String getInspTask() {
  171. return inspTask;
  172. }
  173. public void setInspTask(String inspTask) {
  174. this.inspTask = inspTask;
  175. }
  176. public Long getQuantity() {
  177. return quantity;
  178. }
  179. public void setQuantity(Long quantity) {
  180. this.quantity = quantity;
  181. }
  182. @Override
  183. public String toString() {
  184. return "BisInspAllDto{" +
  185. "id='" + id + '\'' +
  186. ", pid='" + pid + '\'' +
  187. ", pnm='" + pnm + '\'' +
  188. ", sttm='" + sttm + '\'' +
  189. ", entm='" + entm + '\'' +
  190. ", intm='" + intm + '\'' +
  191. ", psn='" + psn + '\'' +
  192. ", inspYear='" + inspYear + '\'' +
  193. ", inspMnth='" + inspMnth + '\'' +
  194. ", inspTask='" + inspTask + '\'' +
  195. '}';
  196. }
  197. }