token.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. // FieldAgentID holds the string denoting the agent_id field in the database.
  28. FieldAgentID = "agent_id"
  29. // FieldCustomAgentBase holds the string denoting the custom_agent_base field in the database.
  30. FieldCustomAgentBase = "custom_agent_base"
  31. // FieldCustomAgentKey holds the string denoting the custom_agent_key field in the database.
  32. FieldCustomAgentKey = "custom_agent_key"
  33. // FieldOpenaiBase holds the string denoting the openai_base field in the database.
  34. FieldOpenaiBase = "openai_base"
  35. // FieldOpenaiKey holds the string denoting the openai_key field in the database.
  36. FieldOpenaiKey = "openai_key"
  37. // Table holds the table name of the token in the database.
  38. Table = "token"
  39. )
  40. // Columns holds all SQL columns for token fields.
  41. var Columns = []string{
  42. FieldID,
  43. FieldCreatedAt,
  44. FieldUpdatedAt,
  45. FieldDeletedAt,
  46. FieldExpireAt,
  47. FieldToken,
  48. FieldMAC,
  49. FieldOrganizationID,
  50. FieldAgentID,
  51. FieldCustomAgentBase,
  52. FieldCustomAgentKey,
  53. FieldOpenaiBase,
  54. FieldOpenaiKey,
  55. }
  56. // ValidColumn reports if the column name is valid (part of the table columns).
  57. func ValidColumn(column string) bool {
  58. for i := range Columns {
  59. if column == Columns[i] {
  60. return true
  61. }
  62. }
  63. return false
  64. }
  65. // Note that the variables below are initialized by the runtime
  66. // package on the initialization of the application. Therefore,
  67. // it should be imported in the main as follows:
  68. //
  69. // import _ "wechat-api/ent/runtime"
  70. var (
  71. Hooks [1]ent.Hook
  72. Interceptors [1]ent.Interceptor
  73. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  74. DefaultCreatedAt func() time.Time
  75. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  76. DefaultUpdatedAt func() time.Time
  77. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  78. UpdateDefaultUpdatedAt func() time.Time
  79. // DefaultToken holds the default value on creation for the "token" field.
  80. DefaultToken string
  81. // DefaultMAC holds the default value on creation for the "mac" field.
  82. DefaultMAC string
  83. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  84. DefaultOrganizationID uint64
  85. // DefaultAgentID holds the default value on creation for the "agent_id" field.
  86. DefaultAgentID uint64
  87. // DefaultCustomAgentBase holds the default value on creation for the "custom_agent_base" field.
  88. DefaultCustomAgentBase string
  89. // DefaultCustomAgentKey holds the default value on creation for the "custom_agent_key" field.
  90. DefaultCustomAgentKey string
  91. // DefaultOpenaiBase holds the default value on creation for the "openai_base" field.
  92. DefaultOpenaiBase string
  93. // DefaultOpenaiKey holds the default value on creation for the "openai_key" field.
  94. DefaultOpenaiKey string
  95. )
  96. // OrderOption defines the ordering options for the Token queries.
  97. type OrderOption func(*sql.Selector)
  98. // ByID orders the results by the id field.
  99. func ByID(opts ...sql.OrderTermOption) OrderOption {
  100. return sql.OrderByField(FieldID, opts...).ToFunc()
  101. }
  102. // ByCreatedAt orders the results by the created_at field.
  103. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  104. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  105. }
  106. // ByUpdatedAt orders the results by the updated_at field.
  107. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  108. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  109. }
  110. // ByDeletedAt orders the results by the deleted_at field.
  111. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  112. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  113. }
  114. // ByExpireAt orders the results by the expire_at field.
  115. func ByExpireAt(opts ...sql.OrderTermOption) OrderOption {
  116. return sql.OrderByField(FieldExpireAt, opts...).ToFunc()
  117. }
  118. // ByToken orders the results by the token field.
  119. func ByToken(opts ...sql.OrderTermOption) OrderOption {
  120. return sql.OrderByField(FieldToken, opts...).ToFunc()
  121. }
  122. // ByMAC orders the results by the mac field.
  123. func ByMAC(opts ...sql.OrderTermOption) OrderOption {
  124. return sql.OrderByField(FieldMAC, opts...).ToFunc()
  125. }
  126. // ByOrganizationID orders the results by the organization_id field.
  127. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  128. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  129. }
  130. // ByAgentID orders the results by the agent_id field.
  131. func ByAgentID(opts ...sql.OrderTermOption) OrderOption {
  132. return sql.OrderByField(FieldAgentID, opts...).ToFunc()
  133. }
  134. // ByCustomAgentBase orders the results by the custom_agent_base field.
  135. func ByCustomAgentBase(opts ...sql.OrderTermOption) OrderOption {
  136. return sql.OrderByField(FieldCustomAgentBase, opts...).ToFunc()
  137. }
  138. // ByCustomAgentKey orders the results by the custom_agent_key field.
  139. func ByCustomAgentKey(opts ...sql.OrderTermOption) OrderOption {
  140. return sql.OrderByField(FieldCustomAgentKey, opts...).ToFunc()
  141. }
  142. // ByOpenaiBase orders the results by the openai_base field.
  143. func ByOpenaiBase(opts ...sql.OrderTermOption) OrderOption {
  144. return sql.OrderByField(FieldOpenaiBase, opts...).ToFunc()
  145. }
  146. // ByOpenaiKey orders the results by the openai_key field.
  147. func ByOpenaiKey(opts ...sql.OrderTermOption) OrderOption {
  148. return sql.OrderByField(FieldOpenaiKey, opts...).ToFunc()
  149. }