(ctx context.Context, id uint64)
| 22 | type UserExampleDao interface { |
| 23 | Create(ctx context.Context, table *model.UserExample) error |
| 24 | DeleteByID(ctx context.Context, id uint64) error |
| 25 | UpdateByID(ctx context.Context, table *model.UserExample) error |
| 26 | GetByID(ctx context.Context, id uint64) (*model.UserExample, error) |
| 27 | GetByColumns(ctx context.Context, params *query.Params) ([]*model.UserExample, int64, error) |
no outgoing calls