zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.jeecg.modules.lims.vo;
 
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
/**
 * 设备使用统计
 */
@Data
public class LimsInsUseStatVo {
    /**仪器*/
    @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;
 
 
 
 
}