1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.jeecg.modules.mdc.vo;
|
| import lombok.Data;
| import org.jeecg.modules.mdc.entity.MdcOeeInfo;
|
| import java.util.List;
|
| /**
| * @author Lius
| * @date 2024/12/12 10:14
| */
| @Data
| public class MdcOeeInfoVo extends MdcOeeInfo {
| private String startTime;
| private String endTime;
| private String parentId;
| private String typeTree;
| private List<String> equipmentIdList;
| private String equipmentIds;
| }
|
|