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; //包装层级
|
|
}
|