252 lines
8.5 KiB
Go
252 lines
8.5 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package wallet
|
|
|
|
import (
|
|
"juwan-backend/app/wallet/rpc/internal/models/predicate"
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int64) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Balance applies equality check predicate on the "balance" field. It's identical to BalanceEQ.
|
|
func Balance(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldBalance, v))
|
|
}
|
|
|
|
// FrozenBalance applies equality check predicate on the "frozen_balance" field. It's identical to FrozenBalanceEQ.
|
|
func FrozenBalance(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// Version applies equality check predicate on the "version" field. It's identical to VersionEQ.
|
|
func Version(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldVersion, v))
|
|
}
|
|
|
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
|
func UpdatedAt(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// BalanceEQ applies the EQ predicate on the "balance" field.
|
|
func BalanceEQ(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldBalance, v))
|
|
}
|
|
|
|
// BalanceNEQ applies the NEQ predicate on the "balance" field.
|
|
func BalanceNEQ(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNEQ(FieldBalance, v))
|
|
}
|
|
|
|
// BalanceIn applies the In predicate on the "balance" field.
|
|
func BalanceIn(vs ...decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldIn(FieldBalance, vs...))
|
|
}
|
|
|
|
// BalanceNotIn applies the NotIn predicate on the "balance" field.
|
|
func BalanceNotIn(vs ...decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNotIn(FieldBalance, vs...))
|
|
}
|
|
|
|
// BalanceGT applies the GT predicate on the "balance" field.
|
|
func BalanceGT(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGT(FieldBalance, v))
|
|
}
|
|
|
|
// BalanceGTE applies the GTE predicate on the "balance" field.
|
|
func BalanceGTE(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGTE(FieldBalance, v))
|
|
}
|
|
|
|
// BalanceLT applies the LT predicate on the "balance" field.
|
|
func BalanceLT(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLT(FieldBalance, v))
|
|
}
|
|
|
|
// BalanceLTE applies the LTE predicate on the "balance" field.
|
|
func BalanceLTE(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLTE(FieldBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceEQ applies the EQ predicate on the "frozen_balance" field.
|
|
func FrozenBalanceEQ(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceNEQ applies the NEQ predicate on the "frozen_balance" field.
|
|
func FrozenBalanceNEQ(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNEQ(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceIn applies the In predicate on the "frozen_balance" field.
|
|
func FrozenBalanceIn(vs ...decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldIn(FieldFrozenBalance, vs...))
|
|
}
|
|
|
|
// FrozenBalanceNotIn applies the NotIn predicate on the "frozen_balance" field.
|
|
func FrozenBalanceNotIn(vs ...decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNotIn(FieldFrozenBalance, vs...))
|
|
}
|
|
|
|
// FrozenBalanceGT applies the GT predicate on the "frozen_balance" field.
|
|
func FrozenBalanceGT(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGT(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceGTE applies the GTE predicate on the "frozen_balance" field.
|
|
func FrozenBalanceGTE(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGTE(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceLT applies the LT predicate on the "frozen_balance" field.
|
|
func FrozenBalanceLT(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLT(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// FrozenBalanceLTE applies the LTE predicate on the "frozen_balance" field.
|
|
func FrozenBalanceLTE(v decimal.Decimal) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLTE(FieldFrozenBalance, v))
|
|
}
|
|
|
|
// VersionEQ applies the EQ predicate on the "version" field.
|
|
func VersionEQ(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldVersion, v))
|
|
}
|
|
|
|
// VersionNEQ applies the NEQ predicate on the "version" field.
|
|
func VersionNEQ(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNEQ(FieldVersion, v))
|
|
}
|
|
|
|
// VersionIn applies the In predicate on the "version" field.
|
|
func VersionIn(vs ...int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldIn(FieldVersion, vs...))
|
|
}
|
|
|
|
// VersionNotIn applies the NotIn predicate on the "version" field.
|
|
func VersionNotIn(vs ...int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNotIn(FieldVersion, vs...))
|
|
}
|
|
|
|
// VersionGT applies the GT predicate on the "version" field.
|
|
func VersionGT(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGT(FieldVersion, v))
|
|
}
|
|
|
|
// VersionGTE applies the GTE predicate on the "version" field.
|
|
func VersionGTE(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGTE(FieldVersion, v))
|
|
}
|
|
|
|
// VersionLT applies the LT predicate on the "version" field.
|
|
func VersionLT(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLT(FieldVersion, v))
|
|
}
|
|
|
|
// VersionLTE applies the LTE predicate on the "version" field.
|
|
func VersionLTE(v int) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLTE(FieldVersion, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.Wallet {
|
|
return predicate.Wallet(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// And groups predicates with the AND operator between them.
|
|
func And(predicates ...predicate.Wallet) predicate.Wallet {
|
|
return predicate.Wallet(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Wallet) predicate.Wallet {
|
|
return predicate.Wallet(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Wallet) predicate.Wallet {
|
|
return predicate.Wallet(sql.NotPredicates(p))
|
|
}
|