Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.FileTag) predicate.FileTag
- func CreatedAt(v time.Time) predicate.FileTag
- func CreatedAtEQ(v time.Time) predicate.FileTag
- func CreatedAtGT(v time.Time) predicate.FileTag
- func CreatedAtGTE(v time.Time) predicate.FileTag
- func CreatedAtIn(vs ...time.Time) predicate.FileTag
- func CreatedAtLT(v time.Time) predicate.FileTag
- func CreatedAtLTE(v time.Time) predicate.FileTag
- func CreatedAtNEQ(v time.Time) predicate.FileTag
- func CreatedAtNotIn(vs ...time.Time) predicate.FileTag
- func HasFiles() predicate.FileTag
- func HasFilesWith(preds ...predicate.File) predicate.FileTag
- func ID(id uint64) predicate.FileTag
- func IDEQ(id uint64) predicate.FileTag
- func IDGT(id uint64) predicate.FileTag
- func IDGTE(id uint64) predicate.FileTag
- func IDIn(ids ...uint64) predicate.FileTag
- func IDLT(id uint64) predicate.FileTag
- func IDLTE(id uint64) predicate.FileTag
- func IDNEQ(id uint64) predicate.FileTag
- func IDNotIn(ids ...uint64) predicate.FileTag
- func Name(v string) predicate.FileTag
- func NameContains(v string) predicate.FileTag
- func NameContainsFold(v string) predicate.FileTag
- func NameEQ(v string) predicate.FileTag
- func NameEqualFold(v string) predicate.FileTag
- func NameGT(v string) predicate.FileTag
- func NameGTE(v string) predicate.FileTag
- func NameHasPrefix(v string) predicate.FileTag
- func NameHasSuffix(v string) predicate.FileTag
- func NameIn(vs ...string) predicate.FileTag
- func NameLT(v string) predicate.FileTag
- func NameLTE(v string) predicate.FileTag
- func NameNEQ(v string) predicate.FileTag
- func NameNotIn(vs ...string) predicate.FileTag
- func Not(p predicate.FileTag) predicate.FileTag
- func Or(predicates ...predicate.FileTag) predicate.FileTag
- func Remark(v string) predicate.FileTag
- func RemarkContains(v string) predicate.FileTag
- func RemarkContainsFold(v string) predicate.FileTag
- func RemarkEQ(v string) predicate.FileTag
- func RemarkEqualFold(v string) predicate.FileTag
- func RemarkGT(v string) predicate.FileTag
- func RemarkGTE(v string) predicate.FileTag
- func RemarkHasPrefix(v string) predicate.FileTag
- func RemarkHasSuffix(v string) predicate.FileTag
- func RemarkIn(vs ...string) predicate.FileTag
- func RemarkIsNil() predicate.FileTag
- func RemarkLT(v string) predicate.FileTag
- func RemarkLTE(v string) predicate.FileTag
- func RemarkNEQ(v string) predicate.FileTag
- func RemarkNotIn(vs ...string) predicate.FileTag
- func RemarkNotNil() predicate.FileTag
- func Status(v uint8) predicate.FileTag
- func StatusEQ(v uint8) predicate.FileTag
- func StatusGT(v uint8) predicate.FileTag
- func StatusGTE(v uint8) predicate.FileTag
- func StatusIn(vs ...uint8) predicate.FileTag
- func StatusIsNil() predicate.FileTag
- func StatusLT(v uint8) predicate.FileTag
- func StatusLTE(v uint8) predicate.FileTag
- func StatusNEQ(v uint8) predicate.FileTag
- func StatusNotIn(vs ...uint8) predicate.FileTag
- func StatusNotNil() predicate.FileTag
- func UpdatedAt(v time.Time) predicate.FileTag
- func UpdatedAtEQ(v time.Time) predicate.FileTag
- func UpdatedAtGT(v time.Time) predicate.FileTag
- func UpdatedAtGTE(v time.Time) predicate.FileTag
- func UpdatedAtIn(vs ...time.Time) predicate.FileTag
- func UpdatedAtLT(v time.Time) predicate.FileTag
- func UpdatedAtLTE(v time.Time) predicate.FileTag
- func UpdatedAtNEQ(v time.Time) predicate.FileTag
- func UpdatedAtNotIn(vs ...time.Time) predicate.FileTag
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByFiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByFilesCount(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByRemark(opts ...sql.OrderTermOption) OrderOption
- func ByStatus(opts ...sql.OrderTermOption) OrderOption
- func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the filetag type in the database. Label = "file_tag" // 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" // FieldStatus holds the string denoting the status field in the database. FieldStatus = "status" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldRemark holds the string denoting the remark field in the database. FieldRemark = "remark" // EdgeFiles holds the string denoting the files edge name in mutations. EdgeFiles = "files" // Table holds the table name of the filetag in the database. Table = "fms_file_tags" // FilesTable is the table that holds the files relation/edge. The primary key declared below. FilesTable = "file_tag_files" // FilesInverseTable is the table name for the File entity. // It exists in this package in order to avoid circular dependency with the "file" package. FilesInverseTable = "fms_files" )
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 // DefaultStatus holds the default value on creation for the "status" field. DefaultStatus uint8 )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldStatus, FieldName, FieldRemark, }
Columns holds all SQL columns for filetag fields.
var ( // FilesPrimaryKey and FilesColumn2 are the table columns denoting the // primary key for the files relation (M2M). FilesPrimaryKey = []string{"file_tag_id", "file_id"} )
Functions ¶
func CreatedAt ¶
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasFilesWith ¶
HasFilesWith applies the HasEdge predicate on the "files" edge with a given conditions (other predicates).
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 Remark ¶
Remark applies equality check predicate on the "remark" field. It's identical to RemarkEQ.
func RemarkContains ¶
RemarkContains applies the Contains predicate on the "remark" field.
func RemarkContainsFold ¶
RemarkContainsFold applies the ContainsFold predicate on the "remark" field.
func RemarkEqualFold ¶
RemarkEqualFold applies the EqualFold predicate on the "remark" field.
func RemarkHasPrefix ¶
RemarkHasPrefix applies the HasPrefix predicate on the "remark" field.
func RemarkHasSuffix ¶
RemarkHasSuffix applies the HasSuffix predicate on the "remark" field.
func RemarkIsNil ¶
RemarkIsNil applies the IsNil predicate on the "remark" field.
func RemarkNotIn ¶
RemarkNotIn applies the NotIn predicate on the "remark" field.
func RemarkNotNil ¶
RemarkNotNil applies the NotNil predicate on the "remark" field.
func Status ¶
Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
func StatusIsNil ¶
StatusIsNil applies the IsNil predicate on the "status" field.
func StatusNotIn ¶
StatusNotIn applies the NotIn predicate on the "status" field.
func StatusNotNil ¶
StatusNotNil applies the NotNil predicate on the "status" field.
func UpdatedAt ¶
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
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 FileTag queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByFiles ¶
func ByFiles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByFiles orders the results by files terms.
func ByFilesCount ¶
func ByFilesCount(opts ...sql.OrderTermOption) OrderOption
ByFilesCount orders the results by files count.
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 ByRemark ¶
func ByRemark(opts ...sql.OrderTermOption) OrderOption
ByRemark orders the results by the remark field.
func ByStatus ¶
func ByStatus(opts ...sql.OrderTermOption) OrderOption
ByStatus orders the results by the status field.
func ByUpdatedAt ¶
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption
ByUpdatedAt orders the results by the updated_at field.