lyh
2025-07-02 212eb8010c66c321dcdfc617725b37885573a44e
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
34
35
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
 
/**
 * @author: LiuS
 * @create: 2023-08-01 14:33
 */
@Data
public class DayUtilizationRateQueryVo {
 
    /**
     * 日期  ->  20220101
     */
    private String dateTime;
 
    /**
     * 设备Id
     */
    private String equipmentId;
    /**
     * 设备名称
     */
    private String equipmentName;
    /**
     * 树类型    ->  1:车间层级   2:部门层级
     */
    private String typeTree;
    /**
     * 时间间隔
     */
    private Integer timeType;
 
 
}