李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
package com.chinaztt.mes.technology.dto;
 
import com.chinaztt.mes.basic.entity.Template;
import com.chinaztt.mes.technology.entity.Operation;
import com.chinaztt.mes.technology.entity.OperationAttachment;
import lombok.Data;
 
import java.util.List;
 
/**
 * @Author: zhangxy
 * @Date: 2020-09-24 10:06
 */
@Data
public class OperationDTO extends Operation {
    /**
     *
     */
    List<OperationAttachment> attachments;
    /**
     *
     */
    List<Long> capabilityIds;
    /**
     * 工序模板id
     */
    List<Long> templateIds;
    /**
     * 工序模板
     */
    List<Template> operationTemplateList;
    /**
     * 工步
     */
    List<StepDTO> stepList;
}