| | |
| | | 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.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | |
| | | * 名称 |
| | | */ |
| | | @ApiModelProperty(value = "名称") |
| | | @TableField("\"name\"") |
| | | @TableField(value = "\"name\"",fill = FieldFill.UPDATE) |
| | | private String name; |
| | | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | @ApiModelProperty(value = "数量") |
| | | @TableField("\"num\"") |
| | | @TableField(value = "\"num\"",fill = FieldFill.UPDATE) |
| | | private Integer num; |
| | | |
| | | /** |
| | |
| | | * 非常溢洪道型式 |
| | | */ |
| | | @ApiModelProperty(value = "非常溢洪道型式") |
| | | @TableField("\"spillway_type\"") |
| | | @TableField(value = "\"spillway_type\"",fill = FieldFill.UPDATE) |
| | | private Integer spillwayType; |
| | | |
| | | /** |
| | | * 溢流段长 |
| | | */ |
| | | @ApiModelProperty(value = "溢流段长") |
| | | @TableField("\"weir_top_width\"") |
| | | @TableField(value = "\"weir_top_width\"",fill = FieldFill.UPDATE) |
| | | private Double weirTopWidth; |
| | | |
| | | /** |
| | | * 启用标准 |
| | | */ |
| | | @ApiModelProperty(value = "启用标准") |
| | | @TableField("\"enable_standards\"") |
| | | @TableField(value = "\"enable_standards\"",fill = FieldFill.UPDATE) |
| | | private String enableStandards; |
| | | |
| | | /** |
| | | * 最大泄洪流量 |
| | | */ |
| | | @ApiModelProperty(value = "最大泄洪流量") |
| | | @TableField("\"checking_flood_discharge\"") |
| | | @TableField(value = "\"checking_flood_discharge\"",fill = FieldFill.UPDATE) |
| | | private Double checkingFloodDischarge; |
| | | |
| | | /** |