|
|
|
@ -7,6 +7,7 @@ import (
|
|
|
|
|
|
|
|
|
|
type Service struct {
|
|
|
|
|
Audit audit
|
|
|
|
|
Service service
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ArgsServiceLists struct {
|
|
|
|
@ -21,8 +22,11 @@ type ReplyServiceLists struct {
|
|
|
|
|
AuditStatus uint `json:"auditStatus"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type service struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// All @Title 全部服务
|
|
|
|
|
func (s *Service) All(ctx context.Context, customerId uint) (reply []ReplyServiceLists, err error) {
|
|
|
|
|
func (s *service) All(ctx context.Context, customerId uint) (reply []ReplyServiceLists, err error) {
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return
|
|
|
|
|