大客流预警信息处置功能测试
This commit is contained in:
parent
47c50f8f34
commit
b7e21c9446
|
|
@ -0,0 +1,51 @@
|
|||
package com.dkl.large.domain;
|
||||
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.dkl.common.annotation.Excel;
|
||||
import com.dkl.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 容量阀值对象 dkl_warning_threshold
|
||||
*
|
||||
* @author Dkl
|
||||
* @date 2025-06-07
|
||||
*/
|
||||
@Data
|
||||
public class DklWarningThreshold extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private int id;
|
||||
|
||||
/** 预警等级 */
|
||||
@Excel(name = "预警等级")
|
||||
private String warningLevel;
|
||||
|
||||
/** 预警容量最小值 */
|
||||
@Excel(name = "预警容量最小值")
|
||||
private int maxCapacity;
|
||||
|
||||
/** 预警容量最大值 */
|
||||
@Excel(name = "预警容量最大值")
|
||||
private int minCapacity;
|
||||
|
||||
/** 采取措施 */
|
||||
@Excel(name = "采取措施")
|
||||
private String takeSteps;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
/** 部门id */
|
||||
@Excel(name = "部门id")
|
||||
private Long deptId;
|
||||
|
||||
/** 图标 */
|
||||
@Excel(name = "图标")
|
||||
private String icon;
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue