Fixiaobai
2023-10-30 10e199f950f5c74b25e446433ceb51cffe675be4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.chinaztt.mes.technology.dto;
 
 
import com.chinaztt.mes.technology.entity.RoutingOperationRef;
import lombok.Data;
 
/**
 * @Author: zhangxy
 * @Date: 2020-08-26 15:37
 */
@Data
public class RefDTO  extends RoutingOperationRef {
 
    private Integer fromKey;
 
    private Integer toKey;
 
    private String condition;
 
}