|
|
@ -31,6 +31,7 @@ type UserItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Account string `json:"account"`
|
|
|
|
Account string `json:"account"`
|
|
|
|
|
|
|
|
RateId uint `json:"rateId"`
|
|
|
|
Liaison string `json:"liaison"`
|
|
|
|
Liaison string `json:"liaison"`
|
|
|
|
Phone string `json:"phone"`
|
|
|
|
Phone string `json:"phone"`
|
|
|
|
Amount decimal.Decimal `json:"amount"`
|
|
|
|
Amount decimal.Decimal `json:"amount"`
|
|
|
@ -154,7 +155,6 @@ func (u *user) ServiceInfo(ctx context.Context, args ArgsUserServiceInfo) (reply
|
|
|
|
type UserInfoItem struct {
|
|
|
|
type UserInfoItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
RateId uint `json:"rateId"`
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// FindByIds @Title 根据用户Ids查询用户信息
|
|
|
|
// FindByIds @Title 根据用户Ids查询用户信息
|
|
|
|