| package com.ruoyi.system.export; | 
|   | 
| import cn.afterturn.easypoi.excel.annotation.Excel; | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.io.Serializable; | 
|   | 
| @Data | 
| @ApiModel(value = "厕所消杀记录导出excel") | 
| public class CleanToiletSanitizationExport implements Serializable { | 
|     @Excel(name = "序号", width = 30) | 
|     private Integer number; | 
|     @Excel(name = "日期", width = 30) | 
|     private String recordDate; | 
|     @Excel(name = "是否清洁", width = 30) | 
|     private String isCleaned; | 
|     @Excel(name = "是否清洁", width = 30) | 
|     private String isDisinfected; | 
|     @Excel(name = "保洁员", width = 30) | 
|     private String cleaner; | 
|   | 
|     @Excel(name = "巡查时间", width = 30) | 
|     private String inspectionTime; | 
|   | 
|     @Excel(name = "巡查人", width = 30) | 
|     private String inspector; | 
|   | 
|     @Excel(name = "巡查情况", width = 40) | 
|     private String inspectionSituation; | 
|   | 
|   | 
| } |