package com.whyc.pojo; 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 2021-12-14 */ @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @TableName(schema ="db_param",value = "alarm_param") @ApiModel(value="AlarmParam对象", description="") public class AlarmParam implements Serializable { private static final long serialVersionUID = 1L; @TableField("num") @ApiModelProperty("主键编号") private Integer num; @TableField("alm_id") @ApiModelProperty("告警id") private Integer almId; @TableField("alm_name") @ApiModelProperty("告警名称") private String almName; @TableField("alm_high_coe") @ApiModelProperty("上限告警阈值") private Float almHighCoe; @TableField("alm_low_coe") @ApiModelProperty("下限告警阈值") private Float almLowCoe; @TableField("alm_high_en") @ApiModelProperty("上限告警使能") private Integer almHighEn; @TableField("alm_low_en") @ApiModelProperty("下限告警使能") private Integer almLowEn; @TableField("alm_high_level") @ApiModelProperty("上限告警等级") private Integer almHighLevel; @TableField("alm_low_level") @ApiModelProperty("下限告警等级") private Integer almLowLevel; }