// Code generated by ent, DO NOT EDIT. package bomitem 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.BomItem { return predicate.BomItem(sql.FieldEQ(FieldID, id)) } // IDEQ applies the EQ predicate on the ID field. func IDEQ(id int) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldID, id)) } // IDNEQ applies the NEQ predicate on the ID field. func IDNEQ(id int) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldID, id)) } // IDIn applies the In predicate on the ID field. func IDIn(ids ...int) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldID, ids...)) } // IDNotIn applies the NotIn predicate on the ID field. func IDNotIn(ids ...int) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldID, ids...)) } // IDGT applies the GT predicate on the ID field. func IDGT(id int) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldID, id)) } // IDGTE applies the GTE predicate on the ID field. func IDGTE(id int) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldID, id)) } // IDLT applies the LT predicate on the ID field. func IDLT(id int) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldID, id)) } // IDLTE applies the LTE predicate on the ID field. func IDLTE(id int) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldID, id)) } // ProductCode applies equality check predicate on the "productCode" field. It's identical to ProductCodeEQ. func ProductCode(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldProductCode, v)) } // MaterialCode applies equality check predicate on the "materialCode" field. It's identical to MaterialCodeEQ. func MaterialCode(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldMaterialCode, v)) } // MaterialName applies equality check predicate on the "materialName" field. It's identical to MaterialNameEQ. func MaterialName(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldMaterialName, v)) } // Spec applies equality check predicate on the "spec" field. It's identical to SpecEQ. func Spec(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldSpec, v)) } // Unit applies equality check predicate on the "unit" field. It's identical to UnitEQ. func Unit(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldUnit, v)) } // ManageMode applies equality check predicate on the "manageMode" field. It's identical to ManageModeEQ. func ManageMode(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldManageMode, v)) } // UnitQty applies equality check predicate on the "unitQty" field. It's identical to UnitQtyEQ. func UnitQty(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldUnitQty, v)) } // LossRate applies equality check predicate on the "lossRate" field. It's identical to LossRateEQ. func LossRate(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldLossRate, v)) } // RequiredQty applies equality check predicate on the "requiredQty" field. It's identical to RequiredQtyEQ. func RequiredQty(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldRequiredQty, v)) } // CreatedAt applies equality check predicate on the "createdAt" field. It's identical to CreatedAtEQ. func CreatedAt(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldCreatedAt, v)) } // ProductCodeEQ applies the EQ predicate on the "productCode" field. func ProductCodeEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldProductCode, v)) } // ProductCodeNEQ applies the NEQ predicate on the "productCode" field. func ProductCodeNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldProductCode, v)) } // ProductCodeIn applies the In predicate on the "productCode" field. func ProductCodeIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldProductCode, vs...)) } // ProductCodeNotIn applies the NotIn predicate on the "productCode" field. func ProductCodeNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldProductCode, vs...)) } // ProductCodeGT applies the GT predicate on the "productCode" field. func ProductCodeGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldProductCode, v)) } // ProductCodeGTE applies the GTE predicate on the "productCode" field. func ProductCodeGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldProductCode, v)) } // ProductCodeLT applies the LT predicate on the "productCode" field. func ProductCodeLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldProductCode, v)) } // ProductCodeLTE applies the LTE predicate on the "productCode" field. func ProductCodeLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldProductCode, v)) } // ProductCodeContains applies the Contains predicate on the "productCode" field. func ProductCodeContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldProductCode, v)) } // ProductCodeHasPrefix applies the HasPrefix predicate on the "productCode" field. func ProductCodeHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldProductCode, v)) } // ProductCodeHasSuffix applies the HasSuffix predicate on the "productCode" field. func ProductCodeHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldProductCode, v)) } // ProductCodeEqualFold applies the EqualFold predicate on the "productCode" field. func ProductCodeEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldProductCode, v)) } // ProductCodeContainsFold applies the ContainsFold predicate on the "productCode" field. func ProductCodeContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldProductCode, v)) } // MaterialCodeEQ applies the EQ predicate on the "materialCode" field. func MaterialCodeEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldMaterialCode, v)) } // MaterialCodeNEQ applies the NEQ predicate on the "materialCode" field. func MaterialCodeNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldMaterialCode, v)) } // MaterialCodeIn applies the In predicate on the "materialCode" field. func MaterialCodeIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldMaterialCode, vs...)) } // MaterialCodeNotIn applies the NotIn predicate on the "materialCode" field. func MaterialCodeNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldMaterialCode, vs...)) } // MaterialCodeGT applies the GT predicate on the "materialCode" field. func MaterialCodeGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldMaterialCode, v)) } // MaterialCodeGTE applies the GTE predicate on the "materialCode" field. func MaterialCodeGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldMaterialCode, v)) } // MaterialCodeLT applies the LT predicate on the "materialCode" field. func MaterialCodeLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldMaterialCode, v)) } // MaterialCodeLTE applies the LTE predicate on the "materialCode" field. func MaterialCodeLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldMaterialCode, v)) } // MaterialCodeContains applies the Contains predicate on the "materialCode" field. func MaterialCodeContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldMaterialCode, v)) } // MaterialCodeHasPrefix applies the HasPrefix predicate on the "materialCode" field. func MaterialCodeHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldMaterialCode, v)) } // MaterialCodeHasSuffix applies the HasSuffix predicate on the "materialCode" field. func MaterialCodeHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldMaterialCode, v)) } // MaterialCodeEqualFold applies the EqualFold predicate on the "materialCode" field. func MaterialCodeEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldMaterialCode, v)) } // MaterialCodeContainsFold applies the ContainsFold predicate on the "materialCode" field. func MaterialCodeContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldMaterialCode, v)) } // MaterialNameEQ applies the EQ predicate on the "materialName" field. func MaterialNameEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldMaterialName, v)) } // MaterialNameNEQ applies the NEQ predicate on the "materialName" field. func MaterialNameNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldMaterialName, v)) } // MaterialNameIn applies the In predicate on the "materialName" field. func MaterialNameIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldMaterialName, vs...)) } // MaterialNameNotIn applies the NotIn predicate on the "materialName" field. func MaterialNameNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldMaterialName, vs...)) } // MaterialNameGT applies the GT predicate on the "materialName" field. func MaterialNameGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldMaterialName, v)) } // MaterialNameGTE applies the GTE predicate on the "materialName" field. func MaterialNameGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldMaterialName, v)) } // MaterialNameLT applies the LT predicate on the "materialName" field. func MaterialNameLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldMaterialName, v)) } // MaterialNameLTE applies the LTE predicate on the "materialName" field. func MaterialNameLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldMaterialName, v)) } // MaterialNameContains applies the Contains predicate on the "materialName" field. func MaterialNameContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldMaterialName, v)) } // MaterialNameHasPrefix applies the HasPrefix predicate on the "materialName" field. func MaterialNameHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldMaterialName, v)) } // MaterialNameHasSuffix applies the HasSuffix predicate on the "materialName" field. func MaterialNameHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldMaterialName, v)) } // MaterialNameEqualFold applies the EqualFold predicate on the "materialName" field. func MaterialNameEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldMaterialName, v)) } // MaterialNameContainsFold applies the ContainsFold predicate on the "materialName" field. func MaterialNameContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldMaterialName, v)) } // SpecEQ applies the EQ predicate on the "spec" field. func SpecEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldSpec, v)) } // SpecNEQ applies the NEQ predicate on the "spec" field. func SpecNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldSpec, v)) } // SpecIn applies the In predicate on the "spec" field. func SpecIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldSpec, vs...)) } // SpecNotIn applies the NotIn predicate on the "spec" field. func SpecNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldSpec, vs...)) } // SpecGT applies the GT predicate on the "spec" field. func SpecGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldSpec, v)) } // SpecGTE applies the GTE predicate on the "spec" field. func SpecGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldSpec, v)) } // SpecLT applies the LT predicate on the "spec" field. func SpecLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldSpec, v)) } // SpecLTE applies the LTE predicate on the "spec" field. func SpecLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldSpec, v)) } // SpecContains applies the Contains predicate on the "spec" field. func SpecContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldSpec, v)) } // SpecHasPrefix applies the HasPrefix predicate on the "spec" field. func SpecHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldSpec, v)) } // SpecHasSuffix applies the HasSuffix predicate on the "spec" field. func SpecHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldSpec, v)) } // SpecEqualFold applies the EqualFold predicate on the "spec" field. func SpecEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldSpec, v)) } // SpecContainsFold applies the ContainsFold predicate on the "spec" field. func SpecContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldSpec, v)) } // UnitEQ applies the EQ predicate on the "unit" field. func UnitEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldUnit, v)) } // UnitNEQ applies the NEQ predicate on the "unit" field. func UnitNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldUnit, v)) } // UnitIn applies the In predicate on the "unit" field. func UnitIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldUnit, vs...)) } // UnitNotIn applies the NotIn predicate on the "unit" field. func UnitNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldUnit, vs...)) } // UnitGT applies the GT predicate on the "unit" field. func UnitGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldUnit, v)) } // UnitGTE applies the GTE predicate on the "unit" field. func UnitGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldUnit, v)) } // UnitLT applies the LT predicate on the "unit" field. func UnitLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldUnit, v)) } // UnitLTE applies the LTE predicate on the "unit" field. func UnitLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldUnit, v)) } // UnitContains applies the Contains predicate on the "unit" field. func UnitContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldUnit, v)) } // UnitHasPrefix applies the HasPrefix predicate on the "unit" field. func UnitHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldUnit, v)) } // UnitHasSuffix applies the HasSuffix predicate on the "unit" field. func UnitHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldUnit, v)) } // UnitEqualFold applies the EqualFold predicate on the "unit" field. func UnitEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldUnit, v)) } // UnitContainsFold applies the ContainsFold predicate on the "unit" field. func UnitContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldUnit, v)) } // ManageModeEQ applies the EQ predicate on the "manageMode" field. func ManageModeEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldManageMode, v)) } // ManageModeNEQ applies the NEQ predicate on the "manageMode" field. func ManageModeNEQ(v string) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldManageMode, v)) } // ManageModeIn applies the In predicate on the "manageMode" field. func ManageModeIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldManageMode, vs...)) } // ManageModeNotIn applies the NotIn predicate on the "manageMode" field. func ManageModeNotIn(vs ...string) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldManageMode, vs...)) } // ManageModeGT applies the GT predicate on the "manageMode" field. func ManageModeGT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldManageMode, v)) } // ManageModeGTE applies the GTE predicate on the "manageMode" field. func ManageModeGTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldManageMode, v)) } // ManageModeLT applies the LT predicate on the "manageMode" field. func ManageModeLT(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldManageMode, v)) } // ManageModeLTE applies the LTE predicate on the "manageMode" field. func ManageModeLTE(v string) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldManageMode, v)) } // ManageModeContains applies the Contains predicate on the "manageMode" field. func ManageModeContains(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContains(FieldManageMode, v)) } // ManageModeHasPrefix applies the HasPrefix predicate on the "manageMode" field. func ManageModeHasPrefix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasPrefix(FieldManageMode, v)) } // ManageModeHasSuffix applies the HasSuffix predicate on the "manageMode" field. func ManageModeHasSuffix(v string) predicate.BomItem { return predicate.BomItem(sql.FieldHasSuffix(FieldManageMode, v)) } // ManageModeEqualFold applies the EqualFold predicate on the "manageMode" field. func ManageModeEqualFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldEqualFold(FieldManageMode, v)) } // ManageModeContainsFold applies the ContainsFold predicate on the "manageMode" field. func ManageModeContainsFold(v string) predicate.BomItem { return predicate.BomItem(sql.FieldContainsFold(FieldManageMode, v)) } // UnitQtyEQ applies the EQ predicate on the "unitQty" field. func UnitQtyEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldUnitQty, v)) } // UnitQtyNEQ applies the NEQ predicate on the "unitQty" field. func UnitQtyNEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldUnitQty, v)) } // UnitQtyIn applies the In predicate on the "unitQty" field. func UnitQtyIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldUnitQty, vs...)) } // UnitQtyNotIn applies the NotIn predicate on the "unitQty" field. func UnitQtyNotIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldUnitQty, vs...)) } // UnitQtyGT applies the GT predicate on the "unitQty" field. func UnitQtyGT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldUnitQty, v)) } // UnitQtyGTE applies the GTE predicate on the "unitQty" field. func UnitQtyGTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldUnitQty, v)) } // UnitQtyLT applies the LT predicate on the "unitQty" field. func UnitQtyLT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldUnitQty, v)) } // UnitQtyLTE applies the LTE predicate on the "unitQty" field. func UnitQtyLTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldUnitQty, v)) } // LossRateEQ applies the EQ predicate on the "lossRate" field. func LossRateEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldLossRate, v)) } // LossRateNEQ applies the NEQ predicate on the "lossRate" field. func LossRateNEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldLossRate, v)) } // LossRateIn applies the In predicate on the "lossRate" field. func LossRateIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldLossRate, vs...)) } // LossRateNotIn applies the NotIn predicate on the "lossRate" field. func LossRateNotIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldLossRate, vs...)) } // LossRateGT applies the GT predicate on the "lossRate" field. func LossRateGT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldLossRate, v)) } // LossRateGTE applies the GTE predicate on the "lossRate" field. func LossRateGTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldLossRate, v)) } // LossRateLT applies the LT predicate on the "lossRate" field. func LossRateLT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldLossRate, v)) } // LossRateLTE applies the LTE predicate on the "lossRate" field. func LossRateLTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldLossRate, v)) } // RequiredQtyEQ applies the EQ predicate on the "requiredQty" field. func RequiredQtyEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldRequiredQty, v)) } // RequiredQtyNEQ applies the NEQ predicate on the "requiredQty" field. func RequiredQtyNEQ(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldRequiredQty, v)) } // RequiredQtyIn applies the In predicate on the "requiredQty" field. func RequiredQtyIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldRequiredQty, vs...)) } // RequiredQtyNotIn applies the NotIn predicate on the "requiredQty" field. func RequiredQtyNotIn(vs ...float64) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldRequiredQty, vs...)) } // RequiredQtyGT applies the GT predicate on the "requiredQty" field. func RequiredQtyGT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldRequiredQty, v)) } // RequiredQtyGTE applies the GTE predicate on the "requiredQty" field. func RequiredQtyGTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldRequiredQty, v)) } // RequiredQtyLT applies the LT predicate on the "requiredQty" field. func RequiredQtyLT(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldRequiredQty, v)) } // RequiredQtyLTE applies the LTE predicate on the "requiredQty" field. func RequiredQtyLTE(v float64) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldRequiredQty, v)) } // SerialSnsIsNil applies the IsNil predicate on the "serialSns" field. func SerialSnsIsNil() predicate.BomItem { return predicate.BomItem(sql.FieldIsNull(FieldSerialSns)) } // SerialSnsNotNil applies the NotNil predicate on the "serialSns" field. func SerialSnsNotNil() predicate.BomItem { return predicate.BomItem(sql.FieldNotNull(FieldSerialSns)) } // CreatedAtEQ applies the EQ predicate on the "createdAt" field. func CreatedAtEQ(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldEQ(FieldCreatedAt, v)) } // CreatedAtNEQ applies the NEQ predicate on the "createdAt" field. func CreatedAtNEQ(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldNEQ(FieldCreatedAt, v)) } // CreatedAtIn applies the In predicate on the "createdAt" field. func CreatedAtIn(vs ...time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldIn(FieldCreatedAt, vs...)) } // CreatedAtNotIn applies the NotIn predicate on the "createdAt" field. func CreatedAtNotIn(vs ...time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldNotIn(FieldCreatedAt, vs...)) } // CreatedAtGT applies the GT predicate on the "createdAt" field. func CreatedAtGT(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldGT(FieldCreatedAt, v)) } // CreatedAtGTE applies the GTE predicate on the "createdAt" field. func CreatedAtGTE(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldGTE(FieldCreatedAt, v)) } // CreatedAtLT applies the LT predicate on the "createdAt" field. func CreatedAtLT(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldLT(FieldCreatedAt, v)) } // CreatedAtLTE applies the LTE predicate on the "createdAt" field. func CreatedAtLTE(v time.Time) predicate.BomItem { return predicate.BomItem(sql.FieldLTE(FieldCreatedAt, v)) } // And groups predicates with the AND operator between them. func And(predicates ...predicate.BomItem) predicate.BomItem { return predicate.BomItem(sql.AndPredicates(predicates...)) } // Or groups predicates with the OR operator between them. func Or(predicates ...predicate.BomItem) predicate.BomItem { return predicate.BomItem(sql.OrPredicates(predicates...)) } // Not applies the not operator on the given predicate. func Not(p predicate.BomItem) predicate.BomItem { return predicate.BomItem(sql.NotPredicates(p)) }