| | |
| | | package com.whyc.pojo.db_ckpwrdev_data_rt; |
| | | |
| | | 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 io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 测控电源遥测量模拟设置表 |
| | | * </p> |
| | | * |
| | | * @author lxw |
| | | * @since 2023-11-21 |
| | | * 测控电源遥测量模拟设置表 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @TableName("tb_ckpowerdev_rt_set") |
| | | @ApiModel(value="CkpowerdevRtSet对象", description="测控电源遥测量模拟设置表") |
| | | @TableName(schema = "db_ckpwrdev_data_rt",value = "tb_ckpowerdev_rt_set") |
| | | @ApiModel("测控电源遥测量模拟设置表") |
| | | public class CKPowerDevRtSet implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @ApiModelProperty(value = "命令") |
| | | private Integer opCmd; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电压-真实值") |
| | | private Float acin1VolaReal; |
| | | @ApiModelProperty(value = "第1路交流A相输入电压-模拟值") |
| | | @TableField("acin1_vola_fake") |
| | | private Float acIn1VolAFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1VolaSt; |
| | | @TableField("acin1_vola_st") |
| | | private Integer acIn1VolASt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电压-真实值") |
| | | private Float acin1VolbReal; |
| | | @ApiModelProperty(value = "第1路交流B相输入电压-模拟值") |
| | | @TableField("acin1_volb_fake") |
| | | private Float acIn1VolBFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1VolbSt; |
| | | @TableField("acin1_volb_st") |
| | | private Integer acIn1VolBSt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电压-真实值") |
| | | private Float acin1VolcReal; |
| | | @ApiModelProperty(value = "第1路交流C相输入电压-模拟值") |
| | | @TableField("acin1_volc_fake") |
| | | private Float acIn1VolCFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1VolcSt; |
| | | @TableField("acin1_volc_st") |
| | | private Integer acIn1VolCSt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电流-真实值") |
| | | private Float acin1CurraReal; |
| | | @ApiModelProperty(value = "第1路交流A相输入电流-模拟值") |
| | | @TableField("acin1_curra_fake") |
| | | private Float acIn1CurrAFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1CurraSt; |
| | | @TableField("acin1_curra_st") |
| | | private Integer acIn1CurrASt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电流-真实值") |
| | | private Float acin1CurrbReal; |
| | | @ApiModelProperty(value = "第1路交流B相输入电流-模拟值") |
| | | @TableField("acin1_currb_fake") |
| | | private Float acIn1CurrBFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1CurrbSt; |
| | | @TableField("acin1_currb_st") |
| | | private Integer acIn1CurrBSt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电流-真实值") |
| | | private Float acin1CurrcReal; |
| | | @ApiModelProperty(value = "第1路交流C相输入电流-模拟值") |
| | | @TableField("acin1_currc_fake") |
| | | private Float acIn1CurrCFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin1CurrcSt; |
| | | @TableField("acin1_currc_st") |
| | | private Integer acIn1CurrCSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电压-真实值") |
| | | private Float acin2VolaReal; |
| | | @ApiModelProperty(value = "第2路交流A相输入电压-模拟值") |
| | | @TableField("acin2_vola_fake") |
| | | private Float acIn2VolAFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2VolaSt; |
| | | @TableField("acin2_vola_st") |
| | | private Integer acIn2VolASt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电压-真实值") |
| | | private Float acin2VolbReal; |
| | | @ApiModelProperty(value = "第2路交流B相输入电压-模拟值") |
| | | @TableField("acin2_volb_fake") |
| | | private Float acIn2VolBFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2VolbSt; |
| | | @TableField("acin2_volb_st") |
| | | private Integer acIn2VolBSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电压-真实值") |
| | | private Float acin2VolcReal; |
| | | @ApiModelProperty(value = "第2路交流C相输入电压-模拟值") |
| | | @TableField("acin2_volc_fake") |
| | | private Float acIn2VolCFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电压使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2VolcSt; |
| | | @TableField("acin2_volc_st") |
| | | private Integer acIn2VolCSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电流-真实值") |
| | | private Float acin2CurraReal; |
| | | @ApiModelProperty(value = "第2路交流A相输入电流-模拟值") |
| | | @TableField("acin2_curra_fake") |
| | | private Float acIn2CurrAFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2CurraSt; |
| | | @TableField("acin2_curra_st") |
| | | private Integer acIn2CurrASt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电流-真实值") |
| | | private Float acin2CurrbReal; |
| | | @ApiModelProperty(value = "第2路交流B相输入电流-模拟值") |
| | | @TableField("acin2_currb_fake") |
| | | private Float acIn2CurrBFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2CurrbSt; |
| | | @TableField("acin2_currb_st") |
| | | private Integer acIn2CurrBSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电流-真实值") |
| | | private Float acin2CurrcReal; |
| | | @ApiModelProperty(value = "第2路交流C相输入电流-模拟值") |
| | | @TableField("acin2_currc_fake") |
| | | private Float acIn2CurrCFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电流使用状态[0-真实值 1-模拟值]") |
| | | private Integer acin2CurrcSt; |
| | | @TableField("acin2_currc_st") |
| | | private Integer acIn2CurrCSt; |
| | | |
| | | @ApiModelProperty(value = "交流配电柜温度-真实值") |
| | | private Float acCabinetTempReal; |
| | | @ApiModelProperty(value = "交流配电柜温度-模拟值") |
| | | @TableField("ac_cabinet_temp_fake") |
| | | private Float acCabinetTempFake; |
| | | |
| | | @ApiModelProperty(value = "交流配电柜温度使用状态[0-真实值 1-模拟值]") |
| | | @TableField("ac_cabinet_temp_st") |
| | | private Integer acCabinetTempSt; |
| | | |
| | | @ApiModelProperty(value = "直流配电柜温度-真实值") |
| | | private Float dcCabinetTempReal; |
| | | @ApiModelProperty(value = "直流配电柜温度-模拟值") |
| | | @TableField("dc_cabinet_temp_fake") |
| | | private Float dcCabinetTempFake; |
| | | |
| | | @ApiModelProperty(value = "直流配电柜温度使用状态[0-真实值 1-模拟值]") |
| | | @TableField("dc_cabinet_temp_st") |
| | | private Integer dcCabinetTempSt; |
| | | |
| | | @ApiModelProperty(value = "高频开关配电柜温度-真实值") |
| | | private Float highfrqCabinetTempReal; |
| | | @ApiModelProperty(value = "高频开关配电柜温度-模拟值") |
| | | @TableField("highfrq_cabinet_temp_fake") |
| | | private Float highFrqCabinetTempFake; |
| | | |
| | | @ApiModelProperty(value = "高频开关配电柜温度使用状态[0-真实值 1-模拟值]") |
| | | private Integer highfrqCabinetTempSt; |
| | | @TableField("highfrq_cabinet_temp_st") |
| | | private Integer highFrqCabinetTempSt; |
| | | |
| | | @ApiModelProperty(value = "交流A相输出电压-真实值") |
| | | private Float acoutVolaReal; |
| | | @ApiModelProperty(value = "交流A相输出电压-模拟值") |
| | | @TableField("acout_vola_fake") |
| | | private Float acOutVolAFake; |
| | | |
| | | @ApiModelProperty(value = "交流A相输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutVolaSt; |
| | | @TableField("acout_vola_st") |
| | | private Integer acOutVolASt; |
| | | |
| | | @ApiModelProperty(value = "交流B相输出电压-真实值") |
| | | private Float acoutVolbReal; |
| | | @ApiModelProperty(value = "交流B相输出电压-模拟值") |
| | | @TableField("acout_volb_fake") |
| | | private Float acOutVolBFake; |
| | | |
| | | @ApiModelProperty(value = "交流B相输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutVolbSt; |
| | | @TableField("acout_volb_st") |
| | | private Integer acOutVolBSt; |
| | | |
| | | @ApiModelProperty(value = "交流C相输出电压-真实值") |
| | | private Float acoutVolcReal; |
| | | @ApiModelProperty(value = "交流C相输出电压-模拟值") |
| | | @TableField("acout_volc_fake") |
| | | private Float acOutVolCFake; |
| | | |
| | | @ApiModelProperty(value = "交流C相输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutVolcSt; |
| | | @TableField("acout_volc_st") |
| | | private Integer acOutVolCSt; |
| | | |
| | | @ApiModelProperty(value = "交流A相输出电流-真实值") |
| | | private Float acoutCurraReal; |
| | | @ApiModelProperty(value = "交流A相输出电流-模拟值") |
| | | @TableField("acout_curra_fake") |
| | | private Float acOutCurrAFake; |
| | | |
| | | @ApiModelProperty(value = "交流A相输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutCurraSt; |
| | | @TableField("acout_curra_st") |
| | | private Integer acOutCurrASt; |
| | | |
| | | @ApiModelProperty(value = "交流B相输出电流-真实值") |
| | | private Float acoutCurrbReal; |
| | | @ApiModelProperty(value = "交流B相输出电流-模拟值") |
| | | @TableField("acout_currb_fake") |
| | | private Float acOutCurrBFake; |
| | | |
| | | @ApiModelProperty(value = "交流B相输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutCurrbSt; |
| | | @TableField("acout_currb_st") |
| | | private Integer acOutCurrBSt; |
| | | |
| | | @ApiModelProperty(value = "交流C相输出电流-真实值") |
| | | private Float acoutCurrcReal; |
| | | @ApiModelProperty(value = "交流C相输出电流-模拟值") |
| | | @TableField("acout_currc_fake") |
| | | private Float acOutCurrCFake; |
| | | |
| | | @ApiModelProperty(value = "交流C相输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer acoutCurrcSt; |
| | | @TableField("acout_currc_st") |
| | | private Integer acOutCurrCSt; |
| | | |
| | | @ApiModelProperty(value = "直流输出电压-真实值") |
| | | private Float dcoutVolReal; |
| | | @ApiModelProperty(value = "直流输出电压-模拟值") |
| | | @TableField("dcout_vol_fake") |
| | | private Float dcOutVolFake; |
| | | |
| | | @ApiModelProperty(value = "直流输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcoutVolSt; |
| | | @TableField("dcout_vol_st") |
| | | private Integer dcOutVolSt; |
| | | |
| | | @ApiModelProperty(value = "负载电流-真实值") |
| | | private Float loadCurrReal; |
| | | @ApiModelProperty(value = "负载电流-模拟值") |
| | | @TableField("load_curr_fake") |
| | | private Float loadCurrFake; |
| | | |
| | | @ApiModelProperty(value = "负载电流使用状态 [0-真实值 1-模拟值]") |
| | | @TableField("load_curr_st") |
| | | private Integer loadCurrSt; |
| | | |
| | | @ApiModelProperty(value = "蓄电池组充电电流-真实值") |
| | | private Float battCharcurrReal; |
| | | @ApiModelProperty(value = "蓄电池组充电电流-模拟值") |
| | | @TableField("batt_charcurr_fake") |
| | | private Float battCharCurrFake; |
| | | |
| | | @ApiModelProperty(value = "蓄电池组充电电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer battCharcurrSt; |
| | | @TableField("batt_charcurr_st") |
| | | private Integer battCharCurrSt; |
| | | |
| | | @ApiModelProperty(value = "第1路直流输入电压-真实值") |
| | | private Float dcin1VolReal; |
| | | @ApiModelProperty(value = "第1路直流输入电压-模拟值") |
| | | @TableField("dcin1_vol_fake") |
| | | private Float dcIn1VolFake; |
| | | |
| | | @ApiModelProperty(value = "第1路直流输入电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcin1VolSt; |
| | | @TableField("dcin1_vol_st") |
| | | private Integer dcIn1VolSt; |
| | | |
| | | @ApiModelProperty(value = "第2路直流输入电压-真实值") |
| | | private Float dcin2VolReal; |
| | | @ApiModelProperty(value = "第2路直流输入电压-模拟值") |
| | | @TableField("dcin2_vol_fake") |
| | | private Float dcIn2VolFake; |
| | | |
| | | @ApiModelProperty(value = "第2路直流输入电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcin2VolSt; |
| | | @TableField("dcin2_vol_st") |
| | | private Integer dcIn2VolSt; |
| | | |
| | | @ApiModelProperty(value = "1段直流母线输出电压-真实值") |
| | | private Float dcout1VolReal; |
| | | @ApiModelProperty(value = "1段直流母线输出电压-模拟值") |
| | | @TableField("dcout1_vol_fake") |
| | | private Float dcOut1VolFake; |
| | | |
| | | @ApiModelProperty(value = "1段直流母线输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcout1VolSt; |
| | | @TableField("dcout1_vol_st") |
| | | private Integer dcOut1VolSt; |
| | | |
| | | @ApiModelProperty(value = "2段直流母线输出电压-真实值") |
| | | private Float dcout2VolReal; |
| | | @ApiModelProperty(value = "2段直流母线输出电压-模拟值") |
| | | @TableField("dcout2_vol_fake") |
| | | private Float dcOut2VolFake; |
| | | |
| | | @ApiModelProperty(value = "2段直流母线输出电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcout2VolSt; |
| | | @TableField("dcout2_vol_st") |
| | | private Integer dcOut2VolSt; |
| | | |
| | | @ApiModelProperty(value = "1段直流母线输出电流-真实值") |
| | | private Float dcout1CurrReal; |
| | | @ApiModelProperty(value = "1段直流母线输出电流-模拟值") |
| | | @TableField("dcout1_curr_fake") |
| | | private Float dcOut1CurrFake; |
| | | |
| | | @ApiModelProperty(value = "1段直流母线输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcout1CurrSt; |
| | | @TableField("dcout1_curr_st") |
| | | private Integer dcOut1CurrSt; |
| | | |
| | | @ApiModelProperty(value = "2段直流母线输出电流-真实值") |
| | | private Float dcout2CurrReal; |
| | | @ApiModelProperty(value = "2段直流母线输出电流-模拟值") |
| | | @TableField("dcout2_curr_fake") |
| | | private Float dcOut2CurrFake; |
| | | |
| | | @ApiModelProperty(value = "2段直流母线输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer dcout2CurrSt; |
| | | @TableField("dcout2_curr_st") |
| | | private Integer dcOut2CurrSt; |
| | | |
| | | @ApiModelProperty(value = "电池组1端电压-真实值") |
| | | private Float batt1GroupvolReal; |
| | | @ApiModelProperty(value = "电池组1端电压-模拟值") |
| | | @TableField("batt1_groupvol_fake") |
| | | private Float batt1GroupVolFake; |
| | | |
| | | @ApiModelProperty(value = "电池组1端电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer batt1GroupvolSt; |
| | | @TableField("batt1_groupvol_st") |
| | | private Integer batt1GroupVolSt; |
| | | |
| | | @ApiModelProperty(value = "电池组2端电压-真实值") |
| | | private Float batt2GroupvolReal; |
| | | @ApiModelProperty(value = "电池组2端电压-模拟值") |
| | | @TableField("batt2_groupvol_fake") |
| | | private Float batt2GroupVolFake; |
| | | |
| | | @ApiModelProperty(value = "电池组1端电压使用状态 [0-真实值 1-模拟值]") |
| | | private Integer batt2GroupvolSt; |
| | | @TableField("batt2_groupvol_st") |
| | | private Integer batt2GroupVolSt; |
| | | |
| | | @ApiModelProperty(value = "模块1输出电流-真实值") |
| | | private Float m1OutcurrReal; |
| | | @ApiModelProperty(value = "模块1输出电流-模拟值") |
| | | @TableField("m1_outcurr_fake") |
| | | private Float m1OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块1输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m1OutcurrSt; |
| | | @TableField("m1_outcurr_st") |
| | | private Integer m1OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块2输出电流-真实值") |
| | | private Float m2OutcurrReal; |
| | | @ApiModelProperty(value = "模块2输出电流-模拟值") |
| | | @TableField("m2_outcurr_fake") |
| | | private Float m2OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块2输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m2OutcurrSt; |
| | | @TableField("m2_outcurr_st") |
| | | private Integer m2OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块3输出电流-真实值") |
| | | private Float m3OutcurrReal; |
| | | @ApiModelProperty(value = "模块3输出电流-模拟值") |
| | | @TableField("m3_outcurr_fake") |
| | | private Float m3OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块3输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m3OutcurrSt; |
| | | @TableField("m3_outcurr_st") |
| | | private Integer m3OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块4输出电流-真实值") |
| | | private Float m4OutcurrReal; |
| | | @ApiModelProperty(value = "模块4输出电流-模拟值") |
| | | @TableField("m4_outcurr_fake") |
| | | private Float m4OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块4输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m4OutcurrSt; |
| | | @TableField("m4_outcurr_st") |
| | | private Integer m4OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块5输出电流-真实值") |
| | | private Float m5OutcurrReal; |
| | | @ApiModelProperty(value = "模块5输出电流-模拟值") |
| | | @TableField("m5_outcurr_fake") |
| | | private Float m5OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块5输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m5OutcurrSt; |
| | | @TableField("m5_outcurr_st") |
| | | private Integer m5OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块6输出电流-真实值") |
| | | private Float m6OutcurrReal; |
| | | @ApiModelProperty(value = "模块6输出电流-模拟值") |
| | | @TableField("m6_outcurr_fake") |
| | | private Float m6OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块6输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m6OutcurrSt; |
| | | @TableField("m6_outcurr_st") |
| | | private Integer m6OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块7输出电流-真实值") |
| | | private Float m7OutcurrReal; |
| | | @ApiModelProperty(value = "模块7输出电流-模拟值") |
| | | @TableField("m7_outcurr_fake") |
| | | private Float m7OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块7输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m7OutcurrSt; |
| | | @TableField("m7_outcurr_st") |
| | | private Integer m7OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块8输出电流-真实值") |
| | | private Float m8OutcurrReal; |
| | | @ApiModelProperty(value = "模块8输出电流-模拟值") |
| | | @TableField("m8_outcurr_fake") |
| | | private Float m8OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块8输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m8OutcurrSt; |
| | | @TableField("m8_outcurr_st") |
| | | private Integer m8OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块9输出电流-真实值") |
| | | private Float m9OutcurrReal; |
| | | @ApiModelProperty(value = "模块9输出电流-模拟值") |
| | | @TableField("m9_outcurr_fake") |
| | | private Float m9OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块9输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m9OutcurrSt; |
| | | @TableField("m9_outcurr_st") |
| | | private Integer m9OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块10输出电流-真实值") |
| | | private Float m10OutcurrReal; |
| | | @ApiModelProperty(value = "模块10输出电流-模拟值") |
| | | @TableField("m10_outcurr_fake") |
| | | private Float m10OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块10输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m10OutcurrSt; |
| | | @TableField("m10_outcurr_st") |
| | | private Integer m10OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块11输出电流-真实值") |
| | | private Float m11OutcurrReal; |
| | | @ApiModelProperty(value = "模块11输出电流-模拟值") |
| | | @TableField("m11_outcurr_fake") |
| | | private Float m11OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块11输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m11OutcurrSt; |
| | | @TableField("m11_outcurr_st") |
| | | private Integer m11OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块12输出电流-真实值") |
| | | private Float m12OutcurrReal; |
| | | @ApiModelProperty(value = "模块12输出电流-模拟值") |
| | | @TableField("m12_outcurr_fake") |
| | | private Float m12OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块12输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m12OutcurrSt; |
| | | @TableField("m12_outcurr_st") |
| | | private Integer m12OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块13输出电流-真实值") |
| | | private Float m13OutcurrReal; |
| | | @ApiModelProperty(value = "模块13输出电流-模拟值") |
| | | @TableField("m13_outcurr_fake") |
| | | private Float m13OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块13输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m13OutcurrSt; |
| | | @TableField("m13_outcurr_st") |
| | | private Integer m13OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块14输出电流-真实值") |
| | | private Float m14OutcurrReal; |
| | | @ApiModelProperty(value = "模块14输出电流-模拟值") |
| | | @TableField("m14_outcurr_fake") |
| | | private Float m14OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块14输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m14OutcurrSt; |
| | | @TableField("m14_outcurr_st") |
| | | private Integer m14OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块15输出电流-真实值") |
| | | private Float m15OutcurrReal; |
| | | @ApiModelProperty(value = "模块15输出电流-模拟值") |
| | | @TableField("m15_outcurr_fake") |
| | | private Float m15OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块15输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m15OutcurrSt; |
| | | @TableField("m15_outcurr_st") |
| | | private Integer m15OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块16输出电流-真实值") |
| | | private Float m16OutcurrReal; |
| | | @ApiModelProperty(value = "模块16输出电流-模拟值") |
| | | @TableField("m16_outcurr_fake") |
| | | private Float m16OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块16输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m16OutcurrSt; |
| | | @TableField("m16_outcurr_st") |
| | | private Integer m16OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块17输出电流-真实值") |
| | | private Float m17OutcurrReal; |
| | | @ApiModelProperty(value = "模块17输出电流-模拟值") |
| | | @TableField("m17_outcurr_fake") |
| | | private Float m17OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块17输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m17OutcurrSt; |
| | | @TableField("m17_outcurr_st") |
| | | private Integer m17OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块18输出电流-真实值") |
| | | private Float m18OutcurrReal; |
| | | @ApiModelProperty(value = "模块18输出电流-模拟值") |
| | | @TableField("m18_outcurr_fake") |
| | | private Float m18OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块18输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m18OutcurrSt; |
| | | @TableField("m18_outcurr_st") |
| | | private Integer m18OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块19输出电流-真实值") |
| | | private Float m19OutcurrReal; |
| | | @ApiModelProperty(value = "模块19输出电流-模拟值") |
| | | @TableField("m19_outcurr_fake") |
| | | private Float m19OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块19输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m19OutcurrSt; |
| | | @TableField("m19_outcurr_st") |
| | | private Integer m19OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块20输出电流-真实值") |
| | | private Float m20OutcurrReal; |
| | | @ApiModelProperty(value = "模块20输出电流-模拟值") |
| | | @TableField("m20_outcurr_fake") |
| | | private Float m20OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块20输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m20OutcurrSt; |
| | | @TableField("m20_outcurr_st") |
| | | private Integer m20OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块21输出电流-真实值") |
| | | private Float m21OutcurrReal; |
| | | @ApiModelProperty(value = "模块21输出电流-模拟值") |
| | | @TableField("m21_outcurr_fake") |
| | | private Float m21OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块21输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m21OutcurrSt; |
| | | @TableField("m21_outcurr_st") |
| | | private Integer m21OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块22输出电流-真实值") |
| | | private Float m22OutcurrReal; |
| | | @ApiModelProperty(value = "模块22输出电流-模拟值") |
| | | @TableField("m22_outcurr_fake") |
| | | private Float m22OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块22输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m22OutcurrSt; |
| | | @TableField("m22_outcurr_st") |
| | | private Integer m22OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块23输出电流-真实值") |
| | | private Float m23OutcurrReal; |
| | | @ApiModelProperty(value = "模块23输出电流-模拟值") |
| | | @TableField("m23_outcurr_fake") |
| | | private Float m23OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块23输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m23OutcurrSt; |
| | | @TableField("m23_outcurr_st") |
| | | private Integer m23OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块24输出电流-真实值") |
| | | private Float m24OutcurrReal; |
| | | @ApiModelProperty(value = "模块24输出电流-模拟值") |
| | | @TableField("m24_outcurr_fake") |
| | | private Float m24OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块24输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m24OutcurrSt; |
| | | @TableField("m24_outcurr_st") |
| | | private Integer m24OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块25输出电流-真实值") |
| | | private Float m25OutcurrReal; |
| | | @ApiModelProperty(value = "模块25输出电流-模拟值") |
| | | @TableField("m25_outcurr_fake") |
| | | private Float m25OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块25输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m25OutcurrSt; |
| | | @TableField("m25_outcurr_st") |
| | | private Integer m25OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块26输出电流-真实值") |
| | | private Float m26OutcurrReal; |
| | | @ApiModelProperty(value = "模块26输出电流-模拟值") |
| | | @TableField("m26_outcurr_fake") |
| | | private Float m26OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块26输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m26OutcurrSt; |
| | | @TableField("m26_outcurr_st") |
| | | private Integer m26OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块27输出电流-真实值") |
| | | private Float m27OutcurrReal; |
| | | @ApiModelProperty(value = "模块27输出电流-模拟值") |
| | | @TableField("m27_outcurr_fake") |
| | | private Float m27OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块27输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m27OutcurrSt; |
| | | @TableField("m27_outcurr_st") |
| | | private Integer m27OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块28输出电流-真实值") |
| | | private Float m28OutcurrReal; |
| | | @ApiModelProperty(value = "模块28输出电流-模拟值") |
| | | @TableField("m28_outcurr_fake") |
| | | private Float m28OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块28输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m28OutcurrSt; |
| | | @TableField("m28_outcurr_st") |
| | | private Integer m28OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块29输出电流-真实值") |
| | | private Float m29OutcurrReal; |
| | | @ApiModelProperty(value = "模块29输出电流-模拟值") |
| | | @TableField("m29_outcurr_fake") |
| | | private Float m29OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块29输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m29OutcurrSt; |
| | | @TableField("m29_outcurr_st") |
| | | private Integer m29OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块30输出电流-真实值") |
| | | private Float m30OutcurrReal; |
| | | @ApiModelProperty(value = "模块30输出电流-模拟值") |
| | | @TableField("m30_outcurr_fake") |
| | | private Float m30OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块30输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m30OutcurrSt; |
| | | @TableField("m30_outcurr_st") |
| | | private Integer m30OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块31输出电流-真实值") |
| | | private Float m31OutcurrReal; |
| | | @ApiModelProperty(value = "模块31输出电流-模拟值") |
| | | @TableField("m31_outcurr_fake") |
| | | private Float m31OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块31输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m31OutcurrSt; |
| | | @TableField("m31_outcurr_st") |
| | | private Integer m31OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "模块32输出电流-真实值") |
| | | private Float m32OutcurrReal; |
| | | @ApiModelProperty(value = "模块32输出电流-模拟值") |
| | | @TableField("m32_outcurr_fake") |
| | | private Float m32OutCurrFake; |
| | | |
| | | @ApiModelProperty(value = "模块32输出电流使用状态 [0-真实值 1-模拟值]") |
| | | private Integer m32OutcurrSt; |
| | | @TableField("m32_outcurr_st") |
| | | private Integer m32OutCurrSt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电压-模拟值 CPSS") |
| | | @TableField("ac1_invola_fake") |
| | | private Float ac1InVolAFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流A相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac1_invola_st") |
| | | private Integer ac1InVolASt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电压-模拟值 CPSS") |
| | | @TableField("ac1_involb_fake") |
| | | private Float ac1InVolBFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流B相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac1_involb_st") |
| | | private Integer ac1InVolBSt; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电压-模拟值 CPSS") |
| | | @TableField("ac1_involc_fake") |
| | | private Float ac1InVolCFake; |
| | | |
| | | @ApiModelProperty(value = "第1路交流C相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac1_involc_st") |
| | | private Integer ac1InVolCSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电压-模拟值 CPSS") |
| | | @TableField("ac2_invola_fake") |
| | | private Float ac2InVolAFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流A相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac2_invola_st") |
| | | private Integer ac2InVolASt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电压-模拟值 CPSS") |
| | | @TableField("ac2_involb_fake") |
| | | private Float ac2InVolBFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流B相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac2_involb_st") |
| | | private Integer ac2InVolBSt; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电压-模拟值 CPSS") |
| | | @TableField("ac2_involc_fake") |
| | | private Float ac2InVolCFake; |
| | | |
| | | @ApiModelProperty(value = "第2路交流C相输入电压-使用状态 [0-真实值 1-模拟值] CPSS") |
| | | @TableField("ac2_involc_st") |
| | | private Integer ac2InVolCSt; |
| | | |
| | | @TableField(exist = false) |
| | | private List<CKPowerDevRtSetLog> logList; |
| | | |
| | | } |