| | |
| | | package cn.gistack.sm.sjztmd.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty(value = "主键") |
| | | @TableField("\"guid\"") |
| | | @TableId(value = "\"guid\"",type = IdType.ASSIGN_ID) |
| | | private String guid; |
| | | |
| | | /** |
| | |
| | | private String resGuid; |
| | | |
| | | /** |
| | | * 运行状态 |
| | | */ |
| | | @ApiModelProperty(value = "运行状态") |
| | | @TableField("\"run_status\"") |
| | | private Integer runStatus; |
| | | |
| | | /** |
| | | * 是否有水雨情测报雨量 |
| | | */ |
| | | @ApiModelProperty(value = "是否有水雨情测报雨量") |
| | | @TableField("\"is_rain\"") |
| | | private Integer isRain; |
| | | private String isRain; |
| | | |
| | | /** |
| | | * 是否有水雨情测报水位 |
| | | */ |
| | | @ApiModelProperty(value = "是否有水雨情测报水位") |
| | | @TableField("\"is_rsvr\"") |
| | | private Integer isRsvr; |
| | | private String isRsvr; |
| | | |
| | | /** |
| | | * 是否有大坝安全监测水平位移 |
| | | * 是否有大坝安全监测位移 |
| | | */ |
| | | @ApiModelProperty(value = "是否有大坝安全监测水平位移") |
| | | @ApiModelProperty(value = "是否有大坝安全监测位移") |
| | | @TableField("\"is_gnss_horizontal\"") |
| | | private Integer isGnssHorizontal; |
| | | |
| | | /** |
| | | * 是否有大坝安全监测垂直位移 |
| | | */ |
| | | @ApiModelProperty(value = "是否有大坝安全监测垂直位移") |
| | | @TableField("\"is_gnss_vertical\"") |
| | | private Integer isGnssVertical; |
| | | private String isGnssHorizontal; |
| | | // |
| | | // /** |
| | | // * 是否有大坝安全监测垂直位移 |
| | | // */ |
| | | // @ApiModelProperty(value = "是否有大坝安全监测垂直位移") |
| | | // @TableField("\"is_gnss_vertical\"") |
| | | // private String isGnssVertical; |
| | | |
| | | /** |
| | | * 是否有大坝安全监测渗透压力 |
| | | */ |
| | | @ApiModelProperty(value = "是否有大坝安全监测渗透压力") |
| | | @TableField("\"is_sppr\"") |
| | | private Integer isSppr; |
| | | private String isSppr; |
| | | |
| | | /** |
| | | * 是否有大坝安全监测渗流(漏)量 |
| | | */ |
| | | @ApiModelProperty(value = "是否有大坝安全监测渗流(漏)量") |
| | | @TableField("\"is_spqnmp\"") |
| | | private Integer isSpqnmp; |
| | | private String isSpqnmp; |
| | | |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiModelProperty(value = "是否有视频监视 ") |
| | | @TableField("\"is_wmst\"") |
| | | private Integer isWmst; |
| | | private String isWmst; |
| | | |
| | | /** |
| | | * 是否有白蚁监测 |
| | | */ |
| | | @ApiModelProperty(value = "是否有白蚁监测 ") |
| | | @TableField("\"is_termites\"") |
| | | private Integer isTermites; |
| | | private String isTermites; |
| | | |
| | | /** |
| | | * 填报状态(0:填写中,1:审核中,2:审核通过) |
| | | * 填报状态(0:未完成 2:已完成) |
| | | */ |
| | | @ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ") |
| | | @ApiModelProperty(value = "填报状态(0:未完成 2:已完成) ") |
| | | @TableField("\"check_state\"") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Integer checkState; |
| | | |
| | | /** |
| | | * 审核记录 |
| | | */ |
| | | @ApiModelProperty(value = "审核记录 ") |
| | | @TableField("\"check_log\"") |
| | | private String checkLog; |
| | | // |
| | | // /** |
| | | // * 审核记录 |
| | | // */ |
| | | // @ApiModelProperty(value = "审核记录 ") |
| | | // @TableField("\"check_log\"") |
| | | // private String checkLog; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 操作记录 |
| | | */ |
| | | @ApiModelProperty(value = "操作记录 ") |
| | | @TableField("\"log\"") |
| | | private String log; |
| | | // |
| | | // /** |
| | | // * 操作记录 |
| | | // */ |
| | | // @ApiModelProperty(value = "操作记录 ") |
| | | // @TableField("\"log\"") |
| | | // private String log; |
| | | |
| | | } |