修改信息接口

finance
杨赟 2 years ago
parent 4e85c17188
commit a4de968985

@ -0,0 +1,7 @@
package customer
type serviceId uint
const (
ServiceSupply serviceId = 1 // 供应链
)

@ -102,8 +102,18 @@ func (u *user) Disable(ctx context.Context, userId uint) error {
return client.GetClient(u).Call(ctx, "Disable", userId, &reply)
}
// SecretByAppKey @Title 通过appKey获取Secret
func (u *user) SecretByAppKey(ctx context.Context, appKey string) (appSecret string, err error) {
err = client.GetClient(u).Call(ctx, "Disable", appKey, &appSecret)
type ArgsUserServiceInfo struct {
ServiceId uint // 服务id
AppKey string // 渠道appKey
}
type ReplyUserServiceInfo struct {
CustomerId uint `json:"customerId"`
AppSecret string `json:"appSecret"`
ExpirationAt int64 `json:"expirationAt"`
}
// ServiceInfo @Title 获取服务信息
func (u *user) ServiceInfo(ctx context.Context, args ArgsUserServiceInfo) (reply ReplyUserServiceInfo, err error) {
err = client.GetClient(u).Call(ctx, "ServiceInfo", args, &reply)
return
}

Loading…
Cancel
Save