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
37
38
39
40
41
package com.vincent.rsf.openApi.entity.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "SyncLocsDto", description = "库位同步Dto")
public class SyncLocsDto {
 
    private Integer zoneId;
 
    private String locNo;
 
    private Integer locSts;
 
    private Integer row;
 
    private Integer bay;
 
    private Integer lev;
 
    private String barcode;
 
    private String zpallet;
 
    private String locType;
 
    private String zoneId$;
 
    private String locType$;
 
    private String locSts$;
 
    private Integer statusBool;
 
    private String locStsEl;
 
    private String status$;
}