token.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // Code generated by ent, DO NOT EDIT.
  2. package token
  3. import (
  4. "time"
  5. "entgo.io/ent"
  6. "entgo.io/ent/dialect/sql"
  7. )
  8. const (
  9. // Label holds the string label denoting the token type in the database.
  10. Label = "token"
  11. // FieldID holds the string denoting the id field in the database.
  12. FieldID = "id"
  13. // FieldCreatedAt holds the string denoting the created_at field in the database.
  14. FieldCreatedAt = "created_at"
  15. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  16. FieldUpdatedAt = "updated_at"
  17. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  18. FieldDeletedAt = "deleted_at"
  19. // FieldExpireAt holds the string denoting the expire_at field in the database.
  20. FieldExpireAt = "expire_at"
  21. // FieldToken holds the string denoting the token field in the database.
  22. FieldToken = "token"
  23. // FieldMAC holds the string denoting the mac field in the database.
  24. FieldMAC = "mac"
  25. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  26. FieldOrganizationID = "organization_id"
  27. // Table holds the table name of the token in the database.
  28. Table = "token"
  29. )
  30. // Columns holds all SQL columns for token fields.
  31. var Columns = []string{
  32. FieldID,
  33. FieldCreatedAt,
  34. FieldUpdatedAt,
  35. FieldDeletedAt,
  36. FieldExpireAt,
  37. FieldToken,
  38. FieldMAC,
  39. FieldOrganizationID,
  40. }
  41. // ValidColumn reports if the column name is valid (part of the table columns).
  42. func ValidColumn(column string) bool {
  43. for i := range Columns {
  44. if column == Columns[i] {
  45. return true
  46. }
  47. }
  48. return false
  49. }
  50. // Note that the variables below are initialized by the runtime
  51. // package on the initialization of the application. Therefore,
  52. // it should be imported in the main as follows:
  53. //
  54. // import _ "wechat-api/ent/runtime"
  55. var (
  56. Hooks [1]ent.Hook
  57. Interceptors [1]ent.Interceptor
  58. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  59. DefaultCreatedAt func() time.Time
  60. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  61. DefaultUpdatedAt func() time.Time
  62. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  63. UpdateDefaultUpdatedAt func() time.Time
  64. // DefaultToken holds the default value on creation for the "token" field.
  65. DefaultToken string
  66. // DefaultMAC holds the default value on creation for the "mac" field.
  67. DefaultMAC string
  68. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  69. DefaultOrganizationID uint64
  70. )
  71. // OrderOption defines the ordering options for the Token queries.
  72. type OrderOption func(*sql.Selector)
  73. // ByID orders the results by the id field.
  74. func ByID(opts ...sql.OrderTermOption) OrderOption {
  75. return sql.OrderByField(FieldID, opts...).ToFunc()
  76. }
  77. // ByCreatedAt orders the results by the created_at field.
  78. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  79. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  80. }
  81. // ByUpdatedAt orders the results by the updated_at field.
  82. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  83. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  84. }
  85. // ByDeletedAt orders the results by the deleted_at field.
  86. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  87. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  88. }
  89. // ByExpireAt orders the results by the expire_at field.
  90. func ByExpireAt(opts ...sql.OrderTermOption) OrderOption {
  91. return sql.OrderByField(FieldExpireAt, opts...).ToFunc()
  92. }
  93. // ByToken orders the results by the token field.
  94. func ByToken(opts ...sql.OrderTermOption) OrderOption {
  95. return sql.OrderByField(FieldToken, opts...).ToFunc()
  96. }
  97. // ByMAC orders the results by the mac field.
  98. func ByMAC(opts ...sql.OrderTermOption) OrderOption {
  99. return sql.OrderByField(FieldMAC, opts...).ToFunc()
  100. }
  101. // ByOrganizationID orders the results by the organization_id field.
  102. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  103. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  104. }