Files
bj_power/bj_power_mes/bomitem/where.go
T
SunYF 5c3b747a20 feat: 新增预警与附件模块,优化工位派工功能
1. 新增预警规则、预警消息、业务附件数据库表与CRUD逻辑
2. 为拧紧记录添加审核人、审核时间字段及审核留痕功能
3. 优化产线点位类型与编号描述,更新工位组合下发菜单名称为工艺路线派工
4. 新增上传文件获取原文件名与大小的工具方法
5. 在系统管理菜单新增预警中心与附件中心入口
2026-09-14 16:31:08 +08:00

796 lines
28 KiB
Go

// Code generated by ent, DO NOT EDIT.
package bomitem
import (
"bj_power_mes/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))
}
// BomName applies equality check predicate on the "bomName" field. It's identical to BomNameEQ.
func BomName(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldEQ(FieldBomName, 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))
}
// ProcessCode applies equality check predicate on the "processCode" field. It's identical to ProcessCodeEQ.
func ProcessCode(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldEQ(FieldProcessCode, 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))
}
// BomNameEQ applies the EQ predicate on the "bomName" field.
func BomNameEQ(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldEQ(FieldBomName, v))
}
// BomNameNEQ applies the NEQ predicate on the "bomName" field.
func BomNameNEQ(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldNEQ(FieldBomName, v))
}
// BomNameIn applies the In predicate on the "bomName" field.
func BomNameIn(vs ...string) predicate.BomItem {
return predicate.BomItem(sql.FieldIn(FieldBomName, vs...))
}
// BomNameNotIn applies the NotIn predicate on the "bomName" field.
func BomNameNotIn(vs ...string) predicate.BomItem {
return predicate.BomItem(sql.FieldNotIn(FieldBomName, vs...))
}
// BomNameGT applies the GT predicate on the "bomName" field.
func BomNameGT(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldGT(FieldBomName, v))
}
// BomNameGTE applies the GTE predicate on the "bomName" field.
func BomNameGTE(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldGTE(FieldBomName, v))
}
// BomNameLT applies the LT predicate on the "bomName" field.
func BomNameLT(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldLT(FieldBomName, v))
}
// BomNameLTE applies the LTE predicate on the "bomName" field.
func BomNameLTE(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldLTE(FieldBomName, v))
}
// BomNameContains applies the Contains predicate on the "bomName" field.
func BomNameContains(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldContains(FieldBomName, v))
}
// BomNameHasPrefix applies the HasPrefix predicate on the "bomName" field.
func BomNameHasPrefix(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldHasPrefix(FieldBomName, v))
}
// BomNameHasSuffix applies the HasSuffix predicate on the "bomName" field.
func BomNameHasSuffix(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldHasSuffix(FieldBomName, v))
}
// BomNameEqualFold applies the EqualFold predicate on the "bomName" field.
func BomNameEqualFold(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldEqualFold(FieldBomName, v))
}
// BomNameContainsFold applies the ContainsFold predicate on the "bomName" field.
func BomNameContainsFold(v string) predicate.BomItem {
return predicate.BomItem(sql.FieldContainsFold(FieldBomName, 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))
}
// ProcessCodeEQ applies the EQ predicate on the "processCode" field.
func ProcessCodeEQ(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldEQ(FieldProcessCode, v))
}
// ProcessCodeNEQ applies the NEQ predicate on the "processCode" field.
func ProcessCodeNEQ(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldNEQ(FieldProcessCode, v))
}
// ProcessCodeIn applies the In predicate on the "processCode" field.
func ProcessCodeIn(vs ...int) predicate.BomItem {
return predicate.BomItem(sql.FieldIn(FieldProcessCode, vs...))
}
// ProcessCodeNotIn applies the NotIn predicate on the "processCode" field.
func ProcessCodeNotIn(vs ...int) predicate.BomItem {
return predicate.BomItem(sql.FieldNotIn(FieldProcessCode, vs...))
}
// ProcessCodeGT applies the GT predicate on the "processCode" field.
func ProcessCodeGT(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldGT(FieldProcessCode, v))
}
// ProcessCodeGTE applies the GTE predicate on the "processCode" field.
func ProcessCodeGTE(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldGTE(FieldProcessCode, v))
}
// ProcessCodeLT applies the LT predicate on the "processCode" field.
func ProcessCodeLT(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldLT(FieldProcessCode, v))
}
// ProcessCodeLTE applies the LTE predicate on the "processCode" field.
func ProcessCodeLTE(v int) predicate.BomItem {
return predicate.BomItem(sql.FieldLTE(FieldProcessCode, 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))
}