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
| package org.jeecg.modules.mdc.vo;
|
| import lombok.Data;
|
| /**
| * @Author: Lius
| * @CreateTime: 2025-03-27
| * @Description:
| */
| @Data
| public class EquEffVo {
|
| /**
| * 中心
| */
| private String productionId;
| /**
| * 班组ids
| */
| private String productionIds;
| /**
| * 配送小组ID
| */
| private String teamCodes;
| /**
| * 设备类型
| */
| private String equipmentType;
| /**
| * 班制id
| */
| private String shiftId;
| /**
| * 月份
| */
| private String month;
|
|
| }
|
|