// Code generated by ent, DO NOT EDIT. package gearsetinfo import ( "epic-ent/internal/ent/predicate" "time" "entgo.io/ent/dialect/sql" ) // ID filters vertices based on their ID field. func ID(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldID, id)) } // IDEQ applies the EQ predicate on the ID field. func IDEQ(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldID, id)) } // IDNEQ applies the NEQ predicate on the ID field. func IDNEQ(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldID, id)) } // IDIn applies the In predicate on the ID field. func IDIn(ids ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldID, ids...)) } // IDNotIn applies the NotIn predicate on the ID field. func IDNotIn(ids ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldID, ids...)) } // IDGT applies the GT predicate on the ID field. func IDGT(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldID, id)) } // IDGTE applies the GTE predicate on the ID field. func IDGTE(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldID, id)) } // IDLT applies the LT predicate on the ID field. func IDLT(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldID, id)) } // IDLTE applies the LTE predicate on the ID field. func IDLTE(id int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldID, id)) } // Level applies equality check predicate on the "level" field. It's identical to LevelEQ. func Level(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldLevel, v)) } // GearID applies equality check predicate on the "gear_id" field. It's identical to GearIDEQ. func GearID(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearID, v)) } // Enhance applies equality check predicate on the "enhance" field. It's identical to EnhanceEQ. func Enhance(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldEnhance, v)) } // GearType applies equality check predicate on the "gear_type" field. It's identical to GearTypeEQ. func GearType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearType, v)) } // GearSetType applies equality check predicate on the "gear_set_type" field. It's identical to GearSetTypeEQ. func GearSetType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearSetType, v)) } // MainStatType applies equality check predicate on the "main_stat_type" field. It's identical to MainStatTypeEQ. func MainStatType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldMainStatType, v)) } // MainStatValue applies equality check predicate on the "main_stat_value" field. It's identical to MainStatValueEQ. func MainStatValue(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldMainStatValue, v)) } // SubStatOneType applies equality check predicate on the "sub_stat_one_type" field. It's identical to SubStatOneTypeEQ. func SubStatOneType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatOneType, v)) } // SubStatOneValue applies equality check predicate on the "sub_stat_one_value" field. It's identical to SubStatOneValueEQ. func SubStatOneValue(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatOneValue, v)) } // SubStatTwoType applies equality check predicate on the "sub_stat_two_type" field. It's identical to SubStatTwoTypeEQ. func SubStatTwoType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatTwoType, v)) } // SubStatTwoValue applies equality check predicate on the "sub_stat_two_value" field. It's identical to SubStatTwoValueEQ. func SubStatTwoValue(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatTwoValue, v)) } // SubStatThreeType applies equality check predicate on the "sub_stat_three_type" field. It's identical to SubStatThreeTypeEQ. func SubStatThreeType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatThreeType, v)) } // SubStatThreeValue applies equality check predicate on the "sub_stat_three_value" field. It's identical to SubStatThreeValueEQ. func SubStatThreeValue(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatThreeValue, v)) } // SubStatFourType applies equality check predicate on the "sub_stat_four_type" field. It's identical to SubStatFourTypeEQ. func SubStatFourType(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatFourType, v)) } // SubStatFourValue applies equality check predicate on the "sub_stat_four_value" field. It's identical to SubStatFourValueEQ. func SubStatFourValue(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatFourValue, v)) } // AccountCode applies equality check predicate on the "account_code" field. It's identical to AccountCodeEQ. func AccountCode(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldAccountCode, v)) } // Creator applies equality check predicate on the "creator" field. It's identical to CreatorEQ. func Creator(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldCreator, v)) } // CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ. func CreateTime(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldCreateTime, v)) } // Updater applies equality check predicate on the "updater" field. It's identical to UpdaterEQ. func Updater(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldUpdater, v)) } // UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ. func UpdateTime(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldUpdateTime, v)) } // Deleted applies equality check predicate on the "deleted" field. It's identical to DeletedEQ. func Deleted(v bool) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldDeleted, v)) } // TenantID applies equality check predicate on the "tenant_id" field. It's identical to TenantIDEQ. func TenantID(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldTenantID, v)) } // LevelEQ applies the EQ predicate on the "level" field. func LevelEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldLevel, v)) } // LevelNEQ applies the NEQ predicate on the "level" field. func LevelNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldLevel, v)) } // LevelIn applies the In predicate on the "level" field. func LevelIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldLevel, vs...)) } // LevelNotIn applies the NotIn predicate on the "level" field. func LevelNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldLevel, vs...)) } // LevelGT applies the GT predicate on the "level" field. func LevelGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldLevel, v)) } // LevelGTE applies the GTE predicate on the "level" field. func LevelGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldLevel, v)) } // LevelLT applies the LT predicate on the "level" field. func LevelLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldLevel, v)) } // LevelLTE applies the LTE predicate on the "level" field. func LevelLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldLevel, v)) } // GearIDEQ applies the EQ predicate on the "gear_id" field. func GearIDEQ(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearID, v)) } // GearIDNEQ applies the NEQ predicate on the "gear_id" field. func GearIDNEQ(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldGearID, v)) } // GearIDIn applies the In predicate on the "gear_id" field. func GearIDIn(vs ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldGearID, vs...)) } // GearIDNotIn applies the NotIn predicate on the "gear_id" field. func GearIDNotIn(vs ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldGearID, vs...)) } // GearIDGT applies the GT predicate on the "gear_id" field. func GearIDGT(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldGearID, v)) } // GearIDGTE applies the GTE predicate on the "gear_id" field. func GearIDGTE(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldGearID, v)) } // GearIDLT applies the LT predicate on the "gear_id" field. func GearIDLT(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldGearID, v)) } // GearIDLTE applies the LTE predicate on the "gear_id" field. func GearIDLTE(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldGearID, v)) } // EnhanceEQ applies the EQ predicate on the "enhance" field. func EnhanceEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldEnhance, v)) } // EnhanceNEQ applies the NEQ predicate on the "enhance" field. func EnhanceNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldEnhance, v)) } // EnhanceIn applies the In predicate on the "enhance" field. func EnhanceIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldEnhance, vs...)) } // EnhanceNotIn applies the NotIn predicate on the "enhance" field. func EnhanceNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldEnhance, vs...)) } // EnhanceGT applies the GT predicate on the "enhance" field. func EnhanceGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldEnhance, v)) } // EnhanceGTE applies the GTE predicate on the "enhance" field. func EnhanceGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldEnhance, v)) } // EnhanceLT applies the LT predicate on the "enhance" field. func EnhanceLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldEnhance, v)) } // EnhanceLTE applies the LTE predicate on the "enhance" field. func EnhanceLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldEnhance, v)) } // GearTypeEQ applies the EQ predicate on the "gear_type" field. func GearTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearType, v)) } // GearTypeNEQ applies the NEQ predicate on the "gear_type" field. func GearTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldGearType, v)) } // GearTypeIn applies the In predicate on the "gear_type" field. func GearTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldGearType, vs...)) } // GearTypeNotIn applies the NotIn predicate on the "gear_type" field. func GearTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldGearType, vs...)) } // GearTypeGT applies the GT predicate on the "gear_type" field. func GearTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldGearType, v)) } // GearTypeGTE applies the GTE predicate on the "gear_type" field. func GearTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldGearType, v)) } // GearTypeLT applies the LT predicate on the "gear_type" field. func GearTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldGearType, v)) } // GearTypeLTE applies the LTE predicate on the "gear_type" field. func GearTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldGearType, v)) } // GearTypeContains applies the Contains predicate on the "gear_type" field. func GearTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldGearType, v)) } // GearTypeHasPrefix applies the HasPrefix predicate on the "gear_type" field. func GearTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldGearType, v)) } // GearTypeHasSuffix applies the HasSuffix predicate on the "gear_type" field. func GearTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldGearType, v)) } // GearTypeEqualFold applies the EqualFold predicate on the "gear_type" field. func GearTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldGearType, v)) } // GearTypeContainsFold applies the ContainsFold predicate on the "gear_type" field. func GearTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldGearType, v)) } // GearSetTypeEQ applies the EQ predicate on the "gear_set_type" field. func GearSetTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldGearSetType, v)) } // GearSetTypeNEQ applies the NEQ predicate on the "gear_set_type" field. func GearSetTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldGearSetType, v)) } // GearSetTypeIn applies the In predicate on the "gear_set_type" field. func GearSetTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldGearSetType, vs...)) } // GearSetTypeNotIn applies the NotIn predicate on the "gear_set_type" field. func GearSetTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldGearSetType, vs...)) } // GearSetTypeGT applies the GT predicate on the "gear_set_type" field. func GearSetTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldGearSetType, v)) } // GearSetTypeGTE applies the GTE predicate on the "gear_set_type" field. func GearSetTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldGearSetType, v)) } // GearSetTypeLT applies the LT predicate on the "gear_set_type" field. func GearSetTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldGearSetType, v)) } // GearSetTypeLTE applies the LTE predicate on the "gear_set_type" field. func GearSetTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldGearSetType, v)) } // GearSetTypeContains applies the Contains predicate on the "gear_set_type" field. func GearSetTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldGearSetType, v)) } // GearSetTypeHasPrefix applies the HasPrefix predicate on the "gear_set_type" field. func GearSetTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldGearSetType, v)) } // GearSetTypeHasSuffix applies the HasSuffix predicate on the "gear_set_type" field. func GearSetTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldGearSetType, v)) } // GearSetTypeEqualFold applies the EqualFold predicate on the "gear_set_type" field. func GearSetTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldGearSetType, v)) } // GearSetTypeContainsFold applies the ContainsFold predicate on the "gear_set_type" field. func GearSetTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldGearSetType, v)) } // MainStatTypeEQ applies the EQ predicate on the "main_stat_type" field. func MainStatTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldMainStatType, v)) } // MainStatTypeNEQ applies the NEQ predicate on the "main_stat_type" field. func MainStatTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldMainStatType, v)) } // MainStatTypeIn applies the In predicate on the "main_stat_type" field. func MainStatTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldMainStatType, vs...)) } // MainStatTypeNotIn applies the NotIn predicate on the "main_stat_type" field. func MainStatTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldMainStatType, vs...)) } // MainStatTypeGT applies the GT predicate on the "main_stat_type" field. func MainStatTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldMainStatType, v)) } // MainStatTypeGTE applies the GTE predicate on the "main_stat_type" field. func MainStatTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldMainStatType, v)) } // MainStatTypeLT applies the LT predicate on the "main_stat_type" field. func MainStatTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldMainStatType, v)) } // MainStatTypeLTE applies the LTE predicate on the "main_stat_type" field. func MainStatTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldMainStatType, v)) } // MainStatTypeContains applies the Contains predicate on the "main_stat_type" field. func MainStatTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldMainStatType, v)) } // MainStatTypeHasPrefix applies the HasPrefix predicate on the "main_stat_type" field. func MainStatTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldMainStatType, v)) } // MainStatTypeHasSuffix applies the HasSuffix predicate on the "main_stat_type" field. func MainStatTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldMainStatType, v)) } // MainStatTypeEqualFold applies the EqualFold predicate on the "main_stat_type" field. func MainStatTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldMainStatType, v)) } // MainStatTypeContainsFold applies the ContainsFold predicate on the "main_stat_type" field. func MainStatTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldMainStatType, v)) } // MainStatValueEQ applies the EQ predicate on the "main_stat_value" field. func MainStatValueEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldMainStatValue, v)) } // MainStatValueNEQ applies the NEQ predicate on the "main_stat_value" field. func MainStatValueNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldMainStatValue, v)) } // MainStatValueIn applies the In predicate on the "main_stat_value" field. func MainStatValueIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldMainStatValue, vs...)) } // MainStatValueNotIn applies the NotIn predicate on the "main_stat_value" field. func MainStatValueNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldMainStatValue, vs...)) } // MainStatValueGT applies the GT predicate on the "main_stat_value" field. func MainStatValueGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldMainStatValue, v)) } // MainStatValueGTE applies the GTE predicate on the "main_stat_value" field. func MainStatValueGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldMainStatValue, v)) } // MainStatValueLT applies the LT predicate on the "main_stat_value" field. func MainStatValueLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldMainStatValue, v)) } // MainStatValueLTE applies the LTE predicate on the "main_stat_value" field. func MainStatValueLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldMainStatValue, v)) } // SubStatOneTypeEQ applies the EQ predicate on the "sub_stat_one_type" field. func SubStatOneTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatOneType, v)) } // SubStatOneTypeNEQ applies the NEQ predicate on the "sub_stat_one_type" field. func SubStatOneTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatOneType, v)) } // SubStatOneTypeIn applies the In predicate on the "sub_stat_one_type" field. func SubStatOneTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatOneType, vs...)) } // SubStatOneTypeNotIn applies the NotIn predicate on the "sub_stat_one_type" field. func SubStatOneTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatOneType, vs...)) } // SubStatOneTypeGT applies the GT predicate on the "sub_stat_one_type" field. func SubStatOneTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatOneType, v)) } // SubStatOneTypeGTE applies the GTE predicate on the "sub_stat_one_type" field. func SubStatOneTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatOneType, v)) } // SubStatOneTypeLT applies the LT predicate on the "sub_stat_one_type" field. func SubStatOneTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatOneType, v)) } // SubStatOneTypeLTE applies the LTE predicate on the "sub_stat_one_type" field. func SubStatOneTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatOneType, v)) } // SubStatOneTypeContains applies the Contains predicate on the "sub_stat_one_type" field. func SubStatOneTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldSubStatOneType, v)) } // SubStatOneTypeHasPrefix applies the HasPrefix predicate on the "sub_stat_one_type" field. func SubStatOneTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldSubStatOneType, v)) } // SubStatOneTypeHasSuffix applies the HasSuffix predicate on the "sub_stat_one_type" field. func SubStatOneTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldSubStatOneType, v)) } // SubStatOneTypeEqualFold applies the EqualFold predicate on the "sub_stat_one_type" field. func SubStatOneTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldSubStatOneType, v)) } // SubStatOneTypeContainsFold applies the ContainsFold predicate on the "sub_stat_one_type" field. func SubStatOneTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldSubStatOneType, v)) } // SubStatOneValueEQ applies the EQ predicate on the "sub_stat_one_value" field. func SubStatOneValueEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatOneValue, v)) } // SubStatOneValueNEQ applies the NEQ predicate on the "sub_stat_one_value" field. func SubStatOneValueNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatOneValue, v)) } // SubStatOneValueIn applies the In predicate on the "sub_stat_one_value" field. func SubStatOneValueIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatOneValue, vs...)) } // SubStatOneValueNotIn applies the NotIn predicate on the "sub_stat_one_value" field. func SubStatOneValueNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatOneValue, vs...)) } // SubStatOneValueGT applies the GT predicate on the "sub_stat_one_value" field. func SubStatOneValueGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatOneValue, v)) } // SubStatOneValueGTE applies the GTE predicate on the "sub_stat_one_value" field. func SubStatOneValueGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatOneValue, v)) } // SubStatOneValueLT applies the LT predicate on the "sub_stat_one_value" field. func SubStatOneValueLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatOneValue, v)) } // SubStatOneValueLTE applies the LTE predicate on the "sub_stat_one_value" field. func SubStatOneValueLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatOneValue, v)) } // SubStatTwoTypeEQ applies the EQ predicate on the "sub_stat_two_type" field. func SubStatTwoTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatTwoType, v)) } // SubStatTwoTypeNEQ applies the NEQ predicate on the "sub_stat_two_type" field. func SubStatTwoTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatTwoType, v)) } // SubStatTwoTypeIn applies the In predicate on the "sub_stat_two_type" field. func SubStatTwoTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatTwoType, vs...)) } // SubStatTwoTypeNotIn applies the NotIn predicate on the "sub_stat_two_type" field. func SubStatTwoTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatTwoType, vs...)) } // SubStatTwoTypeGT applies the GT predicate on the "sub_stat_two_type" field. func SubStatTwoTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatTwoType, v)) } // SubStatTwoTypeGTE applies the GTE predicate on the "sub_stat_two_type" field. func SubStatTwoTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatTwoType, v)) } // SubStatTwoTypeLT applies the LT predicate on the "sub_stat_two_type" field. func SubStatTwoTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatTwoType, v)) } // SubStatTwoTypeLTE applies the LTE predicate on the "sub_stat_two_type" field. func SubStatTwoTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatTwoType, v)) } // SubStatTwoTypeContains applies the Contains predicate on the "sub_stat_two_type" field. func SubStatTwoTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldSubStatTwoType, v)) } // SubStatTwoTypeHasPrefix applies the HasPrefix predicate on the "sub_stat_two_type" field. func SubStatTwoTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldSubStatTwoType, v)) } // SubStatTwoTypeHasSuffix applies the HasSuffix predicate on the "sub_stat_two_type" field. func SubStatTwoTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldSubStatTwoType, v)) } // SubStatTwoTypeEqualFold applies the EqualFold predicate on the "sub_stat_two_type" field. func SubStatTwoTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldSubStatTwoType, v)) } // SubStatTwoTypeContainsFold applies the ContainsFold predicate on the "sub_stat_two_type" field. func SubStatTwoTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldSubStatTwoType, v)) } // SubStatTwoValueEQ applies the EQ predicate on the "sub_stat_two_value" field. func SubStatTwoValueEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatTwoValue, v)) } // SubStatTwoValueNEQ applies the NEQ predicate on the "sub_stat_two_value" field. func SubStatTwoValueNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatTwoValue, v)) } // SubStatTwoValueIn applies the In predicate on the "sub_stat_two_value" field. func SubStatTwoValueIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatTwoValue, vs...)) } // SubStatTwoValueNotIn applies the NotIn predicate on the "sub_stat_two_value" field. func SubStatTwoValueNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatTwoValue, vs...)) } // SubStatTwoValueGT applies the GT predicate on the "sub_stat_two_value" field. func SubStatTwoValueGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatTwoValue, v)) } // SubStatTwoValueGTE applies the GTE predicate on the "sub_stat_two_value" field. func SubStatTwoValueGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatTwoValue, v)) } // SubStatTwoValueLT applies the LT predicate on the "sub_stat_two_value" field. func SubStatTwoValueLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatTwoValue, v)) } // SubStatTwoValueLTE applies the LTE predicate on the "sub_stat_two_value" field. func SubStatTwoValueLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatTwoValue, v)) } // SubStatThreeTypeEQ applies the EQ predicate on the "sub_stat_three_type" field. func SubStatThreeTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatThreeType, v)) } // SubStatThreeTypeNEQ applies the NEQ predicate on the "sub_stat_three_type" field. func SubStatThreeTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatThreeType, v)) } // SubStatThreeTypeIn applies the In predicate on the "sub_stat_three_type" field. func SubStatThreeTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatThreeType, vs...)) } // SubStatThreeTypeNotIn applies the NotIn predicate on the "sub_stat_three_type" field. func SubStatThreeTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatThreeType, vs...)) } // SubStatThreeTypeGT applies the GT predicate on the "sub_stat_three_type" field. func SubStatThreeTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatThreeType, v)) } // SubStatThreeTypeGTE applies the GTE predicate on the "sub_stat_three_type" field. func SubStatThreeTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatThreeType, v)) } // SubStatThreeTypeLT applies the LT predicate on the "sub_stat_three_type" field. func SubStatThreeTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatThreeType, v)) } // SubStatThreeTypeLTE applies the LTE predicate on the "sub_stat_three_type" field. func SubStatThreeTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatThreeType, v)) } // SubStatThreeTypeContains applies the Contains predicate on the "sub_stat_three_type" field. func SubStatThreeTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldSubStatThreeType, v)) } // SubStatThreeTypeHasPrefix applies the HasPrefix predicate on the "sub_stat_three_type" field. func SubStatThreeTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldSubStatThreeType, v)) } // SubStatThreeTypeHasSuffix applies the HasSuffix predicate on the "sub_stat_three_type" field. func SubStatThreeTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldSubStatThreeType, v)) } // SubStatThreeTypeEqualFold applies the EqualFold predicate on the "sub_stat_three_type" field. func SubStatThreeTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldSubStatThreeType, v)) } // SubStatThreeTypeContainsFold applies the ContainsFold predicate on the "sub_stat_three_type" field. func SubStatThreeTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldSubStatThreeType, v)) } // SubStatThreeValueEQ applies the EQ predicate on the "sub_stat_three_value" field. func SubStatThreeValueEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatThreeValue, v)) } // SubStatThreeValueNEQ applies the NEQ predicate on the "sub_stat_three_value" field. func SubStatThreeValueNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatThreeValue, v)) } // SubStatThreeValueIn applies the In predicate on the "sub_stat_three_value" field. func SubStatThreeValueIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatThreeValue, vs...)) } // SubStatThreeValueNotIn applies the NotIn predicate on the "sub_stat_three_value" field. func SubStatThreeValueNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatThreeValue, vs...)) } // SubStatThreeValueGT applies the GT predicate on the "sub_stat_three_value" field. func SubStatThreeValueGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatThreeValue, v)) } // SubStatThreeValueGTE applies the GTE predicate on the "sub_stat_three_value" field. func SubStatThreeValueGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatThreeValue, v)) } // SubStatThreeValueLT applies the LT predicate on the "sub_stat_three_value" field. func SubStatThreeValueLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatThreeValue, v)) } // SubStatThreeValueLTE applies the LTE predicate on the "sub_stat_three_value" field. func SubStatThreeValueLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatThreeValue, v)) } // SubStatFourTypeEQ applies the EQ predicate on the "sub_stat_four_type" field. func SubStatFourTypeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatFourType, v)) } // SubStatFourTypeNEQ applies the NEQ predicate on the "sub_stat_four_type" field. func SubStatFourTypeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatFourType, v)) } // SubStatFourTypeIn applies the In predicate on the "sub_stat_four_type" field. func SubStatFourTypeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatFourType, vs...)) } // SubStatFourTypeNotIn applies the NotIn predicate on the "sub_stat_four_type" field. func SubStatFourTypeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatFourType, vs...)) } // SubStatFourTypeGT applies the GT predicate on the "sub_stat_four_type" field. func SubStatFourTypeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatFourType, v)) } // SubStatFourTypeGTE applies the GTE predicate on the "sub_stat_four_type" field. func SubStatFourTypeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatFourType, v)) } // SubStatFourTypeLT applies the LT predicate on the "sub_stat_four_type" field. func SubStatFourTypeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatFourType, v)) } // SubStatFourTypeLTE applies the LTE predicate on the "sub_stat_four_type" field. func SubStatFourTypeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatFourType, v)) } // SubStatFourTypeContains applies the Contains predicate on the "sub_stat_four_type" field. func SubStatFourTypeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldSubStatFourType, v)) } // SubStatFourTypeHasPrefix applies the HasPrefix predicate on the "sub_stat_four_type" field. func SubStatFourTypeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldSubStatFourType, v)) } // SubStatFourTypeHasSuffix applies the HasSuffix predicate on the "sub_stat_four_type" field. func SubStatFourTypeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldSubStatFourType, v)) } // SubStatFourTypeEqualFold applies the EqualFold predicate on the "sub_stat_four_type" field. func SubStatFourTypeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldSubStatFourType, v)) } // SubStatFourTypeContainsFold applies the ContainsFold predicate on the "sub_stat_four_type" field. func SubStatFourTypeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldSubStatFourType, v)) } // SubStatFourValueEQ applies the EQ predicate on the "sub_stat_four_value" field. func SubStatFourValueEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldSubStatFourValue, v)) } // SubStatFourValueNEQ applies the NEQ predicate on the "sub_stat_four_value" field. func SubStatFourValueNEQ(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldSubStatFourValue, v)) } // SubStatFourValueIn applies the In predicate on the "sub_stat_four_value" field. func SubStatFourValueIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldSubStatFourValue, vs...)) } // SubStatFourValueNotIn applies the NotIn predicate on the "sub_stat_four_value" field. func SubStatFourValueNotIn(vs ...int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldSubStatFourValue, vs...)) } // SubStatFourValueGT applies the GT predicate on the "sub_stat_four_value" field. func SubStatFourValueGT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldSubStatFourValue, v)) } // SubStatFourValueGTE applies the GTE predicate on the "sub_stat_four_value" field. func SubStatFourValueGTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldSubStatFourValue, v)) } // SubStatFourValueLT applies the LT predicate on the "sub_stat_four_value" field. func SubStatFourValueLT(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldSubStatFourValue, v)) } // SubStatFourValueLTE applies the LTE predicate on the "sub_stat_four_value" field. func SubStatFourValueLTE(v int) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldSubStatFourValue, v)) } // AccountCodeEQ applies the EQ predicate on the "account_code" field. func AccountCodeEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldAccountCode, v)) } // AccountCodeNEQ applies the NEQ predicate on the "account_code" field. func AccountCodeNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldAccountCode, v)) } // AccountCodeIn applies the In predicate on the "account_code" field. func AccountCodeIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldAccountCode, vs...)) } // AccountCodeNotIn applies the NotIn predicate on the "account_code" field. func AccountCodeNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldAccountCode, vs...)) } // AccountCodeGT applies the GT predicate on the "account_code" field. func AccountCodeGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldAccountCode, v)) } // AccountCodeGTE applies the GTE predicate on the "account_code" field. func AccountCodeGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldAccountCode, v)) } // AccountCodeLT applies the LT predicate on the "account_code" field. func AccountCodeLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldAccountCode, v)) } // AccountCodeLTE applies the LTE predicate on the "account_code" field. func AccountCodeLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldAccountCode, v)) } // AccountCodeContains applies the Contains predicate on the "account_code" field. func AccountCodeContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldAccountCode, v)) } // AccountCodeHasPrefix applies the HasPrefix predicate on the "account_code" field. func AccountCodeHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldAccountCode, v)) } // AccountCodeHasSuffix applies the HasSuffix predicate on the "account_code" field. func AccountCodeHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldAccountCode, v)) } // AccountCodeEqualFold applies the EqualFold predicate on the "account_code" field. func AccountCodeEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldAccountCode, v)) } // AccountCodeContainsFold applies the ContainsFold predicate on the "account_code" field. func AccountCodeContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldAccountCode, v)) } // CreatorEQ applies the EQ predicate on the "creator" field. func CreatorEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldCreator, v)) } // CreatorNEQ applies the NEQ predicate on the "creator" field. func CreatorNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldCreator, v)) } // CreatorIn applies the In predicate on the "creator" field. func CreatorIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldCreator, vs...)) } // CreatorNotIn applies the NotIn predicate on the "creator" field. func CreatorNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldCreator, vs...)) } // CreatorGT applies the GT predicate on the "creator" field. func CreatorGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldCreator, v)) } // CreatorGTE applies the GTE predicate on the "creator" field. func CreatorGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldCreator, v)) } // CreatorLT applies the LT predicate on the "creator" field. func CreatorLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldCreator, v)) } // CreatorLTE applies the LTE predicate on the "creator" field. func CreatorLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldCreator, v)) } // CreatorContains applies the Contains predicate on the "creator" field. func CreatorContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldCreator, v)) } // CreatorHasPrefix applies the HasPrefix predicate on the "creator" field. func CreatorHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldCreator, v)) } // CreatorHasSuffix applies the HasSuffix predicate on the "creator" field. func CreatorHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldCreator, v)) } // CreatorEqualFold applies the EqualFold predicate on the "creator" field. func CreatorEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldCreator, v)) } // CreatorContainsFold applies the ContainsFold predicate on the "creator" field. func CreatorContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldCreator, v)) } // CreateTimeEQ applies the EQ predicate on the "create_time" field. func CreateTimeEQ(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldCreateTime, v)) } // CreateTimeNEQ applies the NEQ predicate on the "create_time" field. func CreateTimeNEQ(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldCreateTime, v)) } // CreateTimeIn applies the In predicate on the "create_time" field. func CreateTimeIn(vs ...time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldCreateTime, vs...)) } // CreateTimeNotIn applies the NotIn predicate on the "create_time" field. func CreateTimeNotIn(vs ...time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldCreateTime, vs...)) } // CreateTimeGT applies the GT predicate on the "create_time" field. func CreateTimeGT(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldCreateTime, v)) } // CreateTimeGTE applies the GTE predicate on the "create_time" field. func CreateTimeGTE(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldCreateTime, v)) } // CreateTimeLT applies the LT predicate on the "create_time" field. func CreateTimeLT(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldCreateTime, v)) } // CreateTimeLTE applies the LTE predicate on the "create_time" field. func CreateTimeLTE(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldCreateTime, v)) } // CreateTimeIsNil applies the IsNil predicate on the "create_time" field. func CreateTimeIsNil() predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIsNull(FieldCreateTime)) } // CreateTimeNotNil applies the NotNil predicate on the "create_time" field. func CreateTimeNotNil() predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotNull(FieldCreateTime)) } // UpdaterEQ applies the EQ predicate on the "updater" field. func UpdaterEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldUpdater, v)) } // UpdaterNEQ applies the NEQ predicate on the "updater" field. func UpdaterNEQ(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldUpdater, v)) } // UpdaterIn applies the In predicate on the "updater" field. func UpdaterIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldUpdater, vs...)) } // UpdaterNotIn applies the NotIn predicate on the "updater" field. func UpdaterNotIn(vs ...string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldUpdater, vs...)) } // UpdaterGT applies the GT predicate on the "updater" field. func UpdaterGT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldUpdater, v)) } // UpdaterGTE applies the GTE predicate on the "updater" field. func UpdaterGTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldUpdater, v)) } // UpdaterLT applies the LT predicate on the "updater" field. func UpdaterLT(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldUpdater, v)) } // UpdaterLTE applies the LTE predicate on the "updater" field. func UpdaterLTE(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldUpdater, v)) } // UpdaterContains applies the Contains predicate on the "updater" field. func UpdaterContains(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContains(FieldUpdater, v)) } // UpdaterHasPrefix applies the HasPrefix predicate on the "updater" field. func UpdaterHasPrefix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasPrefix(FieldUpdater, v)) } // UpdaterHasSuffix applies the HasSuffix predicate on the "updater" field. func UpdaterHasSuffix(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldHasSuffix(FieldUpdater, v)) } // UpdaterEqualFold applies the EqualFold predicate on the "updater" field. func UpdaterEqualFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEqualFold(FieldUpdater, v)) } // UpdaterContainsFold applies the ContainsFold predicate on the "updater" field. func UpdaterContainsFold(v string) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldContainsFold(FieldUpdater, v)) } // UpdateTimeEQ applies the EQ predicate on the "update_time" field. func UpdateTimeEQ(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldUpdateTime, v)) } // UpdateTimeNEQ applies the NEQ predicate on the "update_time" field. func UpdateTimeNEQ(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldUpdateTime, v)) } // UpdateTimeIn applies the In predicate on the "update_time" field. func UpdateTimeIn(vs ...time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldUpdateTime, vs...)) } // UpdateTimeNotIn applies the NotIn predicate on the "update_time" field. func UpdateTimeNotIn(vs ...time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldUpdateTime, vs...)) } // UpdateTimeGT applies the GT predicate on the "update_time" field. func UpdateTimeGT(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldUpdateTime, v)) } // UpdateTimeGTE applies the GTE predicate on the "update_time" field. func UpdateTimeGTE(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldUpdateTime, v)) } // UpdateTimeLT applies the LT predicate on the "update_time" field. func UpdateTimeLT(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldUpdateTime, v)) } // UpdateTimeLTE applies the LTE predicate on the "update_time" field. func UpdateTimeLTE(v time.Time) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldUpdateTime, v)) } // UpdateTimeIsNil applies the IsNil predicate on the "update_time" field. func UpdateTimeIsNil() predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIsNull(FieldUpdateTime)) } // UpdateTimeNotNil applies the NotNil predicate on the "update_time" field. func UpdateTimeNotNil() predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotNull(FieldUpdateTime)) } // DeletedEQ applies the EQ predicate on the "deleted" field. func DeletedEQ(v bool) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldDeleted, v)) } // DeletedNEQ applies the NEQ predicate on the "deleted" field. func DeletedNEQ(v bool) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldDeleted, v)) } // TenantIDEQ applies the EQ predicate on the "tenant_id" field. func TenantIDEQ(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldEQ(FieldTenantID, v)) } // TenantIDNEQ applies the NEQ predicate on the "tenant_id" field. func TenantIDNEQ(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNEQ(FieldTenantID, v)) } // TenantIDIn applies the In predicate on the "tenant_id" field. func TenantIDIn(vs ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldIn(FieldTenantID, vs...)) } // TenantIDNotIn applies the NotIn predicate on the "tenant_id" field. func TenantIDNotIn(vs ...int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldNotIn(FieldTenantID, vs...)) } // TenantIDGT applies the GT predicate on the "tenant_id" field. func TenantIDGT(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGT(FieldTenantID, v)) } // TenantIDGTE applies the GTE predicate on the "tenant_id" field. func TenantIDGTE(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldGTE(FieldTenantID, v)) } // TenantIDLT applies the LT predicate on the "tenant_id" field. func TenantIDLT(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLT(FieldTenantID, v)) } // TenantIDLTE applies the LTE predicate on the "tenant_id" field. func TenantIDLTE(v int64) predicate.GearSetInfo { return predicate.GearSetInfo(sql.FieldLTE(FieldTenantID, v)) } // And groups predicates with the AND operator between them. func And(predicates ...predicate.GearSetInfo) predicate.GearSetInfo { return predicate.GearSetInfo(sql.AndPredicates(predicates...)) } // Or groups predicates with the OR operator between them. func Or(predicates ...predicate.GearSetInfo) predicate.GearSetInfo { return predicate.GearSetInfo(sql.OrPredicates(predicates...)) } // Not applies the not operator on the given predicate. func Not(p predicate.GearSetInfo) predicate.GearSetInfo { return predicate.GearSetInfo(sql.NotPredicates(p)) }