26 changed files with 828 additions and 952 deletions
@ -0,0 +1,97 @@ |
|||||
|
package org.nl.wms.database.eas.dto; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Builder; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* {@code @Description:} (AllocationBill)数据传输类 |
||||
|
* {@code @Author:} gbx |
||||
|
* |
||||
|
* @since 2024-05-25 |
||||
|
*/ |
||||
|
@Data |
||||
|
@Builder |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class AllocationBillDetailDto implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -7739291296662381396L; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 分录序号 |
||||
|
*/ |
||||
|
|
||||
|
private String seq; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 分录id |
||||
|
*/ |
||||
|
|
||||
|
private String entryId; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 数量 |
||||
|
*/ |
||||
|
private String qty; |
||||
|
|
||||
|
/** |
||||
|
* 计量单位 |
||||
|
*/ |
||||
|
private String unitNo; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 调入仓库 |
||||
|
*/ |
||||
|
private String receiptWarehouseNo; |
||||
|
|
||||
|
/** |
||||
|
* 调入库位 |
||||
|
*/ |
||||
|
private String receiptLocationNo; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 调出仓库 |
||||
|
*/ |
||||
|
private String issueWarehouseNo; |
||||
|
|
||||
|
/** |
||||
|
* 调出库位 |
||||
|
*/ |
||||
|
private String issueLocationNo; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 计划调入日期 |
||||
|
*/ |
||||
|
private String receiptPlanDate; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 计划调入日期 |
||||
|
*/ |
||||
|
private String issuePlanDate; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
@ -0,0 +1,16 @@ |
|||||
|
package org.nl.wms.database.eas.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
@Data |
||||
|
public class AllocationEasData { |
||||
|
|
||||
|
private String type ="WMS"; |
||||
|
|
||||
|
|
||||
|
private String method="DealDbBill"; |
||||
|
|
||||
|
|
||||
|
private AllocationBillDto data; |
||||
|
|
||||
|
} |
@ -0,0 +1,49 @@ |
|||||
|
package org.nl.wms.database.eas.dto; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Builder; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* {@code @Description:} (ReceiptBill)数据传输类 |
||||
|
* {@code @Author:} gbx |
||||
|
* |
||||
|
* @since 2024-05-25 |
||||
|
*/ |
||||
|
@Data |
||||
|
@Builder |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class ReceiptBillDetailDto implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 送货单号 |
||||
|
*/ |
||||
|
private String entryId; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 收货数量 |
||||
|
*/ |
||||
|
private String shsl; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 收货仓库编码 |
||||
|
*/ |
||||
|
private String ckbm; |
||||
|
|
||||
|
/** |
||||
|
* 收货库位编码 |
||||
|
*/ |
||||
|
private String kwbm; |
||||
|
|
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
Loading…
Reference in new issue