diff --git a/customer/user.go b/customer/user.go index c0a1bf5..e42c7b6 100644 --- a/customer/user.go +++ b/customer/user.go @@ -31,6 +31,7 @@ type UserItem struct { Id uint `json:"id"` Name string `json:"name"` Account string `json:"account"` + RateId uint `json:"rateId"` Liaison string `json:"liaison"` Phone string `json:"phone"` Amount decimal.Decimal `json:"amount"` @@ -152,9 +153,8 @@ func (u *user) ServiceInfo(ctx context.Context, args ArgsUserServiceInfo) (reply } type UserInfoItem struct { - Id uint `json:"id"` - Name string `json:"name"` - RateId uint `json:"rateId"` + Id uint `json:"id"` + Name string `json:"name"` } // FindByIds @Title 根据用户Ids查询用户信息