| package doumeemes.dao.business.dto.statistics; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel("大屏数据看板- 设备巡检") | 
| /** | 
|  *  滚动展示最新20条设备巡检记录,按照时间倒序排列; | 
|  */ | 
| public class CheckRecordModel { | 
|     @ApiModelProperty(value = "巡检时间") | 
|     private Date createTime; | 
|     @ApiModelProperty(value = "员工姓名") | 
|     private String userName; | 
|     @ApiModelProperty(value = "设备名称") | 
|     private String materialCode; | 
|     @ApiModelProperty(value = "巡检结果 0合格 1不良",example = "1") | 
|     private Integer doneType; | 
| } |