From adfe22c78b6f8f2881ee049dfcba15dfbcbd5625 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 3 Jun 2026 17:23:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E6=8D=AE=E8=AE=A4=E9=A2=86=E9=83=A8=E9=97=A8ID=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在收据认领结构体中新增DepartmentId字段 - 为收据认领功能增加部门关联支持 --- erp/receipt/claim.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/receipt/claim.go b/erp/receipt/claim.go index 0cd37fd..18423aa 100644 --- a/erp/receipt/claim.go +++ b/erp/receipt/claim.go @@ -31,6 +31,7 @@ type ClaimItem struct { CustomName string `json:"customName"` IsConfirm int64 `json:"isConfirm"` CreatedStaffId int64 `json:"createdStaffId"` + DepartmentId int64 `json:"departmentId"` CreatedAt *time.Time `json:"createdAt"` UpdatedAt *time.Time `json:"updatedAt"` }