package org.jeecg.modules.lims.dto; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; /** * 设备使用统计 */ @Data public class LimsInsUseStatDto{ /**仪器*/ @Excel(name = "仪器名称 ", width = 30) private String instrument; /**预约使用次数*/ @Excel(name = "预约使用次数 ", width = 30) private Integer appoUse; /**临时使用次数*/ @Excel(name = "临时使用次数 ", width = 30) private Integer tempUse; /**预约使用时间*/ @Excel(name = "预约使用时间 ", width = 30) private String appoUseTime; /**临时使用时间*/ @Excel(name = "临时使用时间 ", width = 30) private String tempUseTime; /**临时使用时间*/ @Excel(name = "临时使用时间 ", width = 30) private String useTime; }