|  |  |  | 
|---|
|  |  |  | package com.doumee.dao.business.model; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.service.business.third.model.LoginUserModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @ApiModel("报警规则配置明细表") | 
|---|
|  |  |  | @TableName("`warning_rule_detail`") | 
|---|
|  |  |  | public class WarningRuleDetail { | 
|---|
|  |  |  | public class WarningRuleDetail  extends LoginUserModel { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ExcelColumn(name="主键") | 
|---|
|  |  |  | private Integer id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelColumn(name="报警类型编码(关联warning)") | 
|---|
|  |  |  | private Integer warningId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "多规则间隔时间(秒)", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="多规则间隔时间(秒)") | 
|---|
|  |  |  | private Integer regionCode; | 
|---|
|  |  |  | @ApiModelProperty(value = "区域编码", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="区域编码") | 
|---|
|  |  |  | private String regionCode; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "排序码") | 
|---|
|  |  |  | @ExcelColumn(name="排序码") | 
|---|