Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
07f35e0a06 | |||
4107bbc040 |
@ -161,15 +161,15 @@ type AppResultQueryResult struct {
|
||||
CaseNo string `json:"case_no,omitempty"` // 核銷案號
|
||||
Records int `json:"records,omitempty"` // 服務記錄筆數
|
||||
Cases int `json:"cases,omitempty"` // 個案數
|
||||
Amount int `json:"amount,omitempty"` // 申請核銷金額
|
||||
Amount float64 `json:"amount,omitempty"` // 申請核銷金額
|
||||
AuditMan string `json:"audit_man,omitempty"` // 承辦人員
|
||||
AuditReason string `json:"audit_reason,omitempty"` // 承辦審核意見
|
||||
DocVer string `json:"doc_ver,omitempty"` // 總表版次
|
||||
VerDate string `json:"ver_dt,omitempty"` // 版次時間
|
||||
ApproveCasesNum int `json:"approve_cases_num,omitempty"` // 核定個案數
|
||||
ApproveRecordCount int `json:"approve_record_count,omitempty"` // 核定服務記錄數
|
||||
ApproveFee int `json:"approve_fee,omitempty"` // 核定金額
|
||||
ASvcFee int `json:"a_svc_fee,omitempty"` // 政策鼓勵金額
|
||||
ApproveFee float64 `json:"approve_fee,omitempty"` // 核定金額
|
||||
ASvcFee float64 `json:"a_svc_fee,omitempty"` // 政策鼓勵金額
|
||||
TempPaymentStatus string `json:"temp_payment_status,omitempty"` // 暫付申請狀態
|
||||
TempPaymentFee int `json:"temp_payment_fee,omitempty"` // 分案暫付金額
|
||||
TempPaymentDocUrl string `json:"temp_payment_doc_url,omitempty"` // 暫付總表下載路徑
|
||||
@ -181,9 +181,9 @@ type AppResultQueryResult struct {
|
||||
CaseErrListUrl string `json:"case_err_list_url,omitempty"` // 申請記錄不通過清冊路徑
|
||||
CaseErrListExcelUrl string `json:"case_err_list_excel_url,omitempty"` // 申請記錄不通過 EXCEL 清冊路徑
|
||||
TransNos []string `json:"trans_nos,omitempty"` // 分案已處理之單號申請單單號
|
||||
IncInAcc int `json:"inc_in_acc,omitempty"` // 核增金額
|
||||
IncInAcc float64 `json:"inc_in_acc,omitempty"` // 核增金額
|
||||
IncInReason string `json:"inc_in_reason,omitempty"` // 核增原因
|
||||
DecInAcc int `json:"dec_in_acc,omitempty"` // 核減金額
|
||||
DecInAcc float64 `json:"dec_in_acc,omitempty"` // 核減金額
|
||||
DecInReason string `json:"dec_in_reason,omitempty"` //核減原因
|
||||
ApproveRecords []ApproveRecord `json:"approve_records,omitempty"` // 審核通過服務記錄
|
||||
ErrorRecords []ExceptionRecord `json:"err_records,omitempty"` // 錯誤服務記錄
|
||||
@ -219,8 +219,8 @@ type ApproveRecord struct {
|
||||
SourceSystem string `json:"source_system"` // 來源系統別
|
||||
ObjID string `json:"objid"` // 識別碼
|
||||
TransNo string `json:"trans_no"` // 交易序號
|
||||
Price int `json:"price"` // 單價
|
||||
Copayment int `json:"copayment"` // 自付額
|
||||
Price float64 `json:"price"` // 單價
|
||||
Copayment float64 `json:"copayment"` // 自付額
|
||||
}
|
||||
|
||||
// ASvcRecord 是 A 碼加成資料區
|
||||
@ -228,7 +228,7 @@ type ASvcRecord struct {
|
||||
RefSourceSystem string `json:"ref_source_system"` // 審核通過服務記錄來源系統別
|
||||
RefObjID string `json:"ref_objid"` // 審核通過服務記錄識別碼
|
||||
AGovItemCode string `json:"a_gov_item_cd"` // A 碼
|
||||
Price int `json:"price"` // 單價
|
||||
Price float64 `json:"price"` // 單價
|
||||
}
|
||||
|
||||
// AppCancelUpload 是 AppCancel 的傳送資料
|
||||
|
Loading…
x
Reference in New Issue
Block a user