mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-01 22:33:30 +08:00
89 lines
2.2 KiB
Go
89 lines
2.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/chaitin/MonkeyCode/backend/db/aitask"
|
|
"github.com/chaitin/MonkeyCode/backend/db/predicate"
|
|
)
|
|
|
|
// AITaskDelete is the builder for deleting a AITask entity.
|
|
type AITaskDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *AITaskMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the AITaskDelete builder.
|
|
func (atd *AITaskDelete) Where(ps ...predicate.AITask) *AITaskDelete {
|
|
atd.mutation.Where(ps...)
|
|
return atd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (atd *AITaskDelete) Exec(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, atd.sqlExec, atd.mutation, atd.hooks)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (atd *AITaskDelete) ExecX(ctx context.Context) int {
|
|
n, err := atd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (atd *AITaskDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := sqlgraph.NewDeleteSpec(aitask.Table, sqlgraph.NewFieldSpec(aitask.FieldID, field.TypeUUID))
|
|
if ps := atd.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
affected, err := sqlgraph.DeleteNodes(ctx, atd.driver, _spec)
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
atd.mutation.done = true
|
|
return affected, err
|
|
}
|
|
|
|
// AITaskDeleteOne is the builder for deleting a single AITask entity.
|
|
type AITaskDeleteOne struct {
|
|
atd *AITaskDelete
|
|
}
|
|
|
|
// Where appends a list predicates to the AITaskDelete builder.
|
|
func (atdo *AITaskDeleteOne) Where(ps ...predicate.AITask) *AITaskDeleteOne {
|
|
atdo.atd.mutation.Where(ps...)
|
|
return atdo
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (atdo *AITaskDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := atdo.atd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{aitask.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (atdo *AITaskDeleteOne) ExecX(ctx context.Context) {
|
|
if err := atdo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|