Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.FatherCat) predicate.FatherCat
- func CreateTime(v time.Time) predicate.FatherCat
- func CreateTimeEQ(v time.Time) predicate.FatherCat
- func CreateTimeGT(v time.Time) predicate.FatherCat
- func CreateTimeGTE(v time.Time) predicate.FatherCat
- func CreateTimeIn(vs ...time.Time) predicate.FatherCat
- func CreateTimeLT(v time.Time) predicate.FatherCat
- func CreateTimeLTE(v time.Time) predicate.FatherCat
- func CreateTimeNEQ(v time.Time) predicate.FatherCat
- func CreateTimeNotIn(vs ...time.Time) predicate.FatherCat
- func DeletedTime(v time.Time) predicate.FatherCat
- func DeletedTimeEQ(v time.Time) predicate.FatherCat
- func DeletedTimeGT(v time.Time) predicate.FatherCat
- func DeletedTimeGTE(v time.Time) predicate.FatherCat
- func DeletedTimeIn(vs ...time.Time) predicate.FatherCat
- func DeletedTimeIsNil() predicate.FatherCat
- func DeletedTimeLT(v time.Time) predicate.FatherCat
- func DeletedTimeLTE(v time.Time) predicate.FatherCat
- func DeletedTimeNEQ(v time.Time) predicate.FatherCat
- func DeletedTimeNotIn(vs ...time.Time) predicate.FatherCat
- func DeletedTimeNotNil() predicate.FatherCat
- func ID(id uuid.UUID) predicate.FatherCat
- func IDEQ(id uuid.UUID) predicate.FatherCat
- func IDGT(id uuid.UUID) predicate.FatherCat
- func IDGTE(id uuid.UUID) predicate.FatherCat
- func IDIn(ids ...uuid.UUID) predicate.FatherCat
- func IDLT(id uuid.UUID) predicate.FatherCat
- func IDLTE(id uuid.UUID) predicate.FatherCat
- func IDNEQ(id uuid.UUID) predicate.FatherCat
- func IDNotIn(ids ...uuid.UUID) predicate.FatherCat
- func Name(v string) predicate.FatherCat
- func NameContains(v string) predicate.FatherCat
- func NameContainsFold(v string) predicate.FatherCat
- func NameEQ(v string) predicate.FatherCat
- func NameEqualFold(v string) predicate.FatherCat
- func NameGT(v string) predicate.FatherCat
- func NameGTE(v string) predicate.FatherCat
- func NameHasPrefix(v string) predicate.FatherCat
- func NameHasSuffix(v string) predicate.FatherCat
- func NameIn(vs ...string) predicate.FatherCat
- func NameLT(v string) predicate.FatherCat
- func NameLTE(v string) predicate.FatherCat
- func NameNEQ(v string) predicate.FatherCat
- func NameNotIn(vs ...string) predicate.FatherCat
- func Not(p predicate.FatherCat) predicate.FatherCat
- func Or(predicates ...predicate.FatherCat) predicate.FatherCat
- func UpdateTime(v time.Time) predicate.FatherCat
- func UpdateTimeEQ(v time.Time) predicate.FatherCat
- func UpdateTimeGT(v time.Time) predicate.FatherCat
- func UpdateTimeGTE(v time.Time) predicate.FatherCat
- func UpdateTimeIn(vs ...time.Time) predicate.FatherCat
- func UpdateTimeLT(v time.Time) predicate.FatherCat
- func UpdateTimeLTE(v time.Time) predicate.FatherCat
- func UpdateTimeNEQ(v time.Time) predicate.FatherCat
- func UpdateTimeNotIn(vs ...time.Time) predicate.FatherCat
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the fathercat type in the database. Label = "father_cat" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldDeletedTime holds the string denoting the deleted_time field in the database. FieldDeletedTime = "deleted_time" // FieldCreateTime holds the string denoting the create_time field in the database. FieldCreateTime = "create_time" // FieldUpdateTime holds the string denoting the update_time field in the database. FieldUpdateTime = "update_time" // FieldName holds the string denoting the name field in the database. FieldName = "name" // Table holds the table name of the fathercat in the database. Table = "father_cats" )
Variables ¶
var ( // DefaultCreateTime holds the default value on creation for the "create_time" field. DefaultCreateTime func() time.Time // DefaultUpdateTime holds the default value on creation for the "update_time" field. DefaultUpdateTime func() time.Time // UpdateDefaultUpdateTime holds the default value on update for the "update_time" field. UpdateDefaultUpdateTime func() time.Time // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldDeletedTime, FieldCreateTime, FieldUpdateTime, FieldName, }
Columns holds all SQL columns for fathercat fields.
Functions ¶
func CreateTime ¶
CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.
func CreateTimeEQ ¶
CreateTimeEQ applies the EQ predicate on the "create_time" field.
func CreateTimeGT ¶
CreateTimeGT applies the GT predicate on the "create_time" field.
func CreateTimeGTE ¶
CreateTimeGTE applies the GTE predicate on the "create_time" field.
func CreateTimeIn ¶
CreateTimeIn applies the In predicate on the "create_time" field.
func CreateTimeLT ¶
CreateTimeLT applies the LT predicate on the "create_time" field.
func CreateTimeLTE ¶
CreateTimeLTE applies the LTE predicate on the "create_time" field.
func CreateTimeNEQ ¶
CreateTimeNEQ applies the NEQ predicate on the "create_time" field.
func CreateTimeNotIn ¶
CreateTimeNotIn applies the NotIn predicate on the "create_time" field.
func DeletedTime ¶
DeletedTime applies equality check predicate on the "deleted_time" field. It's identical to DeletedTimeEQ.
func DeletedTimeEQ ¶
DeletedTimeEQ applies the EQ predicate on the "deleted_time" field.
func DeletedTimeGT ¶
DeletedTimeGT applies the GT predicate on the "deleted_time" field.
func DeletedTimeGTE ¶
DeletedTimeGTE applies the GTE predicate on the "deleted_time" field.
func DeletedTimeIn ¶
DeletedTimeIn applies the In predicate on the "deleted_time" field.
func DeletedTimeIsNil ¶
DeletedTimeIsNil applies the IsNil predicate on the "deleted_time" field.
func DeletedTimeLT ¶
DeletedTimeLT applies the LT predicate on the "deleted_time" field.
func DeletedTimeLTE ¶
DeletedTimeLTE applies the LTE predicate on the "deleted_time" field.
func DeletedTimeNEQ ¶
DeletedTimeNEQ applies the NEQ predicate on the "deleted_time" field.
func DeletedTimeNotIn ¶
DeletedTimeNotIn applies the NotIn predicate on the "deleted_time" field.
func DeletedTimeNotNil ¶
DeletedTimeNotNil applies the NotNil predicate on the "deleted_time" field.
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func UpdateTime ¶
UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.
func UpdateTimeEQ ¶
UpdateTimeEQ applies the EQ predicate on the "update_time" field.
func UpdateTimeGT ¶
UpdateTimeGT applies the GT predicate on the "update_time" field.
func UpdateTimeGTE ¶
UpdateTimeGTE applies the GTE predicate on the "update_time" field.
func UpdateTimeIn ¶
UpdateTimeIn applies the In predicate on the "update_time" field.
func UpdateTimeLT ¶
UpdateTimeLT applies the LT predicate on the "update_time" field.
func UpdateTimeLTE ¶
UpdateTimeLTE applies the LTE predicate on the "update_time" field.
func UpdateTimeNEQ ¶
UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.
func UpdateTimeNotIn ¶
UpdateTimeNotIn applies the NotIn predicate on the "update_time" 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 FatherCat queries.
func ByCreateTime ¶
func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
ByCreateTime orders the results by the create_time field.
func ByDeletedTime ¶
func ByDeletedTime(opts ...sql.OrderTermOption) OrderOption
ByDeletedTime orders the results by the deleted_time field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByUpdateTime ¶
func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
ByUpdateTime orders the results by the update_time field.