package com.whyc.pojo.db_param; import com.baomidou.mybatisplus.annotation.IdType; 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; /** *

* 电源心跳配置参数表 *

* * @author lxw * @since 2025-06-21 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName(schema = "db_param",value ="tb_powerheart_param") @ApiModel(value="PowerheartParam对象", description="电源心跳配置参数表") public class PowerheartParam implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "自增主键") @TableId(value = "num", type = IdType.AUTO) private Long num; @ApiModelProperty(value = "电源ID") private Integer powerId; @ApiModelProperty(value = "交流输入曲线数据间隔(分钟)") private Integer acinInterverCfg; @ApiModelProperty(value = "交流输入展示笔数") private Integer acinCountCfg; @ApiModelProperty(value = "直流输入间隔配置(分钟)") private Integer acoutInterverCfg; @ApiModelProperty(value = "直流输入展示笔数") private Integer acoutCountCfg; @ApiModelProperty(value = "核容设备信息间隔配置(分钟)") private Integer hrInterverCfg; @ApiModelProperty(value = "核容设备信息展示笔数") private Integer hrCountCfg; }