ICSRuternASN.java 528 Bytes
package com.huaheng.api.srm.domain;

import lombok.Data;

@Data
public class ICSRuternASN
{
    private static final long serialVersionUID = 1L;

    private String warehouseCode;

    //条码
    private String LotNo;

    private String Serial;

    //库位代码
    private String BinCode;

    //数量
    private Double LotQty;

    private String ReturnDoc;

    private Integer ReturnDocLine;

    //操作人
    private String User;

    private String MUSERName;

    //操作时间
    private String MTime;



}