Lius
2025-03-03 5ae1b71ab6b57140d46e6a8b9e606bb4a390ce27
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;
}