7679ef14f2afdba0dacba73e610e969e0e1ade35.svn-base 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:BisInspFscRgstr
  9. *
  10. * @author lune
  11. * @date 2019-7-19
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspFscRgstr extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键id")
  16. private String id;
  17. @ApiModelProperty("督查对象ID")
  18. private String objId;
  19. @ApiModelProperty("项目名称")
  20. private String name;
  21. @ApiModelProperty("检查分类(1:水库;2:水闸;3:人饮;4:水利工程建设;5:水利工程运行)")
  22. private String type;
  23. @ApiModelProperty("所属流域机构")
  24. private String admOrg;
  25. @ApiModelProperty("行政区编码")
  26. private String adCode;
  27. @ApiModelProperty("工程详细位置")
  28. private String location;
  29. @ApiModelProperty("PC经度")
  30. private Double centerX;
  31. @ApiModelProperty("PC纬度")
  32. private Double centerY;
  33. @ApiModelProperty("高德经度")
  34. private Double gdX;
  35. @ApiModelProperty("高德纬度")
  36. private Double gdY;
  37. @ApiModelProperty("备注")
  38. private String note;
  39. @ApiModelProperty("督查状态(0:未飞检;1:飞检中;2:已飞检)")
  40. private String state;
  41. @ApiModelProperty("数据状态(0:正常;9:删除)")
  42. private String dataStat;
  43. @ApiModelProperty("创建人")
  44. private String persId;
  45. @ApiModelProperty("督查组ID")
  46. private String groupId;
  47. @ApiModelProperty("创建时间")
  48. private Date inTm;
  49. @ApiModelProperty("修改时间")
  50. private Date upTm;
  51. public BisInspFscRgstr() {
  52. }
  53. public BisInspFscRgstr(AttFscBase attFscBase) {
  54. this.name = attFscBase.getName();
  55. this.admOrg = attFscBase.getAdmOrg();
  56. this.type = attFscBase.getType();
  57. this.adCode = attFscBase.getAdCode();
  58. this.location = attFscBase.getLocation();
  59. this.centerX = attFscBase.getCenterX();
  60. this.centerY = attFscBase.getCenterY();
  61. this.gdX = attFscBase.getGdX();
  62. this.gdY = attFscBase.getGdY();
  63. this.persId = attFscBase.getPersId();
  64. }
  65. public String getId() {
  66. return id;
  67. }
  68. public void setId(String id) {
  69. this.id = id;
  70. }
  71. @Override
  72. public String getObjId() {
  73. return objId;
  74. }
  75. @Override
  76. public void setObjId(String objId) {
  77. this.objId = objId;
  78. }
  79. public String getName() {
  80. return name;
  81. }
  82. public void setName(String name) {
  83. this.name = name;
  84. }
  85. public String getType() {
  86. return type;
  87. }
  88. public void setType(String type) {
  89. this.type = type;
  90. }
  91. public String getAdmOrg() {
  92. return admOrg;
  93. }
  94. public void setAdmOrg(String admOrg) {
  95. this.admOrg = admOrg;
  96. }
  97. public String getAdCode() {
  98. return adCode;
  99. }
  100. public void setAdCode(String adCode) {
  101. this.adCode = adCode;
  102. }
  103. public String getLocation() {
  104. return location;
  105. }
  106. public void setLocation(String location) {
  107. this.location = location;
  108. }
  109. public Double getCenterX() {
  110. return centerX;
  111. }
  112. public void setCenterX(Double centerX) {
  113. this.centerX = centerX;
  114. }
  115. public Double getCenterY() {
  116. return centerY;
  117. }
  118. public void setCenterY(Double centerY) {
  119. this.centerY = centerY;
  120. }
  121. public Double getGdX() {
  122. return gdX;
  123. }
  124. public void setGdX(Double gdX) {
  125. this.gdX = gdX;
  126. }
  127. public Double getGdY() {
  128. return gdY;
  129. }
  130. public void setGdY(Double gdY) {
  131. this.gdY = gdY;
  132. }
  133. public String getNote() {
  134. return note;
  135. }
  136. public void setNote(String note) {
  137. this.note = note;
  138. }
  139. public String getState() {
  140. return state;
  141. }
  142. public void setState(String state) {
  143. this.state = state;
  144. }
  145. public String getDataStat() {
  146. return dataStat;
  147. }
  148. public void setDataStat(String dataStat) {
  149. this.dataStat = dataStat;
  150. }
  151. public String getPersId() {
  152. return persId;
  153. }
  154. public void setPersId(String persId) {
  155. this.persId = persId;
  156. }
  157. @Override
  158. public String getGroupId() {
  159. return groupId;
  160. }
  161. @Override
  162. public void setGroupId(String groupId) {
  163. this.groupId = groupId;
  164. }
  165. public Date getInTm() {
  166. return inTm;
  167. }
  168. public void setInTm(Date inTm) {
  169. this.inTm = inTm;
  170. }
  171. public Date getUpTm() {
  172. return upTm;
  173. }
  174. public void setUpTm(Date upTm) {
  175. this.upTm = upTm;
  176. }
  177. @Override
  178. public String toString() {
  179. return "BisInspFscRgstr [" + "id=" + id + ", objId=" + objId + ", name=" + name + ", type=" + type + ", admOrg=" + admOrg + ", adCode=" + adCode + ", location=" + location + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", note=" + note + ", state=" + state + ", dataStat=" + dataStat + ", persId=" + persId + ", groupId=" + groupId + ", inTm=" + inTm + ", upTm=" + upTm + "]";
  180. }
  181. }