From 3be684af887afe4c0e45f281cc53adfef6f12b78 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 20 七月 2026 09:48:44 +0800
Subject: [PATCH] feat(erp): 添加销售订单生产状态跟踪功能

---
 yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/dal/dataobject/purchase/ErpPurchaseRequestItemDO.java |   91 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)

diff --git a/yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/dal/dataobject/purchase/ErpPurchaseRequestItemDO.java b/yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/dal/dataobject/purchase/ErpPurchaseRequestItemDO.java
new file mode 100644
index 0000000..40ac455
--- /dev/null
+++ b/yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/dal/dataobject/purchase/ErpPurchaseRequestItemDO.java
@@ -0,0 +1,91 @@
+package cn.iocoder.yudao.module.erp.dal.dataobject.purchase;
+
+import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
+import com.baomidou.mybatisplus.annotation.KeySequence;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.*;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+
+/**
+ * ERP 閲囪喘鐢宠鏄庣粏 DO
+ */
+@TableName("erp_purchase_request_items")
+@KeySequence("erp_purchase_request_items_seq")
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ToString(callSuper = true)
+@Builder
+@NoArgsConstructor
+@AllArgsConstructor
+public class ErpPurchaseRequestItemDO extends BaseDO {
+
+    /**
+     * 缂栧彿
+     */
+    @TableId
+    private Long id;
+
+    /**
+     * 閲囪喘鐢宠缂栧彿
+     */
+    private Long requestId;
+
+    /**
+     * 浜у搧缂栧彿
+     */
+    private Long productId;
+
+    /**
+     * 浜у搧鍗曚綅缂栧彿
+     */
+    private Long productUnitId;
+
+    /**
+     * 浜у搧鍙傝�冨崟浠�
+     */
+    private BigDecimal productPrice;
+
+    /**
+     * 鏁伴噺
+     */
+    private BigDecimal count;
+
+    /**
+     * 鎬讳环
+     */
+    private BigDecimal totalPrice;
+
+    /**
+     * 绋庣巼锛岀櫨鍒嗘瘮
+     */
+    private BigDecimal taxPercent;
+
+    /**
+     * 绋庨
+     */
+    private BigDecimal taxPrice;
+
+    /**
+     * 闇�姹傛棩鏈�
+     */
+    private LocalDateTime demandTime;
+
+    /**
+     * 澶囨敞
+     */
+    private String remark;
+
+    /**
+     * 鏄惁闇�瑕佹潵鏂欐楠�
+     */
+    private Boolean qcCheckFlag;
+
+    /**
+     * 鍏ュ簱鏁伴噺
+     */
+    private BigDecimal inCount;
+
+}
\ No newline at end of file

--
Gitblit v1.9.3