diff --git a/erp/receipt.go b/erp/receipt.go index 72eafff..ea2e2d8 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -35,6 +35,8 @@ type ReceiptSearch struct { EntryAmountEnd *decimal.Decimal // 入账金额结束 Ik3cloudStatus int64 // 金蝶同步状态 1=待同步 2=同步成功 3=同步失败 IsConfirm int64 // 确认状态 1=已确认 2=待确认 + BankNameEq *string // 结汇银行完全匹配 + BankAccountEq *string // 结汇银行账号完全匹配 } type ReplyReceiptList struct { List []ReceiptItem `json:"list"` diff --git a/erp/request.go b/erp/request.go index 30a9f8c..7fe7d9f 100644 --- a/erp/request.go +++ b/erp/request.go @@ -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"`