Lius
2025-02-18 3423bb9ee5b25d270a00763b69ed73970d790f63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author Lius
 * @date 2024/12/2 15:25
 */
@Data
public class MdcPlanCloseVo {
    private String equipmentId;
    private String planCloseType;
    private Integer planCloseTimeLong;
    private String startTime;
    private String endTime;
    private String theDate;
    private String parentId;
    private String typeTree;
    private List<String> equipmentIdList;
    private String equipmentIds;
    private String closeType;
}