From f3e96f32f2842309f97535e714557b9e9bf355c0 Mon Sep 17 00:00:00 2001 From: kanade Date: Mon, 8 Jun 2026 17:57:53 +0800 Subject: [PATCH] =?UTF-8?q?refactor(shipment):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E8=AE=A2=E8=88=B1=E5=8D=95=E5=AE=A1=E6=A0=B8=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除 AuditStaffIds 字段 - 添加 AuditItems 字段用于审核项目 - 导入 bean 包以支持 AuditItem 类型 - 调整代码格式增加可读性 --- erp/shipment/audit.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/erp/shipment/audit.go b/erp/shipment/audit.go index 2e55103..212b53e 100644 --- a/erp/shipment/audit.go +++ b/erp/shipment/audit.go @@ -2,15 +2,17 @@ package shipment import ( "context" + "git.kumo.work/shama/service/client" + "git.kumo.work/shama/service/erp/bean" ) type audit struct { } type ArgsAuditSubmit struct { - StaffId int64 // 操作人 - ShipmentId int64 // 订舱单id - AuditStaffIds []int64 // 审核人 + StaffId int64 // 操作人 + ShipmentId int64 // 订舱单id + AuditItems []bean.AuditItem // 审核 } // Submit @TITLE 提交审核