2abec3433082bd3750a14dc8625c646d300bade6.svn-base 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * entity:BisInspRsvrCamera
  10. *
  11. * @author lxf
  12. * @date 2023年8月11日
  13. */
  14. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  15. public class BisInspRsvrCamera extends BaseBean implements Serializable {
  16. // 水库编号
  17. @ApiModelProperty(value="水库编号",name="rsCode")
  18. private String rsCode;
  19. // 水库名称
  20. @ApiModelProperty(value="水库名称",name="rsName")
  21. private String rsName;
  22. // 水库行政区编码
  23. @ApiModelProperty(value="水库行政区编码",name="admDiv")
  24. private String admDiv;
  25. // 水库注册号
  26. @ApiModelProperty(value="水库注册号",name="regCode")
  27. private String regCode;
  28. // 监控点编号
  29. @ApiModelProperty(value="监控点编号",name="indexCode")
  30. private String indexCode;
  31. // 监控点国标编号
  32. @ApiModelProperty(value="监控点国标编号",name="externalIndexCode")
  33. private String externalIndexCode;
  34. // 所属区域编号
  35. @ApiModelProperty(value="所属区域编号",name="regionIndexCode")
  36. private String regionIndexCode;
  37. // 监控点名称
  38. @ApiModelProperty(value="监控点名称",name="indexName")
  39. private String indexName;
  40. // 监控点设备编号
  41. @ApiModelProperty(value="监控点设备编号",name="deviceIndexCode")
  42. private String deviceIndexCode;
  43. // 监控点经度
  44. @ApiModelProperty(value="监控点经度",name="loggitude")
  45. private String loggitude;
  46. // 监控点纬度
  47. @ApiModelProperty(value="监控点纬度",name="latitude")
  48. private String latitude;
  49. // 监控点类型
  50. @ApiModelProperty(value="监控点类型",name="cameraType")
  51. private String cameraType;
  52. // 通道号
  53. @ApiModelProperty(value="通道号",name="channum")
  54. private String channum;
  55. // 通道子类型
  56. @ApiModelProperty(value="通道子类型",name="channelType")
  57. private String channelType;
  58. // 所属设备类型
  59. @ApiModelProperty(value="所属设备类型",name="deviceResourceType")
  60. private String deviceResourceType;
  61. // 传输协议
  62. @ApiModelProperty(value="传输协议",name="transType")
  63. private String transType;
  64. // 设备能力集
  65. @ApiModelProperty(value="设备能力集",name="capabilitySet")
  66. private String capabilitySet;
  67. // 数据版本号
  68. @ApiModelProperty(value="数据版本号",name="dataVersion")
  69. private Long dataVersion;
  70. // 监控点创建时间
  71. @ApiModelProperty(value="监控点创建时间",name="createTime")
  72. private String createTime;
  73. // 监控点更新时间
  74. @ApiModelProperty(value="监控点更新时间",name="updateTime")
  75. private String updateTime;
  76. // 绑定时间
  77. @ApiModelProperty(value="绑定时间",name="intm")
  78. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  79. private Date intm;
  80. // 更新时间
  81. @ApiModelProperty(value="更新时间",name="uptm")
  82. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
  83. private Date uptm;
  84. public BisInspRsvrCamera() {
  85. }
  86. public String getRsCode() {
  87. return rsCode;
  88. }
  89. public void setRsCode(String rsCode) {
  90. this.rsCode = rsCode;
  91. }
  92. public String getRsName() {
  93. return rsName;
  94. }
  95. public void setRsName(String rsName) {
  96. this.rsName = rsName;
  97. }
  98. public String getAdmDiv() {
  99. return admDiv;
  100. }
  101. public void setAdmDiv(String admDiv) {
  102. this.admDiv = admDiv;
  103. }
  104. public String getRegCode() {
  105. return regCode;
  106. }
  107. public void setRegCode(String regCode) {
  108. this.regCode = regCode;
  109. }
  110. public String getIndexCode() {
  111. return indexCode;
  112. }
  113. public void setIndexCode(String indexCode) {
  114. this.indexCode = indexCode;
  115. }
  116. public String getExternalIndexCode() {
  117. return externalIndexCode;
  118. }
  119. public void setExternalIndexCode(String externalIndexCode) {
  120. this.externalIndexCode = externalIndexCode;
  121. }
  122. public String getRegionIndexCode() {
  123. return regionIndexCode;
  124. }
  125. public void setRegionIndexCode(String regionIndexCode) {
  126. this.regionIndexCode = regionIndexCode;
  127. }
  128. public String getIndexName() {
  129. return indexName;
  130. }
  131. public void setIndexName(String indexName) {
  132. this.indexName = indexName;
  133. }
  134. public String getDeviceIndexCode() {
  135. return deviceIndexCode;
  136. }
  137. public void setDeviceIndexCode(String deviceIndexCode) {
  138. this.deviceIndexCode = deviceIndexCode;
  139. }
  140. public String getLoggitude() {
  141. return loggitude;
  142. }
  143. public void setLoggitude(String loggitude) {
  144. this.loggitude = loggitude;
  145. }
  146. public String getLatitude() {
  147. return latitude;
  148. }
  149. public void setLatitude(String latitude) {
  150. this.latitude = latitude;
  151. }
  152. public String getCameraType() {
  153. return cameraType;
  154. }
  155. public void setCameraType(String cameraType) {
  156. this.cameraType = cameraType;
  157. }
  158. public String getChannum() {
  159. return channum;
  160. }
  161. public void setChannum(String channum) {
  162. this.channum = channum;
  163. }
  164. public String getChannelType() {
  165. return channelType;
  166. }
  167. public void setChannelType(String channelType) {
  168. this.channelType = channelType;
  169. }
  170. public String getDeviceResourceType() {
  171. return deviceResourceType;
  172. }
  173. public void setDeviceResourceType(String deviceResourceType) {
  174. this.deviceResourceType = deviceResourceType;
  175. }
  176. public String getTransType() {
  177. return transType;
  178. }
  179. public void setTransType(String transType) {
  180. this.transType = transType;
  181. }
  182. public String getCapabilitySet() {
  183. return capabilitySet;
  184. }
  185. public void setCapabilitySet(String capabilitySet) {
  186. this.capabilitySet = capabilitySet;
  187. }
  188. public Long getDataVersion() {
  189. if(null == dataVersion){
  190. this.dataVersion = 0L;
  191. }
  192. return this.dataVersion;
  193. }
  194. public void setDataVersion(Long dataVersion) {
  195. if(null == dataVersion){
  196. this.dataVersion = 0L;
  197. }else {
  198. this.dataVersion = dataVersion;
  199. }
  200. }
  201. public String getCreateTime() {
  202. return createTime;
  203. }
  204. public void setCreateTime(String createTime) {
  205. this.createTime = createTime;
  206. }
  207. public String getUpdateTime() {
  208. return updateTime;
  209. }
  210. public void setUpdateTime(String updateTime) {
  211. this.updateTime = updateTime;
  212. }
  213. public Date getIntm() {
  214. return intm;
  215. }
  216. public void setIntm(Date intm) {
  217. this.intm = intm;
  218. }
  219. public Date getUptm() {
  220. return uptm;
  221. }
  222. public void setUptm(Date uptm) {
  223. this.uptm = uptm;
  224. }
  225. @Override
  226. public String toString() {
  227. return "BisInspRsvrCamera [" + "rsCode=" + rsCode + ", rsName=" + rsName + ", admDiv=" + admDiv + ", regCode=" + regCode + ", indexCode=" + indexCode + ", externalIndexCode=" + externalIndexCode + ", regionIndexCode=" + regionIndexCode + ", indexName=" + indexName + ", deviceIndexCode=" + deviceIndexCode + ", loggitude=" + loggitude + ", latitude=" + latitude + ", cameraType=" + cameraType + ", channum=" + channum + ", channelType=" + channelType + ", deviceResourceType=" + deviceResourceType + ", transType=" + transType + ", capabilitySet=" + capabilitySet + ", dataVersion=" + dataVersion + ", createTime=" + createTime + ", updateTime=" + updateTime + ", intm=" + intm + ", uptm=" + uptm + "]";
  228. }
  229. }