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;
|
| }
|
|