From be1ab67e7f972749b28c57b57c9e668474ed8976 Mon Sep 17 00:00:00 2001 From: sian Date: Wed, 3 Aug 2022 10:12:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=B4=E9=9C=B2service=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- customer/service.go | 6 ++++++ customer/service/audit.go | 7 +++++-- customer/service/audit/supply.go | 10 +++++----- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/customer/service.go b/customer/service.go index 1712f31..dee26e8 100644 --- a/customer/service.go +++ b/customer/service.go @@ -1,5 +1,7 @@ package customer +import "git.oa00.com/supply-chain/service/customer/service" + type serviceId uint const ( @@ -10,3 +12,7 @@ const ( UserServiceStatusAdopt = 2 // 审核通过 UserServiceStatusReject = 3 // 审核驳回 ) + +type Service struct { + Audit service.Audit +} diff --git a/customer/service/audit.go b/customer/service/audit.go index 27ee3c6..e24a879 100644 --- a/customer/service/audit.go +++ b/customer/service/audit.go @@ -3,11 +3,14 @@ package service import ( "context" "git.oa00.com/supply-chain/service/client" + "git.oa00.com/supply-chain/service/customer/service/audit" "git.oa00.com/supply-chain/service/lib/bean" ) -type audit struct { +type Audit struct { + Supply audit.Supply } + type AuditSearch struct { Status uint // 审核状态 1=未审核 2=通过 3=驳回 Name string // 用户名称 @@ -33,7 +36,7 @@ type ReplyAuditLists struct { } // Lists @Title 服务审核列表 -func (a *audit) Lists(ctx context.Context, args ArgsAuditLists) (reply ReplyAuditLists, err error) { +func (a *Audit) Lists(ctx context.Context, args ArgsAuditLists) (reply ReplyAuditLists, err error) { err = client.GetClient(a).Call(ctx, "Lists", args, &reply) return } diff --git a/customer/service/audit/supply.go b/customer/service/audit/supply.go index 64c7891..56c145e 100644 --- a/customer/service/audit/supply.go +++ b/customer/service/audit/supply.go @@ -5,7 +5,7 @@ import ( "git.oa00.com/supply-chain/service/client" ) -type supply struct { +type Supply struct { } type ArgsSupplyApply struct { @@ -17,7 +17,7 @@ type ArgsSupplyApply struct { } // Apply @Title 申请 -func (s *supply) Apply(ctx context.Context, args ArgsSupplyApply) error { +func (s *Supply) Apply(ctx context.Context, args ArgsSupplyApply) error { reply := 0 return client.GetClient(s).Call(ctx, "Apply", args, &reply) } @@ -28,7 +28,7 @@ type ArgsSupplyAdopt struct { } // Adopt @Title 审核通过 -func (s *supply) Adopt(ctx context.Context, args ArgsSupplyAdopt) error { +func (s *Supply) Adopt(ctx context.Context, args ArgsSupplyAdopt) error { reply := 0 return client.GetClient(s).Call(ctx, "Adopt", args, &reply) } @@ -40,7 +40,7 @@ type ArgsSupplyReject struct { } // Reject @Title 驳回 -func (s *supply) Reject(ctx context.Context, args ArgsSupplyReject) error { +func (s *Supply) Reject(ctx context.Context, args ArgsSupplyReject) error { reply := 0 return client.GetClient(s).Call(ctx, "Reject", args, &reply) } @@ -62,7 +62,7 @@ type ReplySupplyInfo struct { } // Info @Title 详情 -func (s *supply) Info(ctx context.Context, userServiceId uint) (reply ReplySupplyInfo, err error) { +func (s *Supply) Info(ctx context.Context, userServiceId uint) (reply ReplySupplyInfo, err error) { err = client.GetClient(s).Call(ctx, "Info", userServiceId, &reply) return }