18 lines
510 B
Go
18 lines
510 B
Go
// Code generated by godddx, DO AVOID EDIT.
|
|
package uniqueid
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.lnton.com/lnton/pkg/orm"
|
|
)
|
|
|
|
// UniqueIDStorer Instantiation interface
|
|
type UniqueIDStorer interface {
|
|
Find(context.Context, *[]*UniqueID, orm.Pager, ...orm.QueryOption) (int64, error)
|
|
Get(context.Context, *UniqueID, ...orm.QueryOption) error
|
|
Add(context.Context, *UniqueID) error
|
|
Edit(context.Context, *UniqueID, func(*UniqueID), ...orm.QueryOption) error
|
|
Del(context.Context, *UniqueID, ...orm.QueryOption) error
|
|
}
|