43cf722a92d76cb22ba5010153b832ae09d50b7f.svn-base 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspKeyRegisterSection
  9. *
  10. * @author lhc
  11. * @date 2019-4-20
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspKeyRegisterSection extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 登记表ID
  19. @ApiModelProperty(value = "登记表ID", name = "regId")
  20. private String regId;
  21. // 督查对象ID
  22. @ApiModelProperty(value = "督查对象ID", name = "objId")
  23. private String objId;
  24. // 标段名称
  25. @ApiModelProperty(value = "标段名称", name = "nm")
  26. private String nm;
  27. // 所在行政区代码
  28. @ApiModelProperty(value = "所在行政区代码", name = "adCode")
  29. private String adCode;
  30. // 所属流域
  31. @ApiModelProperty(value = "所属流域", name = "orgId")
  32. private String orgId;
  33. // 高德经度
  34. @ApiModelProperty(value = "高德经度", name = "lgtd")
  35. private Double lgtd;
  36. // 高德纬度
  37. @ApiModelProperty(value = "高德纬度", name = "lttd")
  38. private Double lttd;
  39. // PC经度
  40. @ApiModelProperty(value = "PC经度", name = "lgtdPc")
  41. private Double lgtdPc;
  42. // PC纬度
  43. @ApiModelProperty(value = "PC纬度", name = "lttdPc")
  44. private Double lttdPc;
  45. // 记录人员ID
  46. @ApiModelProperty(value = "记录人员ID", name = "persId")
  47. private String persId;
  48. // 创建时间
  49. @ApiModelProperty(value = "创建时间", name = "intm")
  50. private Date intm;
  51. // 最后修改时间
  52. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  53. private Date uptm;
  54. // 备注
  55. @ApiModelProperty(value = "备注", name = "note")
  56. private String note;
  57. @ApiModelProperty(value = "行政区划名称", name = "adName")
  58. private String adName;
  59. @ApiModelProperty(value = "流域名称", name = "adName")
  60. private String orgName;
  61. public BisInspKeyRegisterSection() {
  62. }
  63. public String getId() {
  64. return id;
  65. }
  66. public void setId(String id) {
  67. this.id = id;
  68. }
  69. public String getRegId() {
  70. return regId;
  71. }
  72. public void setRegId(String regId) {
  73. this.regId = regId;
  74. }
  75. @Override
  76. public String getObjId() {
  77. return objId;
  78. }
  79. @Override
  80. public void setObjId(String objId) {
  81. this.objId = objId;
  82. }
  83. public String getNm() {
  84. return nm;
  85. }
  86. public void setNm(String nm) {
  87. this.nm = nm;
  88. }
  89. public String getAdCode() {
  90. return adCode;
  91. }
  92. public void setAdCode(String adCode) {
  93. this.adCode = adCode;
  94. }
  95. @Override
  96. public String getOrgId() {
  97. return orgId;
  98. }
  99. @Override
  100. public void setOrgId(String orgId) {
  101. this.orgId = orgId;
  102. }
  103. public Double getLgtd() {
  104. return lgtd;
  105. }
  106. public void setLgtd(Double lgtd) {
  107. this.lgtd = lgtd;
  108. }
  109. public Double getLttd() {
  110. return lttd;
  111. }
  112. public void setLttd(Double lttd) {
  113. this.lttd = lttd;
  114. }
  115. public Double getLgtdPc() {
  116. return lgtdPc;
  117. }
  118. public void setLgtdPc(Double lgtdPc) {
  119. this.lgtdPc = lgtdPc;
  120. }
  121. public Double getLttdPc() {
  122. return lttdPc;
  123. }
  124. public void setLttdPc(Double lttdPc) {
  125. this.lttdPc = lttdPc;
  126. }
  127. public String getPersId() {
  128. return persId;
  129. }
  130. public void setPersId(String persId) {
  131. this.persId = persId;
  132. }
  133. public Date getIntm() {
  134. return intm;
  135. }
  136. public void setIntm(Date intm) {
  137. this.intm = intm;
  138. }
  139. public Date getUptm() {
  140. return uptm;
  141. }
  142. public void setUptm(Date uptm) {
  143. this.uptm = uptm;
  144. }
  145. public String getNote() {
  146. return note;
  147. }
  148. public void setNote(String note) {
  149. this.note = note;
  150. }
  151. public String getAdName() {
  152. return adName;
  153. }
  154. public void setAdName(String adName) {
  155. this.adName = adName;
  156. }
  157. public String getOrgName() {
  158. return orgName;
  159. }
  160. public void setOrgName(String orgName) {
  161. this.orgName = orgName;
  162. }
  163. @Override
  164. public String toString() {
  165. return "BisInspKeyRegisterSection [" + "id=" + id + ", regId=" + regId + ", objId=" + objId + ", nm=" + nm + ", adCode=" + adCode + ", orgId=" + orgId + ", lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdPc=" + lgtdPc + ", lttdPc=" + lttdPc + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + "]";
  166. }
  167. }