From bc76a082becae4e5d344ae1b193582be38761d2d Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期三, 05 三月 2025 16:47:07 +0800
Subject: [PATCH] #新增 1. 新增编规则生成功能 2. 新增PO单同步功能
---
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/PurchaseItem.java | 21 ++++++++++++---------
1 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/PurchaseItem.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/PurchaseItem.java
index 5d54e83..a9c82a5 100644
--- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/PurchaseItem.java
+++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/PurchaseItem.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.text.SimpleDateFormat;
import java.util.Date;
+
+import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@@ -22,6 +24,7 @@
import java.util.Date;
@Data
+@Accessors(chain = true)
@TableName("man_purchase_item")
public class PurchaseItem implements Serializable {
@@ -80,7 +83,7 @@
* 鏍囧噯鍖呰
*/
@ApiModelProperty(value= "鏍囧噯鍖呰")
- private Double nomQty;
+ private Double nromQty;
/**
* ASN鍗曟嵁鏁伴噺
@@ -98,19 +101,19 @@
* 渚涘簲鍟嗗悕绉�
*/
@ApiModelProperty(value= "渚涘簲鍟嗗悕绉�")
- private String pulrName;
+ private String splrName;
/**
* 渚涘簲鍟嗙紪鐮�
*/
@ApiModelProperty(value= "渚涘簲鍟嗙紪鐮�")
- private String pulrCode;
+ private String splrCode;
/**
* 渚涘簲鍟嗘壒娆�
*/
@ApiModelProperty(value= "渚涘簲鍟嗘壒娆�")
- private String pulrBatch;
+ private String splrBatch;
/**
* 鐘舵�� 1: 姝e父 0: 鍐荤粨
@@ -165,7 +168,7 @@
public PurchaseItem() {}
- public PurchaseItem(Long purchaseId,String erpId,String matnrCode,String matnrName,String unit,Double anfme,Double qty,Double nomQty,Double asnQty,Double printQty,String pulrName,String pulrCode,String pulrBatch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
+ public PurchaseItem(Long purchaseId,String erpId,String matnrCode,String matnrName,String unit,Double anfme,Double qty,Double nromQty,Double asnQty,Double printQty,String splrName,String splrCode,String splrBatch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
this.purchaseId = purchaseId;
this.erpId = erpId;
this.matnrCode = matnrCode;
@@ -173,12 +176,12 @@
this.unit = unit;
this.anfme = anfme;
this.qty = qty;
- this.nomQty = nomQty;
+ this.nromQty = nromQty;
this.asnQty = asnQty;
this.printQty = printQty;
- this.pulrName = pulrName;
- this.pulrCode = pulrCode;
- this.pulrBatch = pulrBatch;
+ this.splrName = splrName;
+ this.splrCode = splrCode;
+ this.splrBatch = splrBatch;
this.status = status;
this.deleted = deleted;
this.tenantId = tenantId;
--
Gitblit v1.9.1