| | |
| | | package com.sinata.system.domain.vo; |
| | | |
| | | import cn.idev.excel.annotation.ExcelIgnore; |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import com.sinata.system.annotation.FastExcel; |
| | | import com.sinata.system.conveter.EConverter; |
| | |
| | | public class MwWarningRecordVO { |
| | | |
| | | @ApiModelProperty("预警记录id") |
| | | @ExcelIgnore |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("预警时间") |
| | |
| | | private Date warnTime; |
| | | |
| | | @ApiModelProperty("预警对象id") |
| | | @ExcelIgnore |
| | | private Long warningTargetId; |
| | | |
| | | @ApiModelProperty("预警对象") |
| | |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("单位id") |
| | | @ExcelIgnore |
| | | private Long departmentId; |
| | | |
| | | @ApiModelProperty("单位名称") |
| | | @ExcelIgnore |
| | | private String departmentName; |
| | | |
| | | } |