From 05dfd27fb441bae47ec2130b25b87908bd536353 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 18 Jun 2025 16:24:09 +0800 Subject: [PATCH] =?UTF-8?q?refactor(erp):=20=E4=BF=AE=E6=94=B9=20ArgsProdu?= =?UTF-8?q?ctChangeStaff=20=E7=BB=93=E6=9E=84=E4=BD=93=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E5=90=8D=E5=B0=86=20CustomId=20=E5=AD=97=E6=AE=B5=E9=87=8D?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E4=B8=BA=20ProductId=EF=BC=8C=E4=BB=A5?= =?UTF-8?q?=E6=9B=B4=E5=A5=BD=E5=9C=B0=E5=8F=8D=E6=98=A0=E8=AF=A5=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E7=9A=84=E5=AE=9E=E9=99=85=E7=94=A8=E9=80=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/product.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp/product.go b/erp/product.go index 212a360..60f7fe8 100644 --- a/erp/product.go +++ b/erp/product.go @@ -282,7 +282,7 @@ func (p *product) Clone(ctx context.Context, args ArgsProductClone) (newProductI } type ArgsProductChangeStaff struct { - CustomId int64 + ProductId int64 StaffId int64 DepartmentId int64 }