本提交完成了WMS系统的多维度优化升级: 1. 新增RBAC权限系统,支持角色/菜单/按钮三级权限管控 2. 重构库存盘点、物料管理、区域维护等模块的查询筛选与展示逻辑 3. 优化入库/出库/质检等业务流程,完善数据冗余与业务闭环 4. 移除旧装箱表,将装箱逻辑合并到出库主表 5. 新增前端权限判断工具、导出工具与端到端测试用例 6. 补充完善各类注释与数据库字段说明
665 lines
23 KiB
Go
665 lines
23 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package permission
|
|
|
|
import (
|
|
"bj_power_wms/ent/predicate"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Code applies equality check predicate on the "code" field. It's identical to CodeEQ.
|
|
func Code(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldCode, v))
|
|
}
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
func Name(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// Type applies equality check predicate on the "type" field. It's identical to TypeEQ.
|
|
func Type(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldType, v))
|
|
}
|
|
|
|
// Path applies equality check predicate on the "path" field. It's identical to PathEQ.
|
|
func Path(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldPath, v))
|
|
}
|
|
|
|
// Icon applies equality check predicate on the "icon" field. It's identical to IconEQ.
|
|
func Icon(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldIcon, v))
|
|
}
|
|
|
|
// Sort applies equality check predicate on the "sort" field. It's identical to SortEQ.
|
|
func Sort(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldSort, v))
|
|
}
|
|
|
|
// Remark applies equality check predicate on the "remark" field. It's identical to RemarkEQ.
|
|
func Remark(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
func UpdatedAt(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// CodeEQ applies the EQ predicate on the "code" field.
|
|
func CodeEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldCode, v))
|
|
}
|
|
|
|
// CodeNEQ applies the NEQ predicate on the "code" field.
|
|
func CodeNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldCode, v))
|
|
}
|
|
|
|
// CodeIn applies the In predicate on the "code" field.
|
|
func CodeIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldCode, vs...))
|
|
}
|
|
|
|
// CodeNotIn applies the NotIn predicate on the "code" field.
|
|
func CodeNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldCode, vs...))
|
|
}
|
|
|
|
// CodeGT applies the GT predicate on the "code" field.
|
|
func CodeGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldCode, v))
|
|
}
|
|
|
|
// CodeGTE applies the GTE predicate on the "code" field.
|
|
func CodeGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldCode, v))
|
|
}
|
|
|
|
// CodeLT applies the LT predicate on the "code" field.
|
|
func CodeLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldCode, v))
|
|
}
|
|
|
|
// CodeLTE applies the LTE predicate on the "code" field.
|
|
func CodeLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldCode, v))
|
|
}
|
|
|
|
// CodeContains applies the Contains predicate on the "code" field.
|
|
func CodeContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldCode, v))
|
|
}
|
|
|
|
// CodeHasPrefix applies the HasPrefix predicate on the "code" field.
|
|
func CodeHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldCode, v))
|
|
}
|
|
|
|
// CodeHasSuffix applies the HasSuffix predicate on the "code" field.
|
|
func CodeHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldCode, v))
|
|
}
|
|
|
|
// CodeEqualFold applies the EqualFold predicate on the "code" field.
|
|
func CodeEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldCode, v))
|
|
}
|
|
|
|
// CodeContainsFold applies the ContainsFold predicate on the "code" field.
|
|
func CodeContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldCode, v))
|
|
}
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
func NameEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
func NameNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldName, v))
|
|
}
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
func NameIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
func NameNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
func NameGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldName, v))
|
|
}
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
func NameGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldName, v))
|
|
}
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
func NameLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldName, v))
|
|
}
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
func NameLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldName, v))
|
|
}
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
func NameContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldName, v))
|
|
}
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
func NameHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldName, v))
|
|
}
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
func NameHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldName, v))
|
|
}
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
func NameEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldName, v))
|
|
}
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
func NameContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldName, v))
|
|
}
|
|
|
|
// TypeEQ applies the EQ predicate on the "type" field.
|
|
func TypeEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldType, v))
|
|
}
|
|
|
|
// TypeNEQ applies the NEQ predicate on the "type" field.
|
|
func TypeNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldType, v))
|
|
}
|
|
|
|
// TypeIn applies the In predicate on the "type" field.
|
|
func TypeIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldType, vs...))
|
|
}
|
|
|
|
// TypeNotIn applies the NotIn predicate on the "type" field.
|
|
func TypeNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldType, vs...))
|
|
}
|
|
|
|
// TypeGT applies the GT predicate on the "type" field.
|
|
func TypeGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldType, v))
|
|
}
|
|
|
|
// TypeGTE applies the GTE predicate on the "type" field.
|
|
func TypeGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldType, v))
|
|
}
|
|
|
|
// TypeLT applies the LT predicate on the "type" field.
|
|
func TypeLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldType, v))
|
|
}
|
|
|
|
// TypeLTE applies the LTE predicate on the "type" field.
|
|
func TypeLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldType, v))
|
|
}
|
|
|
|
// TypeContains applies the Contains predicate on the "type" field.
|
|
func TypeContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldType, v))
|
|
}
|
|
|
|
// TypeHasPrefix applies the HasPrefix predicate on the "type" field.
|
|
func TypeHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldType, v))
|
|
}
|
|
|
|
// TypeHasSuffix applies the HasSuffix predicate on the "type" field.
|
|
func TypeHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldType, v))
|
|
}
|
|
|
|
// TypeEqualFold applies the EqualFold predicate on the "type" field.
|
|
func TypeEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldType, v))
|
|
}
|
|
|
|
// TypeContainsFold applies the ContainsFold predicate on the "type" field.
|
|
func TypeContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldType, v))
|
|
}
|
|
|
|
// PathEQ applies the EQ predicate on the "path" field.
|
|
func PathEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldPath, v))
|
|
}
|
|
|
|
// PathNEQ applies the NEQ predicate on the "path" field.
|
|
func PathNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldPath, v))
|
|
}
|
|
|
|
// PathIn applies the In predicate on the "path" field.
|
|
func PathIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldPath, vs...))
|
|
}
|
|
|
|
// PathNotIn applies the NotIn predicate on the "path" field.
|
|
func PathNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldPath, vs...))
|
|
}
|
|
|
|
// PathGT applies the GT predicate on the "path" field.
|
|
func PathGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldPath, v))
|
|
}
|
|
|
|
// PathGTE applies the GTE predicate on the "path" field.
|
|
func PathGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldPath, v))
|
|
}
|
|
|
|
// PathLT applies the LT predicate on the "path" field.
|
|
func PathLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldPath, v))
|
|
}
|
|
|
|
// PathLTE applies the LTE predicate on the "path" field.
|
|
func PathLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldPath, v))
|
|
}
|
|
|
|
// PathContains applies the Contains predicate on the "path" field.
|
|
func PathContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldPath, v))
|
|
}
|
|
|
|
// PathHasPrefix applies the HasPrefix predicate on the "path" field.
|
|
func PathHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldPath, v))
|
|
}
|
|
|
|
// PathHasSuffix applies the HasSuffix predicate on the "path" field.
|
|
func PathHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldPath, v))
|
|
}
|
|
|
|
// PathIsNil applies the IsNil predicate on the "path" field.
|
|
func PathIsNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldIsNull(FieldPath))
|
|
}
|
|
|
|
// PathNotNil applies the NotNil predicate on the "path" field.
|
|
func PathNotNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotNull(FieldPath))
|
|
}
|
|
|
|
// PathEqualFold applies the EqualFold predicate on the "path" field.
|
|
func PathEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldPath, v))
|
|
}
|
|
|
|
// PathContainsFold applies the ContainsFold predicate on the "path" field.
|
|
func PathContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldPath, v))
|
|
}
|
|
|
|
// IconEQ applies the EQ predicate on the "icon" field.
|
|
func IconEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldIcon, v))
|
|
}
|
|
|
|
// IconNEQ applies the NEQ predicate on the "icon" field.
|
|
func IconNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldIcon, v))
|
|
}
|
|
|
|
// IconIn applies the In predicate on the "icon" field.
|
|
func IconIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldIcon, vs...))
|
|
}
|
|
|
|
// IconNotIn applies the NotIn predicate on the "icon" field.
|
|
func IconNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldIcon, vs...))
|
|
}
|
|
|
|
// IconGT applies the GT predicate on the "icon" field.
|
|
func IconGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldIcon, v))
|
|
}
|
|
|
|
// IconGTE applies the GTE predicate on the "icon" field.
|
|
func IconGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldIcon, v))
|
|
}
|
|
|
|
// IconLT applies the LT predicate on the "icon" field.
|
|
func IconLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldIcon, v))
|
|
}
|
|
|
|
// IconLTE applies the LTE predicate on the "icon" field.
|
|
func IconLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldIcon, v))
|
|
}
|
|
|
|
// IconContains applies the Contains predicate on the "icon" field.
|
|
func IconContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldIcon, v))
|
|
}
|
|
|
|
// IconHasPrefix applies the HasPrefix predicate on the "icon" field.
|
|
func IconHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldIcon, v))
|
|
}
|
|
|
|
// IconHasSuffix applies the HasSuffix predicate on the "icon" field.
|
|
func IconHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldIcon, v))
|
|
}
|
|
|
|
// IconIsNil applies the IsNil predicate on the "icon" field.
|
|
func IconIsNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldIsNull(FieldIcon))
|
|
}
|
|
|
|
// IconNotNil applies the NotNil predicate on the "icon" field.
|
|
func IconNotNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotNull(FieldIcon))
|
|
}
|
|
|
|
// IconEqualFold applies the EqualFold predicate on the "icon" field.
|
|
func IconEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldIcon, v))
|
|
}
|
|
|
|
// IconContainsFold applies the ContainsFold predicate on the "icon" field.
|
|
func IconContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldIcon, v))
|
|
}
|
|
|
|
// SortEQ applies the EQ predicate on the "sort" field.
|
|
func SortEQ(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldSort, v))
|
|
}
|
|
|
|
// SortNEQ applies the NEQ predicate on the "sort" field.
|
|
func SortNEQ(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldSort, v))
|
|
}
|
|
|
|
// SortIn applies the In predicate on the "sort" field.
|
|
func SortIn(vs ...int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldSort, vs...))
|
|
}
|
|
|
|
// SortNotIn applies the NotIn predicate on the "sort" field.
|
|
func SortNotIn(vs ...int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldSort, vs...))
|
|
}
|
|
|
|
// SortGT applies the GT predicate on the "sort" field.
|
|
func SortGT(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldSort, v))
|
|
}
|
|
|
|
// SortGTE applies the GTE predicate on the "sort" field.
|
|
func SortGTE(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldSort, v))
|
|
}
|
|
|
|
// SortLT applies the LT predicate on the "sort" field.
|
|
func SortLT(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldSort, v))
|
|
}
|
|
|
|
// SortLTE applies the LTE predicate on the "sort" field.
|
|
func SortLTE(v int) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldSort, v))
|
|
}
|
|
|
|
// SortIsNil applies the IsNil predicate on the "sort" field.
|
|
func SortIsNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldIsNull(FieldSort))
|
|
}
|
|
|
|
// SortNotNil applies the NotNil predicate on the "sort" field.
|
|
func SortNotNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotNull(FieldSort))
|
|
}
|
|
|
|
// RemarkEQ applies the EQ predicate on the "remark" field.
|
|
func RemarkEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkNEQ applies the NEQ predicate on the "remark" field.
|
|
func RemarkNEQ(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkIn applies the In predicate on the "remark" field.
|
|
func RemarkIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkNotIn applies the NotIn predicate on the "remark" field.
|
|
func RemarkNotIn(vs ...string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldRemark, vs...))
|
|
}
|
|
|
|
// RemarkGT applies the GT predicate on the "remark" field.
|
|
func RemarkGT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkGTE applies the GTE predicate on the "remark" field.
|
|
func RemarkGTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLT applies the LT predicate on the "remark" field.
|
|
func RemarkLT(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkLTE applies the LTE predicate on the "remark" field.
|
|
func RemarkLTE(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContains applies the Contains predicate on the "remark" field.
|
|
func RemarkContains(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContains(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasPrefix applies the HasPrefix predicate on the "remark" field.
|
|
func RemarkHasPrefix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasPrefix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkHasSuffix applies the HasSuffix predicate on the "remark" field.
|
|
func RemarkHasSuffix(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldHasSuffix(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkIsNil applies the IsNil predicate on the "remark" field.
|
|
func RemarkIsNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldIsNull(FieldRemark))
|
|
}
|
|
|
|
// RemarkNotNil applies the NotNil predicate on the "remark" field.
|
|
func RemarkNotNil() predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotNull(FieldRemark))
|
|
}
|
|
|
|
// RemarkEqualFold applies the EqualFold predicate on the "remark" field.
|
|
func RemarkEqualFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEqualFold(FieldRemark, v))
|
|
}
|
|
|
|
// RemarkContainsFold applies the ContainsFold predicate on the "remark" field.
|
|
func RemarkContainsFold(v string) predicate.Permission {
|
|
return predicate.Permission(sql.FieldContainsFold(FieldRemark, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v int64) predicate.Permission {
|
|
return predicate.Permission(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Permission) predicate.Permission {
|
|
return predicate.Permission(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Permission) predicate.Permission {
|
|
return predicate.Permission(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Permission) predicate.Permission {
|
|
return predicate.Permission(sql.NotPredicates(p))
|
|
}
|