| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | * |
| | | * @author lxw |
| | | * @since 2021-12-15 |
| | | * 属性首字母大写和第二个字母大写。前台传参都要小写 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @TableName(schema = "db_ram_db",value = "tb_fbs9100_setparam") |
| | | @ApiModel(value="Fbs9100Setparam对象", description="") |
| | | @ApiModel(value="Fbs9100Setparam对象") |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class Fbs9100Setparam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableField("MonVol") |
| | | private Float MonVol; |
| | | |
| | | @ApiModelProperty(value = "61853的标称容量") |
| | | @TableField("moncap") |
| | | private Float moncap; |
| | | |
| | | @ApiModelProperty(value = "预放功率(0.1kw)") |
| | | @TableField("DisPower") |
| | | private Float DisPower; |
| | |
| | | @TableField("FlowOver_CharTime_3") |
| | | private Integer flowoverChartime3; |
| | | |
| | | @ApiModelProperty(value = "充电电压") |
| | | @ApiModelProperty(value = "充电电压-------并联设备中改为均充电压") |
| | | @TableField("ChargeVolt") |
| | | private Float chargeVolt; |
| | | |
| | |
| | | @TableField("C_mon_uppernum3") |
| | | private Integer cMonUppernum3; |
| | | @ApiModelProperty(value = "恒压总阶段数[1~3]") |
| | | @TableField("C_mon_uppernum") |
| | | private Integer cMonUppernum; |
| | | @TableField("HV_charge_num") |
| | | private Integer hvChargeNum; |
| | | @ApiModelProperty(value = "恒压阶段1充电电压") |
| | | @TableField("HV_charge_Vol1") |
| | | private Float hvChargeVol1; |
| | |
| | | @TableField("HV_mon_uppernum3") |
| | | private Integer hvMonUppernum3; |
| | | |
| | | @ApiModelProperty(value ="0-离线,1-在线") |
| | | @TableField("OnlineTestFlag") |
| | | private Integer OnlineTestFlag; |
| | | |
| | | @ApiModelProperty(value ="单体组数") |
| | | @TableField("BattGroupCount") |
| | | private Integer BattGroupCount; |
| | | |
| | | @ApiModelProperty(value ="SOC下限(%)") |
| | | @TableField("SOCLow") |
| | | private Double SOCLow; |
| | | |
| | | @ApiModelProperty(value ="SOC下限(%)") |
| | | @TableField("SOCHigh") |
| | | private Double SOCHigh; |
| | | |
| | | @ApiModelProperty(value ="压差上限(mV)") |
| | | @TableField("CellDiffVolHigh") |
| | | private Double CellDiffVolHigh; |
| | | |
| | | @ApiModelProperty(value ="DCDC1输出电压(V)") |
| | | @TableField("dcdc1_outputvol") |
| | | private Float dcdc1OutputVol; |
| | | |
| | | @ApiModelProperty(value = "DCDC2输出电压(V)") |
| | | @TableField("dcdc2_outputvol") |
| | | private Float dcdc2OutputVol; |
| | | |
| | | @ApiModelProperty(value = "DCDC1输出电流(A)") |
| | | @TableField("dcdc1_outputcurr") |
| | | private Float dcdc1OutputCurr; |
| | | |
| | | @ApiModelProperty(value = "DCDC2输出电流(A)") |
| | | @TableField("dcdc2_outputcurr") |
| | | private Float dcdc2OutputCurr; |
| | | |
| | | @ApiModelProperty(value = "进入屏幕保护时间(不能小于10分钟)") |
| | | @TableField("screensaver_time") |
| | | private Integer screenSaverTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String stationName; |
| | | @TableField(exist = false) |
| | |
| | | private Float monVolStd; |
| | | @TableField(exist = false) |
| | | private Integer monCount; |
| | | @TableField(exist = false) |
| | | @TableField("MonCapStd") |
| | | private Float monCapStd; |
| | | @TableField(exist = false) |
| | | private Float loadCurr; |