mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-04 07:43:28 +08:00
342 lines
11 KiB
Go
342 lines
11 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package license
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"github.com/chaitin/MonkeyCode/backend/consts"
|
|
"github.com/chaitin/MonkeyCode/backend/db/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.License {
|
|
return predicate.License(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.License {
|
|
return predicate.License(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.License {
|
|
return predicate.License(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.License {
|
|
return predicate.License(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.License {
|
|
return predicate.License(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.License {
|
|
return predicate.License(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.License {
|
|
return predicate.License(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Type applies equality check predicate on the "type" field. It's identical to TypeEQ.
|
|
func Type(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldEQ(FieldType, vc))
|
|
}
|
|
|
|
// Data applies equality check predicate on the "data" field. It's identical to DataEQ.
|
|
func Data(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldData, v))
|
|
}
|
|
|
|
// Code applies equality check predicate on the "code" field. It's identical to CodeEQ.
|
|
func Code(v string) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldCode, v))
|
|
}
|
|
|
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
|
func CreatedAt(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// TypeEQ applies the EQ predicate on the "type" field.
|
|
func TypeEQ(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldEQ(FieldType, vc))
|
|
}
|
|
|
|
// TypeNEQ applies the NEQ predicate on the "type" field.
|
|
func TypeNEQ(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldNEQ(FieldType, vc))
|
|
}
|
|
|
|
// TypeIn applies the In predicate on the "type" field.
|
|
func TypeIn(vs ...consts.LicenseType) predicate.License {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = string(vs[i])
|
|
}
|
|
return predicate.License(sql.FieldIn(FieldType, v...))
|
|
}
|
|
|
|
// TypeNotIn applies the NotIn predicate on the "type" field.
|
|
func TypeNotIn(vs ...consts.LicenseType) predicate.License {
|
|
v := make([]any, len(vs))
|
|
for i := range v {
|
|
v[i] = string(vs[i])
|
|
}
|
|
return predicate.License(sql.FieldNotIn(FieldType, v...))
|
|
}
|
|
|
|
// TypeGT applies the GT predicate on the "type" field.
|
|
func TypeGT(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldGT(FieldType, vc))
|
|
}
|
|
|
|
// TypeGTE applies the GTE predicate on the "type" field.
|
|
func TypeGTE(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldGTE(FieldType, vc))
|
|
}
|
|
|
|
// TypeLT applies the LT predicate on the "type" field.
|
|
func TypeLT(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldLT(FieldType, vc))
|
|
}
|
|
|
|
// TypeLTE applies the LTE predicate on the "type" field.
|
|
func TypeLTE(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldLTE(FieldType, vc))
|
|
}
|
|
|
|
// TypeContains applies the Contains predicate on the "type" field.
|
|
func TypeContains(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldContains(FieldType, vc))
|
|
}
|
|
|
|
// TypeHasPrefix applies the HasPrefix predicate on the "type" field.
|
|
func TypeHasPrefix(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldHasPrefix(FieldType, vc))
|
|
}
|
|
|
|
// TypeHasSuffix applies the HasSuffix predicate on the "type" field.
|
|
func TypeHasSuffix(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldHasSuffix(FieldType, vc))
|
|
}
|
|
|
|
// TypeEqualFold applies the EqualFold predicate on the "type" field.
|
|
func TypeEqualFold(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldEqualFold(FieldType, vc))
|
|
}
|
|
|
|
// TypeContainsFold applies the ContainsFold predicate on the "type" field.
|
|
func TypeContainsFold(v consts.LicenseType) predicate.License {
|
|
vc := string(v)
|
|
return predicate.License(sql.FieldContainsFold(FieldType, vc))
|
|
}
|
|
|
|
// DataEQ applies the EQ predicate on the "data" field.
|
|
func DataEQ(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldData, v))
|
|
}
|
|
|
|
// DataNEQ applies the NEQ predicate on the "data" field.
|
|
func DataNEQ(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldNEQ(FieldData, v))
|
|
}
|
|
|
|
// DataIn applies the In predicate on the "data" field.
|
|
func DataIn(vs ...[]byte) predicate.License {
|
|
return predicate.License(sql.FieldIn(FieldData, vs...))
|
|
}
|
|
|
|
// DataNotIn applies the NotIn predicate on the "data" field.
|
|
func DataNotIn(vs ...[]byte) predicate.License {
|
|
return predicate.License(sql.FieldNotIn(FieldData, vs...))
|
|
}
|
|
|
|
// DataGT applies the GT predicate on the "data" field.
|
|
func DataGT(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldGT(FieldData, v))
|
|
}
|
|
|
|
// DataGTE applies the GTE predicate on the "data" field.
|
|
func DataGTE(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldGTE(FieldData, v))
|
|
}
|
|
|
|
// DataLT applies the LT predicate on the "data" field.
|
|
func DataLT(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldLT(FieldData, v))
|
|
}
|
|
|
|
// DataLTE applies the LTE predicate on the "data" field.
|
|
func DataLTE(v []byte) predicate.License {
|
|
return predicate.License(sql.FieldLTE(FieldData, v))
|
|
}
|
|
|
|
// DataIsNil applies the IsNil predicate on the "data" field.
|
|
func DataIsNil() predicate.License {
|
|
return predicate.License(sql.FieldIsNull(FieldData))
|
|
}
|
|
|
|
// DataNotNil applies the NotNil predicate on the "data" field.
|
|
func DataNotNil() predicate.License {
|
|
return predicate.License(sql.FieldNotNull(FieldData))
|
|
}
|
|
|
|
// CodeEQ applies the EQ predicate on the "code" field.
|
|
func CodeEQ(v string) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldCode, v))
|
|
}
|
|
|
|
// CodeNEQ applies the NEQ predicate on the "code" field.
|
|
func CodeNEQ(v string) predicate.License {
|
|
return predicate.License(sql.FieldNEQ(FieldCode, v))
|
|
}
|
|
|
|
// CodeIn applies the In predicate on the "code" field.
|
|
func CodeIn(vs ...string) predicate.License {
|
|
return predicate.License(sql.FieldIn(FieldCode, vs...))
|
|
}
|
|
|
|
// CodeNotIn applies the NotIn predicate on the "code" field.
|
|
func CodeNotIn(vs ...string) predicate.License {
|
|
return predicate.License(sql.FieldNotIn(FieldCode, vs...))
|
|
}
|
|
|
|
// CodeGT applies the GT predicate on the "code" field.
|
|
func CodeGT(v string) predicate.License {
|
|
return predicate.License(sql.FieldGT(FieldCode, v))
|
|
}
|
|
|
|
// CodeGTE applies the GTE predicate on the "code" field.
|
|
func CodeGTE(v string) predicate.License {
|
|
return predicate.License(sql.FieldGTE(FieldCode, v))
|
|
}
|
|
|
|
// CodeLT applies the LT predicate on the "code" field.
|
|
func CodeLT(v string) predicate.License {
|
|
return predicate.License(sql.FieldLT(FieldCode, v))
|
|
}
|
|
|
|
// CodeLTE applies the LTE predicate on the "code" field.
|
|
func CodeLTE(v string) predicate.License {
|
|
return predicate.License(sql.FieldLTE(FieldCode, v))
|
|
}
|
|
|
|
// CodeContains applies the Contains predicate on the "code" field.
|
|
func CodeContains(v string) predicate.License {
|
|
return predicate.License(sql.FieldContains(FieldCode, v))
|
|
}
|
|
|
|
// CodeHasPrefix applies the HasPrefix predicate on the "code" field.
|
|
func CodeHasPrefix(v string) predicate.License {
|
|
return predicate.License(sql.FieldHasPrefix(FieldCode, v))
|
|
}
|
|
|
|
// CodeHasSuffix applies the HasSuffix predicate on the "code" field.
|
|
func CodeHasSuffix(v string) predicate.License {
|
|
return predicate.License(sql.FieldHasSuffix(FieldCode, v))
|
|
}
|
|
|
|
// CodeIsNil applies the IsNil predicate on the "code" field.
|
|
func CodeIsNil() predicate.License {
|
|
return predicate.License(sql.FieldIsNull(FieldCode))
|
|
}
|
|
|
|
// CodeNotNil applies the NotNil predicate on the "code" field.
|
|
func CodeNotNil() predicate.License {
|
|
return predicate.License(sql.FieldNotNull(FieldCode))
|
|
}
|
|
|
|
// CodeEqualFold applies the EqualFold predicate on the "code" field.
|
|
func CodeEqualFold(v string) predicate.License {
|
|
return predicate.License(sql.FieldEqualFold(FieldCode, v))
|
|
}
|
|
|
|
// CodeContainsFold applies the ContainsFold predicate on the "code" field.
|
|
func CodeContainsFold(v string) predicate.License {
|
|
return predicate.License(sql.FieldContainsFold(FieldCode, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.License {
|
|
return predicate.License(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.License {
|
|
return predicate.License(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.License {
|
|
return predicate.License(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.License) predicate.License {
|
|
return predicate.License(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.License) predicate.License {
|
|
return predicate.License(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.License) predicate.License {
|
|
return predicate.License(sql.NotPredicates(p))
|
|
}
|