From 91c207af87f256098fe95dfda78f8f39ce9d4261 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 13 Mar 2026 14:04:26 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E7=BB=93?= =?UTF-8?q?=E6=B1=87=E5=B8=81=E7=A7=8D=E7=AD=9B=E9=80=89=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在ReceiptQuery结构体中新增CurrencyEq字段用于币种筛选 - 为结汇列表查询增加币种完全匹配条件支持 --- erp/receipt.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/receipt.go b/erp/receipt.go index 8fc0714..9ba31d2 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -40,6 +40,7 @@ type ReceiptSearch struct { BankNameEq *string // 结汇银行完全匹配 BankAccountEq *string // 结汇银行账号完全匹配 PermissionStaffIds []int64 // 权限员工id + CurrencyEq *string // 币种 } type ReplyReceiptList struct { List []ReceiptItem `json:"list"`