| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspRsvrCamera
- *
- * @author lxf
- * @date 2023年8月11日
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspRsvrCamera extends BaseBean implements Serializable {
- // 水库编号
- @ApiModelProperty(value="水库编号",name="rsCode")
- private String rsCode;
- // 水库名称
- @ApiModelProperty(value="水库名称",name="rsName")
- private String rsName;
- // 水库行政区编码
- @ApiModelProperty(value="水库行政区编码",name="admDiv")
- private String admDiv;
- // 水库注册号
- @ApiModelProperty(value="水库注册号",name="regCode")
- private String regCode;
- // 监控点编号
- @ApiModelProperty(value="监控点编号",name="indexCode")
- private String indexCode;
- // 监控点国标编号
- @ApiModelProperty(value="监控点国标编号",name="externalIndexCode")
- private String externalIndexCode;
- // 所属区域编号
- @ApiModelProperty(value="所属区域编号",name="regionIndexCode")
- private String regionIndexCode;
- // 监控点名称
- @ApiModelProperty(value="监控点名称",name="indexName")
- private String indexName;
- // 监控点设备编号
- @ApiModelProperty(value="监控点设备编号",name="deviceIndexCode")
- private String deviceIndexCode;
- // 监控点经度
- @ApiModelProperty(value="监控点经度",name="loggitude")
- private String loggitude;
- // 监控点纬度
- @ApiModelProperty(value="监控点纬度",name="latitude")
- private String latitude;
- // 监控点类型
- @ApiModelProperty(value="监控点类型",name="cameraType")
- private String cameraType;
- // 通道号
- @ApiModelProperty(value="通道号",name="channum")
- private String channum;
- // 通道子类型
- @ApiModelProperty(value="通道子类型",name="channelType")
- private String channelType;
- // 所属设备类型
- @ApiModelProperty(value="所属设备类型",name="deviceResourceType")
- private String deviceResourceType;
- // 传输协议
- @ApiModelProperty(value="传输协议",name="transType")
- private String transType;
- // 设备能力集
- @ApiModelProperty(value="设备能力集",name="capabilitySet")
- private String capabilitySet;
- // 数据版本号
- @ApiModelProperty(value="数据版本号",name="dataVersion")
- private Long dataVersion;
- // 监控点创建时间
- @ApiModelProperty(value="监控点创建时间",name="createTime")
- private String createTime;
- // 监控点更新时间
- @ApiModelProperty(value="监控点更新时间",name="updateTime")
- private String updateTime;
- // 绑定时间
- @ApiModelProperty(value="绑定时间",name="intm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date intm;
- // 更新时间
- @ApiModelProperty(value="更新时间",name="uptm")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
- private Date uptm;
- public BisInspRsvrCamera() {
- }
- public String getRsCode() {
- return rsCode;
- }
- public void setRsCode(String rsCode) {
- this.rsCode = rsCode;
- }
- public String getRsName() {
- return rsName;
- }
- public void setRsName(String rsName) {
- this.rsName = rsName;
- }
- public String getAdmDiv() {
- return admDiv;
- }
- public void setAdmDiv(String admDiv) {
- this.admDiv = admDiv;
- }
- public String getRegCode() {
- return regCode;
- }
- public void setRegCode(String regCode) {
- this.regCode = regCode;
- }
- public String getIndexCode() {
- return indexCode;
- }
- public void setIndexCode(String indexCode) {
- this.indexCode = indexCode;
- }
- public String getExternalIndexCode() {
- return externalIndexCode;
- }
- public void setExternalIndexCode(String externalIndexCode) {
- this.externalIndexCode = externalIndexCode;
- }
- public String getRegionIndexCode() {
- return regionIndexCode;
- }
- public void setRegionIndexCode(String regionIndexCode) {
- this.regionIndexCode = regionIndexCode;
- }
- public String getIndexName() {
- return indexName;
- }
- public void setIndexName(String indexName) {
- this.indexName = indexName;
- }
- public String getDeviceIndexCode() {
- return deviceIndexCode;
- }
- public void setDeviceIndexCode(String deviceIndexCode) {
- this.deviceIndexCode = deviceIndexCode;
- }
- public String getLoggitude() {
- return loggitude;
- }
- public void setLoggitude(String loggitude) {
- this.loggitude = loggitude;
- }
- public String getLatitude() {
- return latitude;
- }
- public void setLatitude(String latitude) {
- this.latitude = latitude;
- }
- public String getCameraType() {
- return cameraType;
- }
- public void setCameraType(String cameraType) {
- this.cameraType = cameraType;
- }
- public String getChannum() {
- return channum;
- }
- public void setChannum(String channum) {
- this.channum = channum;
- }
- public String getChannelType() {
- return channelType;
- }
- public void setChannelType(String channelType) {
- this.channelType = channelType;
- }
- public String getDeviceResourceType() {
- return deviceResourceType;
- }
- public void setDeviceResourceType(String deviceResourceType) {
- this.deviceResourceType = deviceResourceType;
- }
- public String getTransType() {
- return transType;
- }
- public void setTransType(String transType) {
- this.transType = transType;
- }
- public String getCapabilitySet() {
- return capabilitySet;
- }
- public void setCapabilitySet(String capabilitySet) {
- this.capabilitySet = capabilitySet;
- }
- public Long getDataVersion() {
- if(null == dataVersion){
- this.dataVersion = 0L;
- }
- return this.dataVersion;
- }
- public void setDataVersion(Long dataVersion) {
- if(null == dataVersion){
- this.dataVersion = 0L;
- }else {
- this.dataVersion = dataVersion;
- }
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(String updateTime) {
- this.updateTime = updateTime;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- @Override
- public String toString() {
- 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 + "]";
- }
- }
|