123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620 |
- package sopstage
- import (
- "time"
- "wechat-api/ent/predicate"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- )
- func ID(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldID, id))
- }
- func IDEQ(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldID, id))
- }
- func IDNEQ(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldID, id))
- }
- func IDIn(ids ...uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldID, ids...))
- }
- func IDNotIn(ids ...uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldID, ids...))
- }
- func IDGT(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldID, id))
- }
- func IDGTE(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldID, id))
- }
- func IDLT(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldID, id))
- }
- func IDLTE(id uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldID, id))
- }
- func CreatedAt(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldCreatedAt, v))
- }
- func UpdatedAt(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldUpdatedAt, v))
- }
- func Status(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldStatus, v))
- }
- func DeletedAt(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldDeletedAt, v))
- }
- func TaskID(v uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldTaskID, v))
- }
- func Name(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldName, v))
- }
- func ConditionType(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldConditionType, v))
- }
- func ConditionOperator(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldConditionOperator, v))
- }
- func IndexSort(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldIndexSort, v))
- }
- func CreatedAtEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldCreatedAt, v))
- }
- func CreatedAtNEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldCreatedAt, v))
- }
- func CreatedAtIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldCreatedAt, vs...))
- }
- func CreatedAtNotIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldCreatedAt, vs...))
- }
- func CreatedAtGT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldCreatedAt, v))
- }
- func CreatedAtGTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldCreatedAt, v))
- }
- func CreatedAtLT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldCreatedAt, v))
- }
- func CreatedAtLTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldCreatedAt, v))
- }
- func UpdatedAtEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldUpdatedAt, v))
- }
- func UpdatedAtNEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldUpdatedAt, v))
- }
- func UpdatedAtIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldUpdatedAt, vs...))
- }
- func UpdatedAtNotIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldUpdatedAt, vs...))
- }
- func UpdatedAtGT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldUpdatedAt, v))
- }
- func UpdatedAtGTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldUpdatedAt, v))
- }
- func UpdatedAtLT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldUpdatedAt, v))
- }
- func UpdatedAtLTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldUpdatedAt, v))
- }
- func StatusEQ(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldStatus, v))
- }
- func StatusNEQ(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldStatus, v))
- }
- func StatusIn(vs ...uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldStatus, vs...))
- }
- func StatusNotIn(vs ...uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldStatus, vs...))
- }
- func StatusGT(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldStatus, v))
- }
- func StatusGTE(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldStatus, v))
- }
- func StatusLT(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldStatus, v))
- }
- func StatusLTE(v uint8) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldStatus, v))
- }
- func StatusIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldStatus))
- }
- func StatusNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldStatus))
- }
- func DeletedAtEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldDeletedAt, v))
- }
- func DeletedAtNEQ(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldDeletedAt, v))
- }
- func DeletedAtIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldDeletedAt, vs...))
- }
- func DeletedAtNotIn(vs ...time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldDeletedAt, vs...))
- }
- func DeletedAtGT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldDeletedAt, v))
- }
- func DeletedAtGTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldDeletedAt, v))
- }
- func DeletedAtLT(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldDeletedAt, v))
- }
- func DeletedAtLTE(v time.Time) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldDeletedAt, v))
- }
- func DeletedAtIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldDeletedAt))
- }
- func DeletedAtNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldDeletedAt))
- }
- func TaskIDEQ(v uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldTaskID, v))
- }
- func TaskIDNEQ(v uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldTaskID, v))
- }
- func TaskIDIn(vs ...uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldTaskID, vs...))
- }
- func TaskIDNotIn(vs ...uint64) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldTaskID, vs...))
- }
- func NameEQ(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldName, v))
- }
- func NameNEQ(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldName, v))
- }
- func NameIn(vs ...string) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldName, vs...))
- }
- func NameNotIn(vs ...string) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldName, vs...))
- }
- func NameGT(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldName, v))
- }
- func NameGTE(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldName, v))
- }
- func NameLT(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldName, v))
- }
- func NameLTE(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldName, v))
- }
- func NameContains(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldContains(FieldName, v))
- }
- func NameHasPrefix(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldHasPrefix(FieldName, v))
- }
- func NameHasSuffix(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldHasSuffix(FieldName, v))
- }
- func NameEqualFold(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldEqualFold(FieldName, v))
- }
- func NameContainsFold(v string) predicate.SopStage {
- return predicate.SopStage(sql.FieldContainsFold(FieldName, v))
- }
- func ConditionTypeEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldConditionType, v))
- }
- func ConditionTypeNEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldConditionType, v))
- }
- func ConditionTypeIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldConditionType, vs...))
- }
- func ConditionTypeNotIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldConditionType, vs...))
- }
- func ConditionTypeGT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldConditionType, v))
- }
- func ConditionTypeGTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldConditionType, v))
- }
- func ConditionTypeLT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldConditionType, v))
- }
- func ConditionTypeLTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldConditionType, v))
- }
- func ConditionOperatorEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldConditionOperator, v))
- }
- func ConditionOperatorNEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldConditionOperator, v))
- }
- func ConditionOperatorIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldConditionOperator, vs...))
- }
- func ConditionOperatorNotIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldConditionOperator, vs...))
- }
- func ConditionOperatorGT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldConditionOperator, v))
- }
- func ConditionOperatorGTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldConditionOperator, v))
- }
- func ConditionOperatorLT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldConditionOperator, v))
- }
- func ConditionOperatorLTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldConditionOperator, v))
- }
- func ActionMessageIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldActionMessage))
- }
- func ActionMessageNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldActionMessage))
- }
- func ActionLabelAddIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldActionLabelAdd))
- }
- func ActionLabelAddNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldActionLabelAdd))
- }
- func ActionLabelDelIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldActionLabelDel))
- }
- func ActionLabelDelNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldActionLabelDel))
- }
- func ActionForwardIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldActionForward))
- }
- func ActionForwardNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldActionForward))
- }
- func IndexSortEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldEQ(FieldIndexSort, v))
- }
- func IndexSortNEQ(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNEQ(FieldIndexSort, v))
- }
- func IndexSortIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldIn(FieldIndexSort, vs...))
- }
- func IndexSortNotIn(vs ...int) predicate.SopStage {
- return predicate.SopStage(sql.FieldNotIn(FieldIndexSort, vs...))
- }
- func IndexSortGT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGT(FieldIndexSort, v))
- }
- func IndexSortGTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldGTE(FieldIndexSort, v))
- }
- func IndexSortLT(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLT(FieldIndexSort, v))
- }
- func IndexSortLTE(v int) predicate.SopStage {
- return predicate.SopStage(sql.FieldLTE(FieldIndexSort, v))
- }
- func IndexSortIsNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldIsNull(FieldIndexSort))
- }
- func IndexSortNotNil() predicate.SopStage {
- return predicate.SopStage(sql.FieldNotNull(FieldIndexSort))
- }
- func HasSopTask() predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.Edge(sqlgraph.M2O, true, SopTaskTable, SopTaskColumn),
- )
- sqlgraph.HasNeighbors(s, step)
- })
- }
- func HasSopTaskWith(preds ...predicate.SopTask) predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := newSopTaskStep()
- sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
- for _, p := range preds {
- p(s)
- }
- })
- })
- }
- func HasStageNodes() predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.Edge(sqlgraph.O2M, false, StageNodesTable, StageNodesColumn),
- )
- sqlgraph.HasNeighbors(s, step)
- })
- }
- func HasStageNodesWith(preds ...predicate.SopNode) predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := newStageNodesStep()
- sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
- for _, p := range preds {
- p(s)
- }
- })
- })
- }
- func HasStageMessages() predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.Edge(sqlgraph.O2M, false, StageMessagesTable, StageMessagesColumn),
- )
- sqlgraph.HasNeighbors(s, step)
- })
- }
- func HasStageMessagesWith(preds ...predicate.MessageRecords) predicate.SopStage {
- return predicate.SopStage(func(s *sql.Selector) {
- step := newStageMessagesStep()
- sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
- for _, p := range preds {
- p(s)
- }
- })
- })
- }
- func And(predicates ...predicate.SopStage) predicate.SopStage {
- return predicate.SopStage(sql.AndPredicates(predicates...))
- }
- func Or(predicates ...predicate.SopStage) predicate.SopStage {
- return predicate.SopStage(sql.OrPredicates(predicates...))
- }
- func Not(p predicate.SopStage) predicate.SopStage {
- return predicate.SopStage(sql.NotPredicates(p))
- }
|