package com.whyc.pojo.db_param; 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; /** *
* 电池告警参数表 *
* * @author lxw * @since 2025-05-23 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName(schema = "db_param",value ="tb_batt_almparam") @ApiModel(value="BattAlmparam对象", description="电池告警参数表") public class BattAlmparam implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "自增主键") @TableId(value = "num", type = IdType.AUTO) private Long num; @ApiModelProperty(value = "电池组ID") private Integer battgroupId; @ApiModelProperty(value = "告警ID") private Integer almId; @ApiModelProperty(value = "电池告警名称") private String almName; @ApiModelProperty(value = "上上限告警阈值") private Float almHighCoeUpper; @ApiModelProperty(value = "上上限告警等级") private Integer almHighLevelUpper; @ApiModelProperty(value = "上上限制告警使能") private Integer almHighCoeUpperEn; @ApiModelProperty(value = "上限告警阈值") private Float almHighCoe; @ApiModelProperty(value = "上限告警等级") private Integer almHighLevel; @ApiModelProperty(value = "上限告警等级") private Integer almHighEn; @ApiModelProperty(value = "下限告警阈值") private Float almLowCoe; @ApiModelProperty(value = "下限告警等级") private Integer almLowLevel; @ApiModelProperty(value = "下限告警使能") private Integer almLowEn; @ApiModelProperty(value = "下下限告警阈值") private Float almLowCoeLower; @ApiModelProperty(value = "下下限告警等级") private Integer almLowLevelLower; @ApiModelProperty(value = "下下限告警使能") private Integer almLowCoeLowerEn; @ApiModelProperty(value = "告警延迟时长[单位:秒]") private Integer almDelayTime; @TableField(exist = false) private String provice; @TableField(exist = false) private String city; @TableField(exist = false) private String country; @TableField(exist = false) private String fullName; @TableField(exist = false) private String stationName; @TableField(exist = false) private String battgroupName; }