Merge branch 'master' of git.oa00.com:supply-chain/service

finance
杨赟 2 years ago
commit d98e7bb45b

@ -1,5 +1,26 @@
package service package service
import (
"context"
"git.oa00.com/supply-chain/service/client"
)
type Service struct { type Service struct {
Audit audit Audit audit
} }
type ReplyServiceAll struct {
ServiceId uint `json:"serviceId"`
ServiceName string `json:"serviceName"`
EndTime int64 `json:"endTime"`
}
// All @Title 全部服务
func (s *Service) All(ctx context.Context, customerId uint) (reply []ReplyServiceAll, err error) {
xClient, err := client.GetClient(s)
if err != nil {
return
}
err = xClient.Call(ctx, "All", customerId, &reply)
return
}

Loading…
Cancel
Save