| | |
| | | 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; |
| | |
| | | @Accessors(chain = true) |
| | | @TableName(schema = "db_ram_db",value="tb_fbs9100_sysparam") |
| | | @ApiModel(value="Fbs9100Sysparam对象", description="") |
| | | @JsonIgnoreProperties(ignoreUnknown = true) |
| | | public class Fbs9100Sysparam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableField("StandyVolt") |
| | | private Float standyVolt; |
| | | |
| | | @ApiModelProperty(value = "浮充电压[并联电源]") |
| | | @TableField("floatChargeVolt") |
| | | private Float floatChargeVolt; |
| | | |
| | | @ApiModelProperty(value = "后备放电电压[并联电源]") |
| | | @TableField("disChargeVolt") |
| | | private Float disChargeVolt; |
| | | |
| | | @ApiModelProperty(value = "放电电压下限[并联电源]") |
| | | @TableField("dischargeVoltLimit") |
| | | private Float dischargeVoltLimit; |
| | | |
| | | @ApiModelProperty(value = "单体下限[并联电源]") |
| | | @TableField("monomerLowVolt") |
| | | private Float monomerLowVolt; |
| | | |
| | | @ApiModelProperty(value = "单体下限个数[并联电源]") |
| | | @TableField("monomerLowCount") |
| | | private Integer monomerLowCount; |
| | | |
| | | @ApiModelProperty(value = "自动启动均充周期(天)[并联电源]") |
| | | @TableField("autoEQChargeStartimeTime") |
| | | private Integer autoEQChargeStartimeTime; |
| | | |
| | | @ApiModelProperty(value = "均充时长[并联电源]") |
| | | @TableField("autoEQChargetTime") |
| | | private Integer autoEQChargetTime; |
| | | |
| | | @ApiModelProperty("61851设备地址") |
| | | private Integer devAddr; |
| | | |
| | | @ApiModelProperty("61851环境温度高阈值") |
| | | @TableField("tempH_Env") |
| | | private Float tempHEnv; |
| | | |
| | | @ApiModelProperty("61851接触器温度高阈值") |
| | | @TableField("tempH_JCQ") |
| | | private Float tempHJCQ; |
| | | |
| | | @ApiModelProperty("61851支路电流高阈值") |
| | | @TableField("currH_ZL") |
| | | private Float currHZL; |
| | | |
| | | @ApiModelProperty("61851_控制KM1开关[1闭合;0:断开]") |
| | | @TableField("km1_switch") |
| | | private Integer km1Switch; |
| | | @ApiModelProperty("61851_控制KM2开关[1闭合;0:断开]") |
| | | @TableField("km2_switch") |
| | | private Integer km2Switch; |
| | | @ApiModelProperty("61851_控制KM3开关[1闭合;0:断开]") |
| | | @TableField("km3_switch") |
| | | private Integer km3Switch; |
| | | |
| | | /**配网电源*/ |
| | | //自动核容周期,单位:天(7~999) |
| | | @TableField("auto_captestperiod") |
| | | private Integer autoCapTestPeriod; |
| | | //负载自动断电周期 单位:天(1~999) [新增字段] |
| | | @TableField("loaderpowerdown_peroid") |
| | | private Integer loaderPowerDownPeriod; |
| | | //负载断电时间 单位:秒(5~30) [新增字段] |
| | | @TableField("loaderpowerdown_time") |
| | | private Integer loaderPowerDownTime; |
| | | //升压DCDC,后备电压(0.1V 30.0~56.0) [新增字段] |
| | | @TableField("boost_dcdc_bakvol") |
| | | private Float boostDCDCBakVol; |
| | | //升压DCDC,后备电流 [界面不设置] [新增字段] |
| | | @TableField("boost_dcdc_bakcurr") |
| | | private Float boostDCDCBakCurr; |
| | | |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private String stationName; |
| | | @TableField(exist = false) |