package cn.gistack.sm.sjztmd.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 中台水库挡水建筑物实体类-填报
|
*
|
* @author zhongrj
|
* @date 2023-08-15
|
*/
|
@Data
|
@TableName("\"tb_att_res_water_block\"")
|
@ApiModel(value = "水库挡水建筑物对象", description = "水库挡水建筑物对象")
|
public class TbAttResWaterBlock implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
@ApiModelProperty(value = "主键")
|
@TableField("\"guid\"")
|
private String guid;
|
|
/**
|
* 水库编码
|
*/
|
@ApiModelProperty(value = "水库编码")
|
@TableField("\"res_guid\"")
|
private String resGuid;
|
|
/**
|
* 坝型
|
*/
|
@ApiModelProperty(value = "坝型")
|
@TableField("\"dam_type\"")
|
private String damType;
|
|
/**
|
* 主坝地基岩性
|
*/
|
@ApiModelProperty(value = "主坝地基岩性")
|
@TableField("\"dam_main_foundation\"")
|
private String damMainFoundation;
|
|
/**
|
* 坝顶高程
|
*/
|
@ApiModelProperty(value = "坝顶高程")
|
@TableField("\"dam_top_elevation\"")
|
private Double damTopElevation;
|
|
/**
|
* 最大坝高
|
*/
|
@ApiModelProperty(value = "最大坝高")
|
@TableField("\"dam_height\"")
|
private Double damHeight;
|
|
/**
|
* 坝顶长度
|
*/
|
@ApiModelProperty(value = "坝顶长度")
|
@TableField("\"dam_top_length\"")
|
private Double damTopLength;
|
|
/**
|
* 坝顶宽度
|
*/
|
@ApiModelProperty(value = "坝顶宽度 ")
|
@TableField("\"dam_width\"")
|
private Double damWidth;
|
|
/**
|
* 主坝是否兼作交通公路
|
*/
|
@ApiModelProperty(value = "主坝是否兼作交通公路 ")
|
@TableField("\"is_traffic\"")
|
private Integer isTraffic;
|
|
/**
|
* 防浪墙顶高程
|
*/
|
@ApiModelProperty(value = "防浪墙顶高程 ")
|
@TableField("\"wave_wall_top_elevation\"")
|
private Double waveWallTopElevation;
|
|
/**
|
* 上游护坝型式
|
*/
|
@ApiModelProperty(value = "上游护坝型式 ")
|
@TableField("\"up_dam_protect_type\"")
|
private Integer upDamProtectType;
|
|
/**
|
* 下游护坝型式
|
*/
|
@ApiModelProperty(value = "下游护坝型式 ")
|
@TableField("\"down_dam_protect_type\"")
|
private Integer downDamProtectType;
|
|
/**
|
* 主坝坝体防渗型式
|
*/
|
@ApiModelProperty(value = "主坝坝体防渗型式 ")
|
@TableField("\"dam_main_body_type\"")
|
private Integer damMainBodyType;
|
|
/**
|
* 主坝防渗体顶部高程
|
*/
|
@ApiModelProperty(value = "主坝防渗体顶部高程 ")
|
@TableField("\"dam_main_body_top_elevation\"")
|
private Double damMainBodyTopElevation;
|
|
/**
|
* 主坝排水形式
|
*/
|
@ApiModelProperty(value = "主坝排水形式 ")
|
@TableField("\"dam_main_drain_type\"")
|
private Integer damMainDrainType;
|
|
/**
|
* 坝基防渗型式
|
*/
|
@ApiModelProperty(value = "坝基防渗型式")
|
@TableField("\"dam_body_type\"")
|
private Integer damBodyType;
|
|
/**
|
* 副坝座数
|
*/
|
@ApiModelProperty(value = "副坝座数")
|
@TableField("\"sub_dam_num\"")
|
private Integer subDamNum;
|
|
/**
|
* 副坝总长度
|
*/
|
@ApiModelProperty(value = "副坝总长度")
|
@TableField("\"sub_dam_tot_length\"")
|
private Double subDamTotLength;
|
|
/**
|
* 副坝最大坝高
|
*/
|
@ApiModelProperty(value = "副坝最大坝高")
|
@TableField("\"sub_dam_max_height\"")
|
private Double subDamMaxHeight;
|
|
/**
|
* 副坝坝顶宽度
|
*/
|
@ApiModelProperty(value = "副坝坝顶宽度")
|
@TableField("\"sub_dam_top_width\"")
|
private Double subDamTopWidth;
|
|
/**
|
* 填报状态(0:填写中,1:审核中,2:审核通过)
|
*/
|
@ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ")
|
@TableField("\"check_state\"")
|
@JsonSerialize(using = ToStringSerializer.class)
|
private Integer checkState;
|
|
/**
|
* 审核记录
|
*/
|
@ApiModelProperty(value = "审核记录 ")
|
@TableField("\"check_log\"")
|
private String checkLog;
|
|
/**
|
* 创建时间
|
*/
|
@ApiModelProperty(value = "创建时间 ")
|
@TableField("\"create_time\"")
|
@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;
|
|
}
|