Compare commits
4 Commits
v0.1.7
...
feature/da
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a34fcacd2 | ||
| 07f35e0a06 | |||
| 4107bbc040 | |||
| d5260d784e |
@@ -73,6 +73,23 @@ type CaseSvcRecord struct {
|
||||
AA10Status string `json:"aa10_status,omitempty"` // AA10申報狀態
|
||||
MissedVisit string `json:"missed_visit,omitempty"` // 訪視/服務未遇
|
||||
SvcEndDt string `json:"svc_end_dt,omitempty"` // 服務結束日期
|
||||
ApplyCovid19 string `json:"apply_covid19,omitempty"` // 是否為陪同施打COVID-19疫苗
|
||||
SvcPoint string `json:"svc_point,omitempty"` // 服務重點
|
||||
SvcPointOther string `json:"svc_point_other,omitempty"` // 服務重點-其他
|
||||
SvcTrace string `json:"svc_trace,omitempty"` // 追蹤服務適應與介入情形
|
||||
SvcGoal string `json:"svc_goal,omitempty"` // 各項服務目標及整體計畫目標達成情形
|
||||
SvcSuitable string `json:"svc_suitable,omitempty"` // 服務適切性
|
||||
SvccGoalType string `json:"svcc_goal_type,omitempty"` // 專業服務復能目標達成情形
|
||||
SvccGoal string `json:"svcc_goal,omitempty"` // 專業服務復能目標
|
||||
SvccContentTarget string `json:"svcc_content_target,omitempty"` // 專業服務指導對象
|
||||
SvccContent string `json:"svcc_content,omitempty"` // 專業服務服務內容
|
||||
SvccSuggest string `json:"svcc_suggest,omitempty"` // 專業服務指導建議摘要
|
||||
Addrlat1 float64 `json:"addrlat1,omitempty"` // 出發地-緯度
|
||||
Addrlng1 float64 `json:"addrlng1,omitempty"` // 出發地-經度
|
||||
Addrlat2 float64 `json:"addrlat2,omitempty"` // 目的地-緯度
|
||||
Addrlng2 float64 `json:"addrlng2,omitempty"` // 目的地-經度
|
||||
Milage float64 `json:"milage,omitempty"` // 里程
|
||||
Bd03Type string `json:"bd03_type,omitempty"` // 社區式服務交通接送(BD03)服務使用類型
|
||||
}
|
||||
|
||||
// FeeApplyResult 是 FeeApply 的 Response.result
|
||||
@@ -131,7 +148,7 @@ type CaseNoInfo struct {
|
||||
// CityInfo 是縣市案號資訊
|
||||
type CityInfo struct {
|
||||
CityCode string `json:"city_cd"` // 縣市代碼
|
||||
CaseInfos []CaseInfo `json:"case_info"` // 案件資訊
|
||||
CaseInfos []CaseInfo `json:"case_infos"` // 案件資訊
|
||||
}
|
||||
|
||||
type CaseInfo struct {
|
||||
@@ -161,15 +178,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 +198,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 +236,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 +245,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 的傳送資料
|
||||
|
||||
Reference in New Issue
Block a user