| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @TableName("custom_storage") |
| | | @Data |
| | | public class CustomStorage { |
| | | |
| | | @TableField(exist = false) |
| | | private Boolean flag; |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | @ApiModelProperty("预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | } |