whatsapp.go 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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. "entgo.io/ent/dialect/sql/sqlgraph"
  8. )
  9. const (
  10. // Label holds the string label denoting the whatsapp type in the database.
  11. Label = "whatsapp"
  12. // FieldID holds the string denoting the id field in the database.
  13. FieldID = "id"
  14. // FieldCreatedAt holds the string denoting the created_at field in the database.
  15. FieldCreatedAt = "created_at"
  16. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  17. FieldUpdatedAt = "updated_at"
  18. // FieldStatus holds the string denoting the status field in the database.
  19. FieldStatus = "status"
  20. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  21. FieldDeletedAt = "deleted_at"
  22. // FieldWaID holds the string denoting the wa_id field in the database.
  23. FieldWaID = "wa_id"
  24. // FieldWaName holds the string denoting the wa_name field in the database.
  25. FieldWaName = "wa_name"
  26. // FieldCallback holds the string denoting the callback field in the database.
  27. FieldCallback = "callback"
  28. // FieldAgentID holds the string denoting the agent_id field in the database.
  29. FieldAgentID = "agent_id"
  30. // FieldAccount holds the string denoting the account field in the database.
  31. FieldAccount = "account"
  32. // FieldCc holds the string denoting the cc field in the database.
  33. FieldCc = "cc"
  34. // FieldPhone holds the string denoting the phone field in the database.
  35. FieldPhone = "phone"
  36. // FieldPhoneName holds the string denoting the phone_name field in the database.
  37. FieldPhoneName = "phone_name"
  38. // FieldPhoneStatus holds the string denoting the phone_status field in the database.
  39. FieldPhoneStatus = "phone_status"
  40. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  41. FieldOrganizationID = "organization_id"
  42. // FieldAPIBase holds the string denoting the api_base field in the database.
  43. FieldAPIBase = "api_base"
  44. // FieldAPIKey holds the string denoting the api_key field in the database.
  45. FieldAPIKey = "api_key"
  46. // FieldAllowList holds the string denoting the allow_list field in the database.
  47. FieldAllowList = "allow_list"
  48. // FieldGroupAllowList holds the string denoting the group_allow_list field in the database.
  49. FieldGroupAllowList = "group_allow_list"
  50. // FieldBlockList holds the string denoting the block_list field in the database.
  51. FieldBlockList = "block_list"
  52. // FieldGroupBlockList holds the string denoting the group_block_list field in the database.
  53. FieldGroupBlockList = "group_block_list"
  54. // EdgeAgent holds the string denoting the agent edge name in mutations.
  55. EdgeAgent = "agent"
  56. // Table holds the table name of the whatsapp in the database.
  57. Table = "whatsapp"
  58. // AgentTable is the table that holds the agent relation/edge.
  59. AgentTable = "whatsapp"
  60. // AgentInverseTable is the table name for the Agent entity.
  61. // It exists in this package in order to avoid circular dependency with the "agent" package.
  62. AgentInverseTable = "agent"
  63. // AgentColumn is the table column denoting the agent relation/edge.
  64. AgentColumn = "agent_id"
  65. )
  66. // Columns holds all SQL columns for whatsapp fields.
  67. var Columns = []string{
  68. FieldID,
  69. FieldCreatedAt,
  70. FieldUpdatedAt,
  71. FieldStatus,
  72. FieldDeletedAt,
  73. FieldWaID,
  74. FieldWaName,
  75. FieldCallback,
  76. FieldAgentID,
  77. FieldAccount,
  78. FieldCc,
  79. FieldPhone,
  80. FieldPhoneName,
  81. FieldPhoneStatus,
  82. FieldOrganizationID,
  83. FieldAPIBase,
  84. FieldAPIKey,
  85. FieldAllowList,
  86. FieldGroupAllowList,
  87. FieldBlockList,
  88. FieldGroupBlockList,
  89. }
  90. // ValidColumn reports if the column name is valid (part of the table columns).
  91. func ValidColumn(column string) bool {
  92. for i := range Columns {
  93. if column == Columns[i] {
  94. return true
  95. }
  96. }
  97. return false
  98. }
  99. // Note that the variables below are initialized by the runtime
  100. // package on the initialization of the application. Therefore,
  101. // it should be imported in the main as follows:
  102. //
  103. // import _ "wechat-api/ent/runtime"
  104. var (
  105. Hooks [1]ent.Hook
  106. Interceptors [1]ent.Interceptor
  107. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  108. DefaultCreatedAt func() time.Time
  109. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  110. DefaultUpdatedAt func() time.Time
  111. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  112. UpdateDefaultUpdatedAt func() time.Time
  113. // DefaultStatus holds the default value on creation for the "status" field.
  114. DefaultStatus uint8
  115. // DefaultWaID holds the default value on creation for the "wa_id" field.
  116. DefaultWaID string
  117. // DefaultWaName holds the default value on creation for the "wa_name" field.
  118. DefaultWaName string
  119. // DefaultCallback holds the default value on creation for the "callback" field.
  120. DefaultCallback string
  121. // DefaultAgentID holds the default value on creation for the "agent_id" field.
  122. DefaultAgentID uint64
  123. // DefaultAccount holds the default value on creation for the "account" field.
  124. DefaultAccount string
  125. // DefaultCc holds the default value on creation for the "cc" field.
  126. DefaultCc string
  127. // DefaultPhone holds the default value on creation for the "phone" field.
  128. DefaultPhone string
  129. // DefaultPhoneName holds the default value on creation for the "phone_name" field.
  130. DefaultPhoneName string
  131. // DefaultPhoneStatus holds the default value on creation for the "phone_status" field.
  132. DefaultPhoneStatus int8
  133. // DefaultOrganizationID holds the default value on creation for the "organization_id" field.
  134. DefaultOrganizationID uint64
  135. // DefaultAPIBase holds the default value on creation for the "api_base" field.
  136. DefaultAPIBase string
  137. // DefaultAPIKey holds the default value on creation for the "api_key" field.
  138. DefaultAPIKey string
  139. )
  140. // OrderOption defines the ordering options for the Whatsapp queries.
  141. type OrderOption func(*sql.Selector)
  142. // ByID orders the results by the id field.
  143. func ByID(opts ...sql.OrderTermOption) OrderOption {
  144. return sql.OrderByField(FieldID, opts...).ToFunc()
  145. }
  146. // ByCreatedAt orders the results by the created_at field.
  147. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  148. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  149. }
  150. // ByUpdatedAt orders the results by the updated_at field.
  151. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  152. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  153. }
  154. // ByStatus orders the results by the status field.
  155. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  156. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  157. }
  158. // ByDeletedAt orders the results by the deleted_at field.
  159. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  160. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  161. }
  162. // ByWaID orders the results by the wa_id field.
  163. func ByWaID(opts ...sql.OrderTermOption) OrderOption {
  164. return sql.OrderByField(FieldWaID, opts...).ToFunc()
  165. }
  166. // ByWaName orders the results by the wa_name field.
  167. func ByWaName(opts ...sql.OrderTermOption) OrderOption {
  168. return sql.OrderByField(FieldWaName, opts...).ToFunc()
  169. }
  170. // ByCallback orders the results by the callback field.
  171. func ByCallback(opts ...sql.OrderTermOption) OrderOption {
  172. return sql.OrderByField(FieldCallback, opts...).ToFunc()
  173. }
  174. // ByAgentID orders the results by the agent_id field.
  175. func ByAgentID(opts ...sql.OrderTermOption) OrderOption {
  176. return sql.OrderByField(FieldAgentID, opts...).ToFunc()
  177. }
  178. // ByAccount orders the results by the account field.
  179. func ByAccount(opts ...sql.OrderTermOption) OrderOption {
  180. return sql.OrderByField(FieldAccount, opts...).ToFunc()
  181. }
  182. // ByCc orders the results by the cc field.
  183. func ByCc(opts ...sql.OrderTermOption) OrderOption {
  184. return sql.OrderByField(FieldCc, opts...).ToFunc()
  185. }
  186. // ByPhone orders the results by the phone field.
  187. func ByPhone(opts ...sql.OrderTermOption) OrderOption {
  188. return sql.OrderByField(FieldPhone, opts...).ToFunc()
  189. }
  190. // ByPhoneName orders the results by the phone_name field.
  191. func ByPhoneName(opts ...sql.OrderTermOption) OrderOption {
  192. return sql.OrderByField(FieldPhoneName, opts...).ToFunc()
  193. }
  194. // ByPhoneStatus orders the results by the phone_status field.
  195. func ByPhoneStatus(opts ...sql.OrderTermOption) OrderOption {
  196. return sql.OrderByField(FieldPhoneStatus, opts...).ToFunc()
  197. }
  198. // ByOrganizationID orders the results by the organization_id field.
  199. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  200. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  201. }
  202. // ByAPIBase orders the results by the api_base field.
  203. func ByAPIBase(opts ...sql.OrderTermOption) OrderOption {
  204. return sql.OrderByField(FieldAPIBase, opts...).ToFunc()
  205. }
  206. // ByAPIKey orders the results by the api_key field.
  207. func ByAPIKey(opts ...sql.OrderTermOption) OrderOption {
  208. return sql.OrderByField(FieldAPIKey, opts...).ToFunc()
  209. }
  210. // ByAgentField orders the results by agent field.
  211. func ByAgentField(field string, opts ...sql.OrderTermOption) OrderOption {
  212. return func(s *sql.Selector) {
  213. sqlgraph.OrderByNeighborTerms(s, newAgentStep(), sql.OrderByField(field, opts...))
  214. }
  215. }
  216. func newAgentStep() *sqlgraph.Step {
  217. return sqlgraph.NewStep(
  218. sqlgraph.From(Table, FieldID),
  219. sqlgraph.To(AgentInverseTable, FieldID),
  220. sqlgraph.Edge(sqlgraph.M2O, true, AgentTable, AgentColumn),
  221. )
  222. }