token.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. // Table holds the table name of the token in the database.
  26. Table = "token"
  27. )
  28. // Columns holds all SQL columns for token fields.
  29. var Columns = []string{
  30. FieldID,
  31. FieldCreatedAt,
  32. FieldUpdatedAt,
  33. FieldDeletedAt,
  34. FieldExpireAt,
  35. FieldToken,
  36. FieldMAC,
  37. }
  38. // ValidColumn reports if the column name is valid (part of the table columns).
  39. func ValidColumn(column string) bool {
  40. for i := range Columns {
  41. if column == Columns[i] {
  42. return true
  43. }
  44. }
  45. return false
  46. }
  47. // Note that the variables below are initialized by the runtime
  48. // package on the initialization of the application. Therefore,
  49. // it should be imported in the main as follows:
  50. //
  51. // import _ "wechat-api/ent/runtime"
  52. var (
  53. Hooks [1]ent.Hook
  54. Interceptors [1]ent.Interceptor
  55. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  56. DefaultCreatedAt func() time.Time
  57. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  58. DefaultUpdatedAt func() time.Time
  59. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  60. UpdateDefaultUpdatedAt func() time.Time
  61. // DefaultToken holds the default value on creation for the "token" field.
  62. DefaultToken string
  63. // DefaultMAC holds the default value on creation for the "mac" field.
  64. DefaultMAC string
  65. )
  66. // OrderOption defines the ordering options for the Token queries.
  67. type OrderOption func(*sql.Selector)
  68. // ByID orders the results by the id field.
  69. func ByID(opts ...sql.OrderTermOption) OrderOption {
  70. return sql.OrderByField(FieldID, opts...).ToFunc()
  71. }
  72. // ByCreatedAt orders the results by the created_at field.
  73. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  74. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  75. }
  76. // ByUpdatedAt orders the results by the updated_at field.
  77. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  78. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  79. }
  80. // ByDeletedAt orders the results by the deleted_at field.
  81. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  82. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  83. }
  84. // ByExpireAt orders the results by the expire_at field.
  85. func ByExpireAt(opts ...sql.OrderTermOption) OrderOption {
  86. return sql.OrderByField(FieldExpireAt, opts...).ToFunc()
  87. }
  88. // ByToken orders the results by the token field.
  89. func ByToken(opts ...sql.OrderTermOption) OrderOption {
  90. return sql.OrderByField(FieldToken, opts...).ToFunc()
  91. }
  92. // ByMAC orders the results by the mac field.
  93. func ByMAC(opts ...sql.OrderTermOption) OrderOption {
  94. return sql.OrderByField(FieldMAC, opts...).ToFunc()
  95. }