feat(erp): 添加结汇银行信息完全匹配查询字段

- 在Receipt结构体中添加BankNameEq和BankAccountEq字段
- 在Request结构体中添加BankNameEq和BankAccountEq字段
- 支持结汇银行名称和账号的完全匹配查询功能
This commit is contained in:
2026-02-06 13:16:03 +08:00
parent 6ed889105a
commit 08e3765bc5
2 changed files with 4 additions and 0 deletions

View File

@@ -37,6 +37,8 @@ type RequestSearch struct {
CreatedStaffIds []int64 // 创建人
Currency string // 币种
Ik3cloudStatus int64 // ik3cloud状态
BankNameEq *string // 结汇银行完全匹配
BankAccountEq *string // 结汇银行账号完全匹配
}
type ReplyRequestList struct {
List []RequestItem `json:"list"`