feat: 五项目业务实现并对接完成
- MES(B): 工单/BOM/备料/工序字典/PLC下发/拧紧/扫码报工/半成品/AGV/追溯逻辑,WMS与海康RCS客户端,看板Redis缓存API(概览/设备/进度/报警/趋势)+SSE - WMS(C): JWT滑动续签、Excel导入、盘点、内部API、种子数据、独立Postgres配置 - WMS客户端(E): Go网关8891反向代理+内嵌Vue3十页 - 工位终端(D): SQLite本地缓存+模拟拧紧源+内嵌Vue3页面 - Dashboard(A): 看板数据改接MES内部缓存API,SSE实时刷新+vite代理 - 清理各项目球形磨遗留代码,新增部署手册.md
This commit is contained in:
@@ -0,0 +1,679 @@
|
||||
// Code generated by ent, DO NOT EDIT.
|
||||
|
||||
package user
|
||||
|
||||
import (
|
||||
"bj_power_wms/ent/predicate"
|
||||
|
||||
"entgo.io/ent/dialect/sql"
|
||||
)
|
||||
|
||||
// ID filters vertices based on their ID field.
|
||||
func ID(id int) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDEQ applies the EQ predicate on the ID field.
|
||||
func IDEQ(id int) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDNEQ applies the NEQ predicate on the ID field.
|
||||
func IDNEQ(id int) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldID, id))
|
||||
}
|
||||
|
||||
// IDIn applies the In predicate on the ID field.
|
||||
func IDIn(ids ...int) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDNotIn applies the NotIn predicate on the ID field.
|
||||
func IDNotIn(ids ...int) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldID, ids...))
|
||||
}
|
||||
|
||||
// IDGT applies the GT predicate on the ID field.
|
||||
func IDGT(id int) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDGTE applies the GTE predicate on the ID field.
|
||||
func IDGTE(id int) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLT applies the LT predicate on the ID field.
|
||||
func IDLT(id int) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldID, id))
|
||||
}
|
||||
|
||||
// IDLTE applies the LTE predicate on the ID field.
|
||||
func IDLTE(id int) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldID, id))
|
||||
}
|
||||
|
||||
// Username applies equality check predicate on the "username" field. It's identical to UsernameEQ.
|
||||
func Username(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.
|
||||
func Password(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldPassword, v))
|
||||
}
|
||||
|
||||
// RealName applies equality check predicate on the "real_name" field. It's identical to RealNameEQ.
|
||||
func RealName(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldRealName, v))
|
||||
}
|
||||
|
||||
// Role applies equality check predicate on the "role" field. It's identical to RoleEQ.
|
||||
func Role(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldRole, v))
|
||||
}
|
||||
|
||||
// Dept applies equality check predicate on the "dept" field. It's identical to DeptEQ.
|
||||
func Dept(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldDept, v))
|
||||
}
|
||||
|
||||
// Phone applies equality check predicate on the "phone" field. It's identical to PhoneEQ.
|
||||
func Phone(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// IsActive applies equality check predicate on the "is_active" field. It's identical to IsActiveEQ.
|
||||
func IsActive(v bool) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldIsActive, v))
|
||||
}
|
||||
|
||||
// LastLoginAt applies equality check predicate on the "last_login_at" field. It's identical to LastLoginAtEQ.
|
||||
func LastLoginAt(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
||||
func CreatedAt(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
||||
func UpdatedAt(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UsernameEQ applies the EQ predicate on the "username" field.
|
||||
func UsernameEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameNEQ applies the NEQ predicate on the "username" field.
|
||||
func UsernameNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameIn applies the In predicate on the "username" field.
|
||||
func UsernameIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldUsername, vs...))
|
||||
}
|
||||
|
||||
// UsernameNotIn applies the NotIn predicate on the "username" field.
|
||||
func UsernameNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldUsername, vs...))
|
||||
}
|
||||
|
||||
// UsernameGT applies the GT predicate on the "username" field.
|
||||
func UsernameGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameGTE applies the GTE predicate on the "username" field.
|
||||
func UsernameGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameLT applies the LT predicate on the "username" field.
|
||||
func UsernameLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameLTE applies the LTE predicate on the "username" field.
|
||||
func UsernameLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameContains applies the Contains predicate on the "username" field.
|
||||
func UsernameContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameHasPrefix applies the HasPrefix predicate on the "username" field.
|
||||
func UsernameHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameHasSuffix applies the HasSuffix predicate on the "username" field.
|
||||
func UsernameHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameEqualFold applies the EqualFold predicate on the "username" field.
|
||||
func UsernameEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldUsername, v))
|
||||
}
|
||||
|
||||
// UsernameContainsFold applies the ContainsFold predicate on the "username" field.
|
||||
func UsernameContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldUsername, v))
|
||||
}
|
||||
|
||||
// PasswordEQ applies the EQ predicate on the "password" field.
|
||||
func PasswordEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordNEQ applies the NEQ predicate on the "password" field.
|
||||
func PasswordNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordIn applies the In predicate on the "password" field.
|
||||
func PasswordIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldPassword, vs...))
|
||||
}
|
||||
|
||||
// PasswordNotIn applies the NotIn predicate on the "password" field.
|
||||
func PasswordNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldPassword, vs...))
|
||||
}
|
||||
|
||||
// PasswordGT applies the GT predicate on the "password" field.
|
||||
func PasswordGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordGTE applies the GTE predicate on the "password" field.
|
||||
func PasswordGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordLT applies the LT predicate on the "password" field.
|
||||
func PasswordLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordLTE applies the LTE predicate on the "password" field.
|
||||
func PasswordLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordContains applies the Contains predicate on the "password" field.
|
||||
func PasswordContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordHasPrefix applies the HasPrefix predicate on the "password" field.
|
||||
func PasswordHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordHasSuffix applies the HasSuffix predicate on the "password" field.
|
||||
func PasswordHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordEqualFold applies the EqualFold predicate on the "password" field.
|
||||
func PasswordEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldPassword, v))
|
||||
}
|
||||
|
||||
// PasswordContainsFold applies the ContainsFold predicate on the "password" field.
|
||||
func PasswordContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldPassword, v))
|
||||
}
|
||||
|
||||
// RealNameEQ applies the EQ predicate on the "real_name" field.
|
||||
func RealNameEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameNEQ applies the NEQ predicate on the "real_name" field.
|
||||
func RealNameNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameIn applies the In predicate on the "real_name" field.
|
||||
func RealNameIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldRealName, vs...))
|
||||
}
|
||||
|
||||
// RealNameNotIn applies the NotIn predicate on the "real_name" field.
|
||||
func RealNameNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldRealName, vs...))
|
||||
}
|
||||
|
||||
// RealNameGT applies the GT predicate on the "real_name" field.
|
||||
func RealNameGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameGTE applies the GTE predicate on the "real_name" field.
|
||||
func RealNameGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameLT applies the LT predicate on the "real_name" field.
|
||||
func RealNameLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameLTE applies the LTE predicate on the "real_name" field.
|
||||
func RealNameLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameContains applies the Contains predicate on the "real_name" field.
|
||||
func RealNameContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameHasPrefix applies the HasPrefix predicate on the "real_name" field.
|
||||
func RealNameHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameHasSuffix applies the HasSuffix predicate on the "real_name" field.
|
||||
func RealNameHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameIsNil applies the IsNil predicate on the "real_name" field.
|
||||
func RealNameIsNil() predicate.User {
|
||||
return predicate.User(sql.FieldIsNull(FieldRealName))
|
||||
}
|
||||
|
||||
// RealNameNotNil applies the NotNil predicate on the "real_name" field.
|
||||
func RealNameNotNil() predicate.User {
|
||||
return predicate.User(sql.FieldNotNull(FieldRealName))
|
||||
}
|
||||
|
||||
// RealNameEqualFold applies the EqualFold predicate on the "real_name" field.
|
||||
func RealNameEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RealNameContainsFold applies the ContainsFold predicate on the "real_name" field.
|
||||
func RealNameContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldRealName, v))
|
||||
}
|
||||
|
||||
// RoleEQ applies the EQ predicate on the "role" field.
|
||||
func RoleEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleNEQ applies the NEQ predicate on the "role" field.
|
||||
func RoleNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleIn applies the In predicate on the "role" field.
|
||||
func RoleIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldRole, vs...))
|
||||
}
|
||||
|
||||
// RoleNotIn applies the NotIn predicate on the "role" field.
|
||||
func RoleNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldRole, vs...))
|
||||
}
|
||||
|
||||
// RoleGT applies the GT predicate on the "role" field.
|
||||
func RoleGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleGTE applies the GTE predicate on the "role" field.
|
||||
func RoleGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleLT applies the LT predicate on the "role" field.
|
||||
func RoleLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleLTE applies the LTE predicate on the "role" field.
|
||||
func RoleLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleContains applies the Contains predicate on the "role" field.
|
||||
func RoleContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleHasPrefix applies the HasPrefix predicate on the "role" field.
|
||||
func RoleHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleHasSuffix applies the HasSuffix predicate on the "role" field.
|
||||
func RoleHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleEqualFold applies the EqualFold predicate on the "role" field.
|
||||
func RoleEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldRole, v))
|
||||
}
|
||||
|
||||
// RoleContainsFold applies the ContainsFold predicate on the "role" field.
|
||||
func RoleContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldRole, v))
|
||||
}
|
||||
|
||||
// DeptEQ applies the EQ predicate on the "dept" field.
|
||||
func DeptEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptNEQ applies the NEQ predicate on the "dept" field.
|
||||
func DeptNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptIn applies the In predicate on the "dept" field.
|
||||
func DeptIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldDept, vs...))
|
||||
}
|
||||
|
||||
// DeptNotIn applies the NotIn predicate on the "dept" field.
|
||||
func DeptNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldDept, vs...))
|
||||
}
|
||||
|
||||
// DeptGT applies the GT predicate on the "dept" field.
|
||||
func DeptGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptGTE applies the GTE predicate on the "dept" field.
|
||||
func DeptGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptLT applies the LT predicate on the "dept" field.
|
||||
func DeptLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptLTE applies the LTE predicate on the "dept" field.
|
||||
func DeptLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptContains applies the Contains predicate on the "dept" field.
|
||||
func DeptContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptHasPrefix applies the HasPrefix predicate on the "dept" field.
|
||||
func DeptHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptHasSuffix applies the HasSuffix predicate on the "dept" field.
|
||||
func DeptHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptIsNil applies the IsNil predicate on the "dept" field.
|
||||
func DeptIsNil() predicate.User {
|
||||
return predicate.User(sql.FieldIsNull(FieldDept))
|
||||
}
|
||||
|
||||
// DeptNotNil applies the NotNil predicate on the "dept" field.
|
||||
func DeptNotNil() predicate.User {
|
||||
return predicate.User(sql.FieldNotNull(FieldDept))
|
||||
}
|
||||
|
||||
// DeptEqualFold applies the EqualFold predicate on the "dept" field.
|
||||
func DeptEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldDept, v))
|
||||
}
|
||||
|
||||
// DeptContainsFold applies the ContainsFold predicate on the "dept" field.
|
||||
func DeptContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldDept, v))
|
||||
}
|
||||
|
||||
// PhoneEQ applies the EQ predicate on the "phone" field.
|
||||
func PhoneEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneNEQ applies the NEQ predicate on the "phone" field.
|
||||
func PhoneNEQ(v string) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneIn applies the In predicate on the "phone" field.
|
||||
func PhoneIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldPhone, vs...))
|
||||
}
|
||||
|
||||
// PhoneNotIn applies the NotIn predicate on the "phone" field.
|
||||
func PhoneNotIn(vs ...string) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldPhone, vs...))
|
||||
}
|
||||
|
||||
// PhoneGT applies the GT predicate on the "phone" field.
|
||||
func PhoneGT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneGTE applies the GTE predicate on the "phone" field.
|
||||
func PhoneGTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneLT applies the LT predicate on the "phone" field.
|
||||
func PhoneLT(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneLTE applies the LTE predicate on the "phone" field.
|
||||
func PhoneLTE(v string) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneContains applies the Contains predicate on the "phone" field.
|
||||
func PhoneContains(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContains(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneHasPrefix applies the HasPrefix predicate on the "phone" field.
|
||||
func PhoneHasPrefix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasPrefix(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneHasSuffix applies the HasSuffix predicate on the "phone" field.
|
||||
func PhoneHasSuffix(v string) predicate.User {
|
||||
return predicate.User(sql.FieldHasSuffix(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneIsNil applies the IsNil predicate on the "phone" field.
|
||||
func PhoneIsNil() predicate.User {
|
||||
return predicate.User(sql.FieldIsNull(FieldPhone))
|
||||
}
|
||||
|
||||
// PhoneNotNil applies the NotNil predicate on the "phone" field.
|
||||
func PhoneNotNil() predicate.User {
|
||||
return predicate.User(sql.FieldNotNull(FieldPhone))
|
||||
}
|
||||
|
||||
// PhoneEqualFold applies the EqualFold predicate on the "phone" field.
|
||||
func PhoneEqualFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldEqualFold(FieldPhone, v))
|
||||
}
|
||||
|
||||
// PhoneContainsFold applies the ContainsFold predicate on the "phone" field.
|
||||
func PhoneContainsFold(v string) predicate.User {
|
||||
return predicate.User(sql.FieldContainsFold(FieldPhone, v))
|
||||
}
|
||||
|
||||
// IsActiveEQ applies the EQ predicate on the "is_active" field.
|
||||
func IsActiveEQ(v bool) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldIsActive, v))
|
||||
}
|
||||
|
||||
// IsActiveNEQ applies the NEQ predicate on the "is_active" field.
|
||||
func IsActiveNEQ(v bool) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldIsActive, v))
|
||||
}
|
||||
|
||||
// LastLoginAtEQ applies the EQ predicate on the "last_login_at" field.
|
||||
func LastLoginAtEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtNEQ applies the NEQ predicate on the "last_login_at" field.
|
||||
func LastLoginAtNEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtIn applies the In predicate on the "last_login_at" field.
|
||||
func LastLoginAtIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldLastLoginAt, vs...))
|
||||
}
|
||||
|
||||
// LastLoginAtNotIn applies the NotIn predicate on the "last_login_at" field.
|
||||
func LastLoginAtNotIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldLastLoginAt, vs...))
|
||||
}
|
||||
|
||||
// LastLoginAtGT applies the GT predicate on the "last_login_at" field.
|
||||
func LastLoginAtGT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtGTE applies the GTE predicate on the "last_login_at" field.
|
||||
func LastLoginAtGTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtLT applies the LT predicate on the "last_login_at" field.
|
||||
func LastLoginAtLT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtLTE applies the LTE predicate on the "last_login_at" field.
|
||||
func LastLoginAtLTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldLastLoginAt, v))
|
||||
}
|
||||
|
||||
// LastLoginAtIsNil applies the IsNil predicate on the "last_login_at" field.
|
||||
func LastLoginAtIsNil() predicate.User {
|
||||
return predicate.User(sql.FieldIsNull(FieldLastLoginAt))
|
||||
}
|
||||
|
||||
// LastLoginAtNotNil applies the NotNil predicate on the "last_login_at" field.
|
||||
func LastLoginAtNotNil() predicate.User {
|
||||
return predicate.User(sql.FieldNotNull(FieldLastLoginAt))
|
||||
}
|
||||
|
||||
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
||||
func CreatedAtEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
||||
func CreatedAtNEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtIn applies the In predicate on the "created_at" field.
|
||||
func CreatedAtIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldCreatedAt, vs...))
|
||||
}
|
||||
|
||||
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
||||
func CreatedAtNotIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldCreatedAt, vs...))
|
||||
}
|
||||
|
||||
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
||||
func CreatedAtGT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
||||
func CreatedAtGTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
||||
func CreatedAtLT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
||||
func CreatedAtLTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldCreatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
||||
func UpdatedAtEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
||||
func UpdatedAtNEQ(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldNEQ(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
||||
func UpdatedAtIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldIn(FieldUpdatedAt, vs...))
|
||||
}
|
||||
|
||||
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
||||
func UpdatedAtNotIn(vs ...int64) predicate.User {
|
||||
return predicate.User(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
||||
}
|
||||
|
||||
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
||||
func UpdatedAtGT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGT(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
||||
func UpdatedAtGTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldGTE(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
||||
func UpdatedAtLT(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLT(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
||||
func UpdatedAtLTE(v int64) predicate.User {
|
||||
return predicate.User(sql.FieldLTE(FieldUpdatedAt, v))
|
||||
}
|
||||
|
||||
// And groups predicates with the AND operator between them.
|
||||
func And(predicates ...predicate.User) predicate.User {
|
||||
return predicate.User(sql.AndPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Or groups predicates with the OR operator between them.
|
||||
func Or(predicates ...predicate.User) predicate.User {
|
||||
return predicate.User(sql.OrPredicates(predicates...))
|
||||
}
|
||||
|
||||
// Not applies the not operator on the given predicate.
|
||||
func Not(p predicate.User) predicate.User {
|
||||
return predicate.User(sql.NotPredicates(p))
|
||||
}
|
||||
Reference in New Issue
Block a user