whatsapp.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. // Code generated by ent, DO NOT EDIT.
  2. package whatsapp
  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 whatsapp type in the database.
  10. Label = "whatsapp"
  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. // FieldStatus holds the string denoting the status field in the database.
  18. FieldStatus = "status"
  19. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  20. FieldDeletedAt = "deleted_at"
  21. // FieldAk holds the string denoting the ak field in the database.
  22. FieldAk = "ak"
  23. // FieldSk holds the string denoting the sk field in the database.
  24. FieldSk = "sk"
  25. // FieldCallback holds the string denoting the callback field in the database.
  26. FieldCallback = "callback"
  27. // FieldAccount holds the string denoting the account field in the database.
  28. FieldAccount = "account"
  29. // FieldNickname holds the string denoting the nickname field in the database.
  30. FieldNickname = "nickname"
  31. // FieldPhone holds the string denoting the phone field in the database.
  32. FieldPhone = "phone"
  33. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  34. FieldOrganizationID = "organization_id"
  35. // FieldAgentID holds the string denoting the agent_id field in the database.
  36. FieldAgentID = "agent_id"
  37. // FieldAPIBase holds the string denoting the api_base field in the database.
  38. FieldAPIBase = "api_base"
  39. // FieldAPIKey holds the string denoting the api_key field in the database.
  40. FieldAPIKey = "api_key"
  41. // FieldAllowList holds the string denoting the allow_list field in the database.
  42. FieldAllowList = "allow_list"
  43. // FieldGroupAllowList holds the string denoting the group_allow_list field in the database.
  44. FieldGroupAllowList = "group_allow_list"
  45. // FieldBlockList holds the string denoting the block_list field in the database.
  46. FieldBlockList = "block_list"
  47. // FieldGroupBlockList holds the string denoting the group_block_list field in the database.
  48. FieldGroupBlockList = "group_block_list"
  49. // Table holds the table name of the whatsapp in the database.
  50. Table = "whatsapp"
  51. )
  52. // Columns holds all SQL columns for whatsapp fields.
  53. var Columns = []string{
  54. FieldID,
  55. FieldCreatedAt,
  56. FieldUpdatedAt,
  57. FieldStatus,
  58. FieldDeletedAt,
  59. FieldAk,
  60. FieldSk,
  61. FieldCallback,
  62. FieldAccount,
  63. FieldNickname,
  64. FieldPhone,
  65. FieldOrganizationID,
  66. FieldAgentID,
  67. FieldAPIBase,
  68. FieldAPIKey,
  69. FieldAllowList,
  70. FieldGroupAllowList,
  71. FieldBlockList,
  72. FieldGroupBlockList,
  73. }
  74. // ValidColumn reports if the column name is valid (part of the table columns).
  75. func ValidColumn(column string) bool {
  76. for i := range Columns {
  77. if column == Columns[i] {
  78. return true
  79. }
  80. }
  81. return false
  82. }
  83. // Note that the variables below are initialized by the runtime
  84. // package on the initialization of the application. Therefore,
  85. // it should be imported in the main as follows:
  86. //
  87. // import _ "wechat-api/ent/runtime"
  88. var (
  89. Hooks [1]ent.Hook
  90. Interceptors [1]ent.Interceptor
  91. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  92. DefaultCreatedAt func() time.Time
  93. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  94. DefaultUpdatedAt func() time.Time
  95. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  96. UpdateDefaultUpdatedAt func() time.Time
  97. // DefaultStatus holds the default value on creation for the "status" field.
  98. DefaultStatus uint8
  99. // DefaultAk holds the default value on creation for the "ak" field.
  100. DefaultAk string
  101. // DefaultSk holds the default value on creation for the "sk" field.
  102. DefaultSk string
  103. // DefaultCallback holds the default value on creation for the "callback" field.
  104. DefaultCallback string
  105. // DefaultAccount holds the default value on creation for the "account" field.
  106. DefaultAccount string
  107. // DefaultNickname holds the default value on creation for the "nickname" field.
  108. DefaultNickname string
  109. // DefaultPhone holds the default value on creation for the "phone" field.
  110. DefaultPhone string
  111. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  112. DefaultOrganizationID uint64
  113. // DefaultAgentID holds the default value on creation for the "agent_id" field.
  114. DefaultAgentID uint64
  115. // DefaultAPIBase holds the default value on creation for the "api_base" field.
  116. DefaultAPIBase string
  117. // DefaultAPIKey holds the default value on creation for the "api_key" field.
  118. DefaultAPIKey string
  119. )
  120. // OrderOption defines the ordering options for the Whatsapp queries.
  121. type OrderOption func(*sql.Selector)
  122. // ByID orders the results by the id field.
  123. func ByID(opts ...sql.OrderTermOption) OrderOption {
  124. return sql.OrderByField(FieldID, opts...).ToFunc()
  125. }
  126. // ByCreatedAt orders the results by the created_at field.
  127. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  128. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  129. }
  130. // ByUpdatedAt orders the results by the updated_at field.
  131. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  132. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  133. }
  134. // ByStatus orders the results by the status field.
  135. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  136. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  137. }
  138. // ByDeletedAt orders the results by the deleted_at field.
  139. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  140. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  141. }
  142. // ByAk orders the results by the ak field.
  143. func ByAk(opts ...sql.OrderTermOption) OrderOption {
  144. return sql.OrderByField(FieldAk, opts...).ToFunc()
  145. }
  146. // BySk orders the results by the sk field.
  147. func BySk(opts ...sql.OrderTermOption) OrderOption {
  148. return sql.OrderByField(FieldSk, opts...).ToFunc()
  149. }
  150. // ByCallback orders the results by the callback field.
  151. func ByCallback(opts ...sql.OrderTermOption) OrderOption {
  152. return sql.OrderByField(FieldCallback, opts...).ToFunc()
  153. }
  154. // ByAccount orders the results by the account field.
  155. func ByAccount(opts ...sql.OrderTermOption) OrderOption {
  156. return sql.OrderByField(FieldAccount, opts...).ToFunc()
  157. }
  158. // ByNickname orders the results by the nickname field.
  159. func ByNickname(opts ...sql.OrderTermOption) OrderOption {
  160. return sql.OrderByField(FieldNickname, opts...).ToFunc()
  161. }
  162. // ByPhone orders the results by the phone field.
  163. func ByPhone(opts ...sql.OrderTermOption) OrderOption {
  164. return sql.OrderByField(FieldPhone, opts...).ToFunc()
  165. }
  166. // ByOrganizationID orders the results by the organization_id field.
  167. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  168. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  169. }
  170. // ByAgentID orders the results by the agent_id field.
  171. func ByAgentID(opts ...sql.OrderTermOption) OrderOption {
  172. return sql.OrderByField(FieldAgentID, opts...).ToFunc()
  173. }
  174. // ByAPIBase orders the results by the api_base field.
  175. func ByAPIBase(opts ...sql.OrderTermOption) OrderOption {
  176. return sql.OrderByField(FieldAPIBase, opts...).ToFunc()
  177. }
  178. // ByAPIKey orders the results by the api_key field.
  179. func ByAPIKey(opts ...sql.OrderTermOption) OrderOption {
  180. return sql.OrderByField(FieldAPIKey, opts...).ToFunc()
  181. }