作者 tangxuhui

数据结构调整

@@ -25,10 +25,10 @@ type CreditAccountItem struct { @@ -25,10 +25,10 @@ type CreditAccountItem struct {
25 OrgID int `json:"orgId,string"` 25 OrgID int `json:"orgId,string"`
26 OrgName string `json:"orgName"` 26 OrgName string `json:"orgName"`
27 } `json:"org"` // 数据所属组织机构 27 } `json:"org"` // 数据所属组织机构
28 - Company domain.CompanyData `json:"company11"` // TODO:暂时不需要公司 28 + Company domain.CompanyData `json:"-"` // TODO:暂时不需要公司
29 CreatedAt int64 `json:"createdAt"` // 创建时间 29 CreatedAt int64 `json:"createdAt"` // 创建时间
30 UpdatedAt int64 `json:"updatedAt"` // 更新时间 30 UpdatedAt int64 `json:"updatedAt"` // 更新时间
31 - AccountDetail struct { 31 + AccountDetail []struct {
32 DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"` 32 DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
33 DividendsType int `json:"dividendsType"` 33 DividendsType int `json:"dividendsType"`
34 DividendsAmount float64 `json:"dividendsAmount"` 34 DividendsAmount float64 `json:"dividendsAmount"`
@@ -41,7 +41,7 @@ type CreditAccount struct { @@ -41,7 +41,7 @@ type CreditAccount struct {
41 Company domain.CompanyData `json:"company1"` // 公司 41 Company domain.CompanyData `json:"company1"` // 公司
42 CreatedAt time.Time `json:"createdAt"` // 创建时间 42 CreatedAt time.Time `json:"createdAt"` // 创建时间
43 UpdatedAt time.Time `json:"updatedAt"` // 更新时间 43 UpdatedAt time.Time `json:"updatedAt"` // 更新时间
44 - AccountDetail struct { 44 + AccountDetail []struct {
45 DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"` 45 DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
46 DividendsType int `json:"dividendsType"` 46 DividendsType int `json:"dividendsType"`
47 DividendsAmount float64 `json:"dividendsAmount"` 47 DividendsAmount float64 `json:"dividendsAmount"`