lyh
2025-03-13 3320df960ae37b4f6611baf6a6954e20b3b88fee
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
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;
 
    /**
     * 设备ids
     */
    private List<String> equipmentIdList;
    private List<String> mdcSectionIds;
}