啊鑫
2025-02-12 41a5ac443936a0c3d891d04955a8b77566220f05
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
package com.gs.xky.dto;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
public class BarcodeDeliveryNo {
 
    private String productCode;  //产品编码
    private String smallBarcode;  //小包条码
    private String bigBarcode;  //大包条码
    private String outerBarcode;  //外箱条码
    private String includeQty;  //当前小包条码包含的数量
    private String smallPackageLength;  //小包条码-长
    private String smallPackageWidth;  //小包条码-宽
    private String smallPackageHeight;  //小包条码-高
    private String bigPackageLength;  //大包条码-长
    private String bigPackageWidth;  //大包条码-宽
    private String bigPackageHeight;  //大包条码-高
    private String outerPackageLength;  //外箱条码-长
    private String outerPackageWidth;  //外箱条码-宽
    private String outerPackageHeight;  //外箱条码-高
    private String smallPackageSn;  //当前小包条码的流水码
    private String bigPackageSn;  //当前大包条码的流水码
    private String outPackageSn;  //当前外箱条码的流水码
    //private String dynamicData;  //条码规则中对应的动态字段的值, key对应的取值为dynamicDescList.field的值;如果企业调整了条码规则,请根据dynamicDescList返回的结果,了解各动态数据的含义
    private String packLevel;  //包装层级
 
}