|  |  | 
 |  |  | package com.doumee.dao.business.model; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | 
 |  |  |     @ExcelColumn(name="任务主键") | 
 |  |  |     private Integer platformJobId; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "预警类型 0 =  作业超时 ;1=停靠错误", example = "1") | 
 |  |  |     @ExcelColumn(name="预警类型 0 =  作业超时 ;1=停靠错误") | 
 |  |  |     @ApiModelProperty(value = "预警类型 0停靠错误 1-停靠错误 2-作业超时", example = "1") | 
 |  |  |     @ExcelColumn(name="预警类型 0停靠错误 1-停靠错误 2-作业超时") | 
 |  |  |     private Integer eventType; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "月台名称") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String platformName; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "月台海康主键") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String platfromHkId; | 
 |  |  |  | 
 |  |  | } |