feat(预警计划等级自定义):
This commit is contained in:
parent
5d0b4abbd8
commit
a120716c7e
|
@ -5,10 +5,11 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
|||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import java.math.BigDecimal;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 警报计划表
|
||||
*/
|
||||
|
@ -32,7 +33,7 @@ public class AlertPlan extends BaseEntity {
|
|||
* 等级
|
||||
*/
|
||||
@TableField(value = "`level`")
|
||||
private Integer level;
|
||||
private String level;
|
||||
|
||||
/**
|
||||
* 最大值
|
||||
|
|
|
@ -22,7 +22,7 @@ public class AlertPlanAndPlanTypeDTO {
|
|||
/**
|
||||
* 等级
|
||||
*/
|
||||
private Integer level;
|
||||
private String level;
|
||||
|
||||
/**
|
||||
* 最大值
|
||||
|
|
Loading…
Reference in New Issue