whyclxw
2024-07-01 0ce771b4a4ff5897dc91bb1b84a4561781b00ca5
src/main/java/com/whyc/pojo/db_ckpwrdev_data_rt/CKPowerDevRtSet.java
@@ -7,24 +7,17 @@
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;
@@ -551,5 +544,55 @@
    @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;
}