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;
|
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-16
|
*/
|
@Data
|
@TableName("\"tb_att_res_rsb_norspi\"")
|
@ApiModel(value = "水库正常溢洪道填报对象", description = "水库正常溢洪道填报对象")
|
public class TbAttResRsbNorspi implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
@ApiModelProperty(value = "主键")
|
@TableId(value = "\"guid\"",type = IdType.ASSIGN_ID)
|
private String guid;
|
|
/**
|
* 名称
|
*/
|
@ApiModelProperty(value = "名称")
|
@TableField("\"name\"")
|
private String name;
|
|
/**
|
* 数量
|
*/
|
@ApiModelProperty(value = "数量")
|
@TableField("\"num\"")
|
private Integer num;
|
|
/**
|
* 水库编码
|
*/
|
@ApiModelProperty(value = "水库编码")
|
@TableField("\"res_guid\"")
|
private String resGuid;
|
|
/**
|
* 正常溢洪道型式
|
*/
|
@ApiModelProperty(value = "正常溢洪道型式")
|
@TableField("\"spillway_type\"")
|
private Integer spillwayType;
|
|
/**
|
* 是否位于坝身
|
*/
|
@ApiModelProperty(value = "是否位于坝身")
|
@TableField("\"is_loc_dam_body\"")
|
private String isLocDamBody;
|
|
/**
|
* 是否有闸控制
|
*/
|
@ApiModelProperty(value = "是否有闸控制")
|
@TableField("\"is_gate\"")
|
private String isGate;
|
|
/**
|
* 堰顶高程
|
*/
|
@ApiModelProperty(value = "堰顶高程")
|
@TableField("\"weir_top_elevation\"")
|
private Double weirTopElevation;
|
|
/**
|
* 堰顶净宽
|
*/
|
@ApiModelProperty(value = "堰顶净宽")
|
@TableField("\"weir_top_width\"")
|
private Double weirTopWidth;
|
|
/**
|
* 工作闸门型式
|
*/
|
@ApiModelProperty(value = "工作闸门型式")
|
@TableField("\"working_gate_type\"")
|
private Integer workingGateType;
|
|
/**
|
* 闸门数量
|
*/
|
@ApiModelProperty(value = "闸门数量")
|
@TableField("\"gate_num\"")
|
private Integer gateNum;
|
|
/**
|
* 闸门长
|
*/
|
@ApiModelProperty(value = "闸门长")
|
@TableField("\"gate_length\"")
|
private Double gateLength;
|
|
/**
|
* 闸门宽
|
*/
|
@ApiModelProperty(value = "闸门宽")
|
@TableField("\"gate_wide\"")
|
private Double gateWide;
|
|
/**
|
* 最大泄洪流量
|
*/
|
@ApiModelProperty(value = "最大泄洪流量")
|
@TableField("\"checking_flood_discharge\"")
|
private Double checkingFloodDischarge;
|
|
/**
|
* 启闭方式
|
*/
|
@ApiModelProperty(value = "启闭方式")
|
@TableField("\"oc_type\"")
|
private Integer ocType;
|
|
/**
|
* 启闭动力
|
*/
|
@ApiModelProperty(value = "启闭动力")
|
@TableField("\"oc_power\"")
|
private String ocPower;
|
|
/**
|
* 消能方式
|
*/
|
@ApiModelProperty(value = "消能方式")
|
@TableField("\"dis_energy_type\"")
|
private Integer disEnergyType;
|
|
/**
|
* 填报状态(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;
|
|
}
|