mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package team
|
|
|
|
import (
|
|
"context"
|
|
"github.com/APIParkLab/APIPark/module/system"
|
|
"reflect"
|
|
|
|
team_dto "github.com/APIParkLab/APIPark/module/team/dto"
|
|
"github.com/eolinker/go-common/autowire"
|
|
)
|
|
|
|
type ITeamModule interface {
|
|
// GetTeam 获取团队信息
|
|
GetTeam(ctx context.Context, id string) (*team_dto.Team, error)
|
|
// Search 搜索团队
|
|
Search(ctx context.Context, keyword string) ([]*team_dto.Item, error)
|
|
|
|
// Create 创建团队
|
|
Create(ctx context.Context, input *team_dto.CreateTeam) (*team_dto.Team, error)
|
|
// Edit 编辑团队
|
|
Edit(ctx context.Context, id string, input *team_dto.EditTeam) (*team_dto.Team, error)
|
|
// Delete 删除团队
|
|
Delete(ctx context.Context, id string) error
|
|
|
|
//ExportAll(ctx context.Context) ([]*team_dto.ExportTeam, error)
|
|
}
|
|
|
|
type ITeamExportModule interface {
|
|
system.IExportModule[team_dto.ExportTeam]
|
|
}
|
|
|
|
func init() {
|
|
teamModule := new(imlTeamModule)
|
|
autowire.Auto[ITeamModule](func() reflect.Value {
|
|
return reflect.ValueOf(teamModule)
|
|
})
|
|
autowire.Auto[ITeamExportModule](func() reflect.Value {
|
|
return reflect.ValueOf(teamModule)
|
|
})
|
|
}
|