package com.zy.asrs.entity.param;
|
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
public class ReportErpParam {
|
private String 操作系统号;
|
private String 操作单据;
|
private String 操作类型;
|
private String ddate;
|
private String cWhCode;
|
private String cDepCode;
|
private String cOrderCode;
|
private String cMaker;
|
private String cHandler;
|
private String cDefine14;
|
private List<ChildInfo> children;
|
|
@Data
|
public static class ChildInfo{
|
private String irowno;
|
private String cInvCode;
|
private String iQuantity;
|
private String cBatch;
|
private String iNum;
|
private String iinvexchrate;
|
private String bFree1;
|
private String iPOsID;
|
private String cOrderCode;
|
private String ivouchrowno;
|
private String Define22;
|
}
|
}
|