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
| package com.mes.downworkstation.entity.request;
|
| import lombok.Data;
|
| /**
| * @Author : zhoush
| * @Date: 2024/7/10 14:10
| * @Description:
| */
| @Data
| public class DownWorkRequest {
|
|
| /**
| * 流程卡号
| */
| private String flowCardId;
|
| /**
| * 工位id
| */
| private int workstationId;
|
| /**
| * 层数
| */
| private int layer;
| }
|
|