|
|
@@ -389,6 +389,16 @@ func (a Api) VipOtherPhoneEdit(ctx context.Context, r *pb.StandardRequest) (*pb.
|
|
|
return rst, nil
|
|
|
}
|
|
|
|
|
|
+// VipOtherPhoneStatusEdit 商家会员其他手机号状态修改
|
|
|
+func (a Api) VipOtherPhoneStatusEdit(ctx context.Context, r *pb.StandardRequest) (*pb.StandardReply, error) {
|
|
|
+ // 获取token,并验证签名函数
|
|
|
+ token, q, sign := a.webToGoVerify(ctx, r)
|
|
|
+
|
|
|
+ rs := service.User{}.VipOtherPhoneStatusEdit(token, q.ShopID, q.JsonStr, sign)
|
|
|
+ rst := a.toWebFunc(rs)
|
|
|
+ return rst, nil
|
|
|
+}
|
|
|
+
|
|
|
// TempVipUserQuery 商家临时会员查询
|
|
|
func (a Api) TempVipUserQuery(ctx context.Context, r *pb.StandardRequest) (*pb.StandardReply, error) {
|
|
|
// 获取token,并验证签名函数
|