diff --git a/erp/receipt.go b/erp/receipt.go index 09fffd3..2be91e6 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -27,6 +27,7 @@ type ReceiptSearch struct { ReceiptDateStart *time.Time // 创建开始时间 ReceiptDateEnd *time.Time // 创建结束时间 BanFlag int64 // 禁用标记 1=禁用 2=启用 + ClaimStatus int64 // 认领状态 1=待认领 2=部分认领 3=已认领 } type ReplyReceiptList struct { List []ReceiptItem `json:"list"` @@ -47,6 +48,7 @@ type ReceiptItem struct { BankName string `json:"bankName"` EntryAmount decimal.Decimal `json:"entryAmount"` ReceivableFxAmount decimal.Decimal `json:"receivableFxAmount"` + ClaimAmount decimal.Decimal `json:"claimAmount"` CreatedStaffId int64 `json:"createdStaffId"` BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` @@ -112,6 +114,7 @@ type ReplyReceiptInfo struct { DomesticFee decimal.Decimal `json:"domesticFee"` DomesticFeeType int64 `json:"domesticFeeType"` ReceivableFxAmount decimal.Decimal `json:"receivableFxAmount"` + ClaimAmount decimal.Decimal `json:"claimAmount"` CreatedStaffId int64 `json:"createdStaffId"` BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"`