diff --git a/erp/expense.go b/erp/expense.go index ac3fbee..4aaa3c6 100644 --- a/erp/expense.go +++ b/erp/expense.go @@ -42,6 +42,7 @@ type ExpenseItem struct { WorkflowReason string `json:"workflowReason"` ExpenseStaffId int64 `json:"expenseStaffId"` CreatedStaffId int64 `json:"createdStaffId"` + BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` Ik3cloudErrMsg string `json:"ik3CloudErrMsg"` Ik3cloudUpdatedAt *time.Time `json:"ik3CloudUpdatedAt"` @@ -96,6 +97,7 @@ type ReplyExpenseInfo struct { WorkflowReason string `json:"workflowReason"` ExpenseStaffId int64 `json:"expenseStaffId"` CreatedStaffId int64 `json:"createdStaffId"` + BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` Ik3cloudErrMsg string `json:"ik3CloudErrMsg"` Ik3cloudUpdatedAt *time.Time `json:"ik3CloudUpdatedAt"` diff --git a/erp/receipt.go b/erp/receipt.go index 98b8d77..9da98c5 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -44,6 +44,7 @@ type ReceiptItem struct { EntryAmount decimal.Decimal `json:"entryAmount"` ReceivableFxAmount decimal.Decimal `json:"receivableFxAmount"` CreatedStaffId int64 `json:"createdStaffId"` + BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` Ik3cloudErrMsg string `json:"ik3CloudErrMsg"` Ik3cloudUpdatedAt *time.Time `json:"ik3CloudUpdatedAt"` @@ -106,6 +107,7 @@ type ReplyReceiptInfo struct { DomesticFeeType int64 `json:"domesticFeeType"` ReceivableFxAmount decimal.Decimal `json:"receivableFxAmount"` CreatedStaffId int64 `json:"createdStaffId"` + BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` Ik3cloudErrMsg string `json:"ik3CloudErrMsg"` Ik3cloudUpdatedAt *time.Time `json:"ik3CloudUpdatedAt"` diff --git a/erp/request.go b/erp/request.go index 516e0b2..699c5c4 100644 --- a/erp/request.go +++ b/erp/request.go @@ -41,6 +41,7 @@ type RequestItem struct { CurrencyRate decimal.Decimal `json:"currencyRate"` Remarks string `json:"remarks"` Amount decimal.Decimal `json:"amount"` + BanFlag int64 `json:"banFlag"` WorkflowId int64 `json:"workflowId"` WorkflowStatus int64 `json:"workflowStatus"` WorkflowReason string `json:"workflowReason"` @@ -106,6 +107,7 @@ type ReplyRequestInfo struct { WorkflowStatus int64 `json:"workflowStatus"` WorkflowReason string `json:"workflowReason"` CreatedStaffId int64 `json:"createdStaffId"` + BanFlag int64 `json:"banFlag"` Ik3cloudStatus int64 `json:"ik3CloudStatus"` Ik3cloudErrMsg string `json:"ik3CloudErrMsg"` Ik3cloudUpdatedAt *time.Time `json:"ik3CloudUpdatedAt"`