Skip to content

Commit

Permalink
fix: use point type
Browse files Browse the repository at this point in the history
  • Loading branch information
x931890193 committed Sep 30, 2022
1 parent d0552a6 commit 183c9ef
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bill_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ type AccountLogItem struct {

type BillAccountLogQueryResp struct {
Content struct {
Code Code `json:"code"`
Msg string `json:"msg"`
SubCode string `json:"sub_code"`
SubMsg string `json:"sub_msg"`
PageNo string `json:"page_no"`
PageSize string `json:"page_size"`
TotalSize string `json:"total_size"`
DetailList []AccountLogItem `json:"detail_list"`
Code Code `json:"code"`
Msg string `json:"msg"`
SubCode string `json:"sub_code"`
SubMsg string `json:"sub_msg"`
PageNo string `json:"page_no"`
PageSize string `json:"page_size"`
TotalSize string `json:"total_size"`
DetailList []*AccountLogItem `json:"detail_list"`
} `json:"alipay_data_bill_accountlog_query_response"`
Sign string `json:"sign"`
}
Expand Down

0 comments on commit 183c9ef

Please sign in to comment.