Lius
2024-07-08 58b89e49bf6dba960229a94a95d5b9f8821e3f23
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
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * @author: LiuS
 * @create: 2023-07-18 09:25
 */
@Data
public class MdcProcessQuantityVo {
 
    private String efficientDate;
    private Integer processQuantity;
    private String equipmentId;
    private String startTime;
    private String endTime;
    private String parentId;
    private String typeTree;
    private List<String> mdcSectionIds;
    private String equipmentIds;
    private String equipmentName;
    private String partsCode;
    private String batchCode;
    private String sequenceNumber;
}