commit
36901c58f2
@ -1,5 +1,32 @@
|
|||||||
package service
|
package service
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"git.oa00.com/supply-chain/service/client"
|
||||||
|
)
|
||||||
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
Audit audit
|
Audit audit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ArgsServiceLists struct {
|
||||||
|
CustomerId uint
|
||||||
|
Status uint
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReplyServiceLists struct {
|
||||||
|
ServiceId uint `json:"serviceId"`
|
||||||
|
ServiceName string `json:"serviceName"`
|
||||||
|
EndTime int64 `json:"endTime"`
|
||||||
|
AuditStatus uint `json:"auditStatus"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// All @Title 全部服务
|
||||||
|
func (s *Service) All(ctx context.Context, customerId uint) (reply []ReplyServiceLists, err error) {
|
||||||
|
xClient, err := client.GetClient(s)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = xClient.Call(ctx, "All", customerId, &reply)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue