自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 249e5581656200f6d8a86898fb5bd3b2af51f364
#
3个文件已添加
1个文件已修改
127 ■■■■■ 已修改文件
src/main/java/com/zy/common/service/erp/ErpService.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/common/service/erp/entity/Goods.java 51 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/common/service/erp/entity/Voucher.java 49 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/common/service/erp/entity/VoucherDetail.java 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/common/service/erp/ErpService.java
@@ -19,4 +19,8 @@
    //////////////////////成品、原材料入库通知单数据提取//////////////////////////////////////////////////
}
src/main/java/com/zy/common/service/erp/entity/Goods.java
New file
@@ -0,0 +1,51 @@
package com.zy.common.service.erp.entity;
import lombok.Data;
import java.util.Date;
/**
 * Created by vincent on 2022/12/8
 */
@Data
public class Goods {
    private String BarCode;
    private String MaterialNO;
    private String ProdSpec;
    private Integer NumOfBobbins;
    private Double NWT;
    private Double GWT;
    private Date ProdDate;
    private String LINE;
    private String GRADE;
    private String GRADES;
    private String Chip;
    private String Batch;
    private String PACKING_TYPE;
    private Date PACKING_DATE;
    private String State;
    private String LastVoucherID;
    private String PreVoucherID;
    private Date LastUpdatedDate;
    private Integer IsGetData;
}
src/main/java/com/zy/common/service/erp/entity/Voucher.java
New file
@@ -0,0 +1,49 @@
package com.zy.common.service.erp.entity;
import lombok.Data;
import java.util.Date;
/**
 * Created by vincent on 2022/12/8
 */
@Data
public class Voucher {
    private String VoucherID;
    private String MT;
    private String MaterialNO;
    private String CenterID;
    private String Plant;
    private String Loc;
    private String Batch;
    private Double TotalNum;
    private Integer TotalCount;
    private String State;
    private Date AccDate;
    private String VBELN;
    private String Customer;
    private Double ExpectedWeight;
    private String Container;
    private String TruckNO;
    private Date LastUpdatedDate;
    private Integer IsGetData;
}
src/main/java/com/zy/common/service/erp/entity/VoucherDetail.java
New file
@@ -0,0 +1,23 @@
package com.zy.common.service.erp.entity;
import lombok.Data;
import java.util.Date;
/**
 * Created by vincent on 2022/12/8
 */
@Data
public class VoucherDetail {
    private String VoucherID;
    private String BarCode;
    private String PickID;
    private Date LastUpdatedDate;
    private Integer IsGetData;
}