431 lines
15 KiB
Go
431 lines
15 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package processstep
|
|
|
|
import (
|
|
"bj_power_mes/ent/predicate"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// ProcessCode applies equality check predicate on the "processCode" field. It's identical to ProcessCodeEQ.
|
|
func ProcessCode(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldProcessCode, v))
|
|
}
|
|
|
|
// Seq applies equality check predicate on the "seq" field. It's identical to SeqEQ.
|
|
func Seq(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldSeq, v))
|
|
}
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
func Name(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// CollectType applies equality check predicate on the "collectType" field. It's identical to CollectTypeEQ.
|
|
func CollectType(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldCollectType, v))
|
|
}
|
|
|
|
// IsTorque applies equality check predicate on the "isTorque" field. It's identical to IsTorqueEQ.
|
|
func IsTorque(v bool) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldIsTorque, v))
|
|
}
|
|
|
|
// Remark applies equality check predicate on the "remark" field. It's identical to RemarkEQ.
|
|
func Remark(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "createdAt" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// ProcessCodeEQ applies the EQ predicate on the "processCode" field.
|
|
func ProcessCodeEQ(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldProcessCode, v))
|
|
}
|
|
|
|
// ProcessCodeNEQ applies the NEQ predicate on the "processCode" field.
|
|
func ProcessCodeNEQ(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldProcessCode, v))
|
|
}
|
|
|
|
// ProcessCodeIn applies the In predicate on the "processCode" field.
|
|
func ProcessCodeIn(vs ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldProcessCode, vs...))
|
|
}
|
|
|
|
// ProcessCodeNotIn applies the NotIn predicate on the "processCode" field.
|
|
func ProcessCodeNotIn(vs ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldProcessCode, vs...))
|
|
}
|
|
|
|
// ProcessCodeGT applies the GT predicate on the "processCode" field.
|
|
func ProcessCodeGT(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldProcessCode, v))
|
|
}
|
|
|
|
// ProcessCodeGTE applies the GTE predicate on the "processCode" field.
|
|
func ProcessCodeGTE(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldProcessCode, v))
|
|
}
|
|
|
|
// ProcessCodeLT applies the LT predicate on the "processCode" field.
|
|
func ProcessCodeLT(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldProcessCode, v))
|
|
}
|
|
|
|
// ProcessCodeLTE applies the LTE predicate on the "processCode" field.
|
|
func ProcessCodeLTE(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldProcessCode, v))
|
|
}
|
|
|
|
// SeqEQ applies the EQ predicate on the "seq" field.
|
|
func SeqEQ(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldSeq, v))
|
|
}
|
|
|
|
// SeqNEQ applies the NEQ predicate on the "seq" field.
|
|
func SeqNEQ(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldSeq, v))
|
|
}
|
|
|
|
// SeqIn applies the In predicate on the "seq" field.
|
|
func SeqIn(vs ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldSeq, vs...))
|
|
}
|
|
|
|
// SeqNotIn applies the NotIn predicate on the "seq" field.
|
|
func SeqNotIn(vs ...int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldSeq, vs...))
|
|
}
|
|
|
|
// SeqGT applies the GT predicate on the "seq" field.
|
|
func SeqGT(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldSeq, v))
|
|
}
|
|
|
|
// SeqGTE applies the GTE predicate on the "seq" field.
|
|
func SeqGTE(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldSeq, v))
|
|
}
|
|
|
|
// SeqLT applies the LT predicate on the "seq" field.
|
|
func SeqLT(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldSeq, v))
|
|
}
|
|
|
|
// SeqLTE applies the LTE predicate on the "seq" field.
|
|
func SeqLTE(v int) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldSeq, v))
|
|
}
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
func NameEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
func NameNEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldName, v))
|
|
}
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
func NameIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
func NameNotIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
func NameGT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldName, v))
|
|
}
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
func NameGTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldName, v))
|
|
}
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
func NameLT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldName, v))
|
|
}
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
func NameLTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldName, v))
|
|
}
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
func NameContains(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContains(FieldName, v))
|
|
}
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
func NameHasPrefix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasPrefix(FieldName, v))
|
|
}
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
func NameHasSuffix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasSuffix(FieldName, v))
|
|
}
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
func NameEqualFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEqualFold(FieldName, v))
|
|
}
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
func NameContainsFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContainsFold(FieldName, v))
|
|
}
|
|
|
|
// CollectTypeEQ applies the EQ predicate on the "collectType" field.
|
|
func CollectTypeEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeNEQ applies the NEQ predicate on the "collectType" field.
|
|
func CollectTypeNEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeIn applies the In predicate on the "collectType" field.
|
|
func CollectTypeIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldCollectType, vs...))
|
|
}
|
|
|
|
// CollectTypeNotIn applies the NotIn predicate on the "collectType" field.
|
|
func CollectTypeNotIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldCollectType, vs...))
|
|
}
|
|
|
|
// CollectTypeGT applies the GT predicate on the "collectType" field.
|
|
func CollectTypeGT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeGTE applies the GTE predicate on the "collectType" field.
|
|
func CollectTypeGTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeLT applies the LT predicate on the "collectType" field.
|
|
func CollectTypeLT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeLTE applies the LTE predicate on the "collectType" field.
|
|
func CollectTypeLTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeContains applies the Contains predicate on the "collectType" field.
|
|
func CollectTypeContains(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContains(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeHasPrefix applies the HasPrefix predicate on the "collectType" field.
|
|
func CollectTypeHasPrefix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasPrefix(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeHasSuffix applies the HasSuffix predicate on the "collectType" field.
|
|
func CollectTypeHasSuffix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasSuffix(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeEqualFold applies the EqualFold predicate on the "collectType" field.
|
|
func CollectTypeEqualFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEqualFold(FieldCollectType, v))
|
|
}
|
|
|
|
// CollectTypeContainsFold applies the ContainsFold predicate on the "collectType" field.
|
|
func CollectTypeContainsFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContainsFold(FieldCollectType, v))
|
|
}
|
|
|
|
// IsTorqueEQ applies the EQ predicate on the "isTorque" field.
|
|
func IsTorqueEQ(v bool) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldIsTorque, v))
|
|
}
|
|
|
|
// IsTorqueNEQ applies the NEQ predicate on the "isTorque" field.
|
|
func IsTorqueNEQ(v bool) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldIsTorque, v))
|
|
}
|
|
|
|
// RemarkEQ applies the EQ predicate on the "remark" field.
|
|
func RemarkEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkNEQ applies the NEQ predicate on the "remark" field.
|
|
func RemarkNEQ(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkIn applies the In predicate on the "remark" field.
|
|
func RemarkIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkNotIn applies the NotIn predicate on the "remark" field.
|
|
func RemarkNotIn(vs ...string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkGT applies the GT predicate on the "remark" field.
|
|
func RemarkGT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkGTE applies the GTE predicate on the "remark" field.
|
|
func RemarkGTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLT applies the LT predicate on the "remark" field.
|
|
func RemarkLT(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLTE applies the LTE predicate on the "remark" field.
|
|
func RemarkLTE(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContains applies the Contains predicate on the "remark" field.
|
|
func RemarkContains(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContains(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasPrefix applies the HasPrefix predicate on the "remark" field.
|
|
func RemarkHasPrefix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasPrefix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasSuffix applies the HasSuffix predicate on the "remark" field.
|
|
func RemarkHasSuffix(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldHasSuffix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkEqualFold applies the EqualFold predicate on the "remark" field.
|
|
func RemarkEqualFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEqualFold(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContainsFold applies the ContainsFold predicate on the "remark" field.
|
|
func RemarkContainsFold(v string) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldContainsFold(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "createdAt" field.
|
|
func CreatedAtEQ(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "createdAt" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "createdAt" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "createdAt" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "createdAt" field.
|
|
func CreatedAtGT(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "createdAt" field.
|
|
func CreatedAtGTE(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "createdAt" field.
|
|
func CreatedAtLT(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "createdAt" field.
|
|
func CreatedAtLTE(v time.Time) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.ProcessStep) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.ProcessStep) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.ProcessStep) predicate.ProcessStep {
|
|
return predicate.ProcessStep(sql.NotPredicates(p))
|
|
}
|