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

@@ -35,6 +35,8 @@ type ReceiptSearch struct {
EntryAmountEnd *decimal.Decimal // 入账金额结束 EntryAmountEnd *decimal.Decimal // 入账金额结束
Ik3cloudStatus int64 // 金蝶同步状态 1=待同步 2=同步成功 3=同步失败 Ik3cloudStatus int64 // 金蝶同步状态 1=待同步 2=同步成功 3=同步失败
IsConfirm int64 // 确认状态 1=已确认 2=待确认 IsConfirm int64 // 确认状态 1=已确认 2=待确认
BankNameEq *string // 结汇银行完全匹配
BankAccountEq *string // 结汇银行账号完全匹配
} }
type ReplyReceiptList struct { type ReplyReceiptList struct {
List []ReceiptItem `json:"list"` List []ReceiptItem `json:"list"`

View File

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