From 728f912754daaad285d15b95cc8b72ce6553e7dd Mon Sep 17 00:00:00 2001 From: kanade Date: Thu, 17 Sep 2026 17:43:35 +0800 Subject: [PATCH] =?UTF-8?q?feat(expense):=20=E6=B7=BB=E5=8A=A0=E9=93=B6?= =?UTF-8?q?=E8=A1=8C=E5=91=98=E5=B7=A5ID=E5=AD=97=E6=AE=B5=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在Expense结构体中新增bankStaffId字段 - 该字段为可选的int64指针类型 - 用于关联银行操作的相关员工信息 --- erp/expense.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/expense.go b/erp/expense.go index d6a5484..7bf6ae3 100644 --- a/erp/expense.go +++ b/erp/expense.go @@ -134,6 +134,7 @@ type ReplyExpenseInfo struct { Remarks string `json:"remarks"` BankAccount string `json:"bankAccount"` BankName string `json:"bankName"` + BankStaffId *int64 `json:"bankStaffId"` PayAt *time.Time `json:"payAt"` TravelStaffIds []int64 `json:"travelStaffIds"` TravelStartAt *time.Time `json:"travelStartAt"`