作者 tangxuhui

数据结构调整

@@ -57,7 +57,7 @@ func (dividendsEstimateService *DividendsEstimateService) EstimateMoneyIncentive @@ -57,7 +57,7 @@ func (dividendsEstimateService *DividendsEstimateService) EstimateMoneyIncentive
57 for i := range result { 57 for i := range result {
58 item := map[string]interface{}{ 58 item := map[string]interface{}{
59 "userId": result[i].DividendsUser.UserId, 59 "userId": result[i].DividendsUser.UserId,
60 - "userName": result[i].DividendsUser.UserName, 60 + "userName": result[i].DividendsUser.UserInfo.UserName,
61 "dividendsAmount": result[i].DividendsAmount, 61 "dividendsAmount": result[i].DividendsAmount,
62 } 62 }
63 data = append(data, item) 63 data = append(data, item)
@@ -189,10 +189,14 @@ type ( @@ -189,10 +189,14 @@ type (
189 UserBaseId int64 `json:"userBaseId,string"` 189 UserBaseId int64 `json:"userBaseId,string"`
190 // 用户类型 190 // 用户类型
191 UserType int32 `json:"userType"` 191 UserType int32 `json:"userType"`
192 - // 用户姓名  
193 - UserName string `json:"userName"`  
194 - // 用户手机号  
195 - UserPhone string `json:"userPhone"` 192 + UserInfo struct {
  193 + UserAvatar string `json:"userAvatar"` // 用户头像
  194 + UserEmail string `json:"userEmail"` // 用户邮箱
  195 + UserName string `json:"userName"` // 共创人员姓名
  196 + UserPhone string `json:"userPhone"` // 用户手机号
  197 + UserAccount string `json:"userAccount"` // 用户账号,区别于手机号,冗余字段
  198 + UserCode string `json:"userCode"` // 用户编码
  199 + } `json:"userInfo,omitempty"`
196 } `json:"dividendsUser"` 200 } `json:"dividendsUser"`
197 // 分红阶段 201 // 分红阶段
198 DividendsStage int32 `json:"dividendsStage"` 202 DividendsStage int32 `json:"dividendsStage"`