Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.OrderStatusCode) predicate.OrderStatusCode
- func CreatedAt(v time.Time) predicate.OrderStatusCode
- func CreatedAtEQ(v time.Time) predicate.OrderStatusCode
- func CreatedAtGT(v time.Time) predicate.OrderStatusCode
- func CreatedAtGTE(v time.Time) predicate.OrderStatusCode
- func CreatedAtIn(vs ...time.Time) predicate.OrderStatusCode
- func CreatedAtLT(v time.Time) predicate.OrderStatusCode
- func CreatedAtLTE(v time.Time) predicate.OrderStatusCode
- func CreatedAtNEQ(v time.Time) predicate.OrderStatusCode
- func CreatedAtNotIn(vs ...time.Time) predicate.OrderStatusCode
- func ID(id int) predicate.OrderStatusCode
- func IDEQ(id int) predicate.OrderStatusCode
- func IDGT(id int) predicate.OrderStatusCode
- func IDGTE(id int) predicate.OrderStatusCode
- func IDIn(ids ...int) predicate.OrderStatusCode
- func IDLT(id int) predicate.OrderStatusCode
- func IDLTE(id int) predicate.OrderStatusCode
- func IDNEQ(id int) predicate.OrderStatusCode
- func IDNotIn(ids ...int) predicate.OrderStatusCode
- func Not(p predicate.OrderStatusCode) predicate.OrderStatusCode
- func Or(predicates ...predicate.OrderStatusCode) predicate.OrderStatusCode
- func OrderStatus(v string) predicate.OrderStatusCode
- func OrderStatusContains(v string) predicate.OrderStatusCode
- func OrderStatusContainsFold(v string) predicate.OrderStatusCode
- func OrderStatusEQ(v string) predicate.OrderStatusCode
- func OrderStatusEqualFold(v string) predicate.OrderStatusCode
- func OrderStatusGT(v string) predicate.OrderStatusCode
- func OrderStatusGTE(v string) predicate.OrderStatusCode
- func OrderStatusHasPrefix(v string) predicate.OrderStatusCode
- func OrderStatusHasSuffix(v string) predicate.OrderStatusCode
- func OrderStatusIn(vs ...string) predicate.OrderStatusCode
- func OrderStatusLT(v string) predicate.OrderStatusCode
- func OrderStatusLTE(v string) predicate.OrderStatusCode
- func OrderStatusNEQ(v string) predicate.OrderStatusCode
- func OrderStatusNotIn(vs ...string) predicate.OrderStatusCode
- func UpdatedAt(v time.Time) predicate.OrderStatusCode
- func UpdatedAtEQ(v time.Time) predicate.OrderStatusCode
- func UpdatedAtGT(v time.Time) predicate.OrderStatusCode
- func UpdatedAtGTE(v time.Time) predicate.OrderStatusCode
- func UpdatedAtIn(vs ...time.Time) predicate.OrderStatusCode
- func UpdatedAtLT(v time.Time) predicate.OrderStatusCode
- func UpdatedAtLTE(v time.Time) predicate.OrderStatusCode
- func UpdatedAtNEQ(v time.Time) predicate.OrderStatusCode
- func UpdatedAtNotIn(vs ...time.Time) predicate.OrderStatusCode
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the orderstatuscode type in the database. Label = "order_status_code" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldOrderStatus holds the string denoting the order_status field in the database. FieldOrderStatus = "order_status" // Table holds the table name of the orderstatuscode in the database. Table = "order_status_codes" )
Variables ¶
var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // OrderStatusValidator is a validator for the "order_status" field. It is called by the builders before save. OrderStatusValidator func(string) error // IDValidator is a validator for the "id" field. It is called by the builders before save. IDValidator func(int) error )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldOrderStatus, }
Columns holds all SQL columns for orderstatuscode fields.
Functions ¶
func And ¶
func And(predicates ...predicate.OrderStatusCode) predicate.OrderStatusCode
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.OrderStatusCode
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.OrderStatusCode
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.OrderStatusCode
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.OrderStatusCode
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.OrderStatusCode
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.OrderStatusCode
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.OrderStatusCode
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.OrderStatusCode
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.OrderStatusCode
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func IDEQ ¶
func IDEQ(id int) predicate.OrderStatusCode
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.OrderStatusCode
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.OrderStatusCode
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.OrderStatusCode
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.OrderStatusCode
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.OrderStatusCode
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.OrderStatusCode
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.OrderStatusCode
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.OrderStatusCode) predicate.OrderStatusCode
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.OrderStatusCode) predicate.OrderStatusCode
Or groups predicates with the OR operator between them.
func OrderStatus ¶
func OrderStatus(v string) predicate.OrderStatusCode
OrderStatus applies equality check predicate on the "order_status" field. It's identical to OrderStatusEQ.
func OrderStatusContains ¶
func OrderStatusContains(v string) predicate.OrderStatusCode
OrderStatusContains applies the Contains predicate on the "order_status" field.
func OrderStatusContainsFold ¶
func OrderStatusContainsFold(v string) predicate.OrderStatusCode
OrderStatusContainsFold applies the ContainsFold predicate on the "order_status" field.
func OrderStatusEQ ¶
func OrderStatusEQ(v string) predicate.OrderStatusCode
OrderStatusEQ applies the EQ predicate on the "order_status" field.
func OrderStatusEqualFold ¶
func OrderStatusEqualFold(v string) predicate.OrderStatusCode
OrderStatusEqualFold applies the EqualFold predicate on the "order_status" field.
func OrderStatusGT ¶
func OrderStatusGT(v string) predicate.OrderStatusCode
OrderStatusGT applies the GT predicate on the "order_status" field.
func OrderStatusGTE ¶
func OrderStatusGTE(v string) predicate.OrderStatusCode
OrderStatusGTE applies the GTE predicate on the "order_status" field.
func OrderStatusHasPrefix ¶
func OrderStatusHasPrefix(v string) predicate.OrderStatusCode
OrderStatusHasPrefix applies the HasPrefix predicate on the "order_status" field.
func OrderStatusHasSuffix ¶
func OrderStatusHasSuffix(v string) predicate.OrderStatusCode
OrderStatusHasSuffix applies the HasSuffix predicate on the "order_status" field.
func OrderStatusIn ¶
func OrderStatusIn(vs ...string) predicate.OrderStatusCode
OrderStatusIn applies the In predicate on the "order_status" field.
func OrderStatusLT ¶
func OrderStatusLT(v string) predicate.OrderStatusCode
OrderStatusLT applies the LT predicate on the "order_status" field.
func OrderStatusLTE ¶
func OrderStatusLTE(v string) predicate.OrderStatusCode
OrderStatusLTE applies the LTE predicate on the "order_status" field.
func OrderStatusNEQ ¶
func OrderStatusNEQ(v string) predicate.OrderStatusCode
OrderStatusNEQ applies the NEQ predicate on the "order_status" field.
func OrderStatusNotIn ¶
func OrderStatusNotIn(vs ...string) predicate.OrderStatusCode
OrderStatusNotIn applies the NotIn predicate on the "order_status" field.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.OrderStatusCode
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.OrderStatusCode
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.OrderStatusCode
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.OrderStatusCode
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.OrderStatusCode
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.OrderStatusCode
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.OrderStatusCode
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.OrderStatusCode
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.OrderStatusCode
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the OrderStatusCode queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByOrderStatus ¶
func ByOrderStatus(opts ...sql.OrderTermOption) OrderOption
ByOrderStatus orders the results by the order_status field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.