MCPcopy Index your code
hub / github.com/go-dev-frame/sponge / DeleteByID

Method DeleteByID

internal/dao/userExample.go:24–24  ·  view source on GitHub ↗
(ctx context.Context, id uint64)

Source from the content-addressed store, hash-verified

22type 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)

Callers 5

TestUserDao_DeleteFunction · 0.65
DeleteByIDMethod · 0.65
DeleteByIDMethod · 0.65

Implementers 1

userExampleDaointernal/dao/userExample.go

Calls

no outgoing calls

Tested by 3

TestUserDao_DeleteFunction · 0.52