1. 通用优化: - 统一系统标题为"库房客户端"/"MES产线控制",移除北自所前缀 - 调整内置账号密码为统一123456,优化密码校验逻辑 - 新增数据库自动创建逻辑,简化部署流程 - 修复日志时间格式配置,优化日志输出 - 新增纯数字密码安全提示 2. MES系统优化: - 新增日排产管理功能,支持增删改查与自动算料生成备料单 - 重构BOM模块,改为按产品编码维护而非工单维度 - 新增工艺参数模板配置与手动报工页面 - 新增产品类型自动编码功能 - 优化菜单结构,调整工单管理、扫码报工等页面名称与路由 - 新增删除日排产接口与权限保护 - 修复物料清单查询逻辑,适配新BOM结构 - 新增refreshToken支持,优化登录会话管理 3. WMS系统优化: - 新增基础数据维护页面,支持区域与物料档案管理 - 新增工单列表下拉接口,对接MES获取未完成工单优先展示 - 优化入库管理提示文案,替换英文提示为中文 - 修复精密件入库校验逻辑,优化错误提示 - 优化Excel导入功能,新增备注字段支持 - 优化登录页面与菜单文案,统一备料台账名称 - 新增自动打开浏览器功能,优化客户端启动体验 - 修复备料出库页面查询提示文案 - 新增WMS与MES对接配置,完善内部API调用逻辑 4. 其他优化: - 删除冗余的旧版静态资源文件,更新资源引用路径 - 新增帮助文档,完善基础数据模块说明 - 修复多处文案不统一、英文残留问题
681 lines
24 KiB
Go
681 lines
24 KiB
Go
// 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))
|
|
}
|