cuilei
2025-06-11 cd00884c3db8fa6808b3b5949ab1a2b1459d6bdc
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
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
import org.jeecg.modules.mdc.entity.MdcDowntime;
 
import java.util.List;
 
/**
 * @Author: Lius
 * @CreateTime: 2025-03-12
 * @Description:
 */
@Data
public class MdcDowntimeVo extends MdcDowntime {
    /**
     * 开始时间  ->  20220101
     */
    private String startTime;
    /**
     * 结束时间  ->  20220101
     */
    private String endTime;
    private String effectiveDate;
    /**
     * 树类型    ->  1:车间层级   2:部门层级
     */
    private String typeTree;
    /**
     * 层级ID
     */
    private String parentId;
 
    /**
     * 停机原因
     */
    private String downtimeDescription;
 
    /**
     * 停机ids
     */
    private String downTimeIds;
 
    /**
     * 设备ids
     */
    private List<String> equipmentIdList;
    private List<String> mdcSectionIds;
}