finclip-app-manager/domain/repository/link_audit.go

9 lines
207 B
Go
Raw Permalink Normal View History

2023-10-31 14:07:26 +08:00
package repository
import "context"
type ILinkAuditRepo interface {
Count(ctx context.Context, appID string, groupId string, bindingID string, stLinkAudit string) (int, error)
NotFound(err error) bool
}