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
| package com.ld.igds.inout.dto;
|
| import com.ld.igds.constant.BizType;
| import lombok.Data;
|
| /**
| * 出入库抓拍对象,页面传递
| */
| @Data
| public class InoutGateDto {
|
| private String companyId;
| private String deptId;
|
|
| //业务类型
| private String bizType = BizType.INOUT_IN.getCode();
|
|
|
| //gate配置id
| private String confId;
|
| //道闸目标状态
| private String targetStatus;
|
| private String sort;
|
| }
|
|