|
|
@@ -60,7 +60,7 @@ func (s Shop) ManageableShopList(token string, r *pb.ShopListRequest) *pb.ShopLi
|
|
|
}
|
|
|
|
|
|
type ManageableSimpleList struct {
|
|
|
- Id int64
|
|
|
+ Id string
|
|
|
UserCode string
|
|
|
Name string
|
|
|
Email string
|
|
|
@@ -81,7 +81,7 @@ func (s Shop) ManageableSimpleQuery(token string, shopId int64) *pb.ManageableSi
|
|
|
if len(rst.List) > 0 {
|
|
|
for _, v := range rst.List {
|
|
|
l := &ManageableSimpleList{}
|
|
|
- l.Id = v.Id
|
|
|
+ l.Id = strconv.FormatInt(v.Id, 10)
|
|
|
l.UserCode = v.UserCode
|
|
|
l.Name = v.Name
|
|
|
l.Email = v.Email
|