| | |
| | | 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("\"plant_layout_type\"") |
| | | @TableField(value = "\"plant_layout_type\"",fill = FieldFill.UPDATE) |
| | | private Integer plantLayoutType; |
| | | |
| | | /** |
| | | * 装机容量 |
| | | */ |
| | | @ApiModelProperty(value = "装机容量") |
| | | @TableField("\"installed_capacity\"") |
| | | @TableField(value = "\"installed_capacity\"",fill = FieldFill.UPDATE) |
| | | private Integer installedCapacity; |
| | | |
| | | /** |
| | | * 平均年利用小时 |
| | | */ |
| | | @ApiModelProperty(value = "平均年利用小时") |
| | | @TableField("\"year_avg_hour\"") |
| | | @TableField(value = "\"year_avg_hour\"",fill = FieldFill.UPDATE) |
| | | private Integer yearAvgHour; |
| | | |
| | | /** |