messagerecords.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. // Code generated by ent, DO NOT EDIT.
  2. package messagerecords
  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 messagerecords type in the database.
  10. Label = "message_records"
  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. // FieldBotWxid holds the string denoting the bot_wxid field in the database.
  22. FieldBotWxid = "bot_wxid"
  23. // FieldContactID holds the string denoting the contact_id field in the database.
  24. FieldContactID = "contact_id"
  25. // FieldContactType holds the string denoting the contact_type field in the database.
  26. FieldContactType = "contact_type"
  27. // FieldContactWxid holds the string denoting the contact_wxid field in the database.
  28. FieldContactWxid = "contact_wxid"
  29. // FieldContentType holds the string denoting the content_type field in the database.
  30. FieldContentType = "content_type"
  31. // FieldContent holds the string denoting the content field in the database.
  32. FieldContent = "content"
  33. // FieldErrorDetail holds the string denoting the error_detail field in the database.
  34. FieldErrorDetail = "error_detail"
  35. // FieldSendTime holds the string denoting the send_time field in the database.
  36. FieldSendTime = "send_time"
  37. // FieldSourceType holds the string denoting the source_type field in the database.
  38. FieldSourceType = "source_type"
  39. // FieldSourceID holds the string denoting the source_id field in the database.
  40. FieldSourceID = "source_id"
  41. // FieldSubSourceID holds the string denoting the sub_source_id field in the database.
  42. FieldSubSourceID = "sub_source_id"
  43. // Table holds the table name of the messagerecords in the database.
  44. Table = "message_records"
  45. )
  46. // Columns holds all SQL columns for messagerecords fields.
  47. var Columns = []string{
  48. FieldID,
  49. FieldCreatedAt,
  50. FieldUpdatedAt,
  51. FieldStatus,
  52. FieldDeletedAt,
  53. FieldBotWxid,
  54. FieldContactID,
  55. FieldContactType,
  56. FieldContactWxid,
  57. FieldContentType,
  58. FieldContent,
  59. FieldErrorDetail,
  60. FieldSendTime,
  61. FieldSourceType,
  62. FieldSourceID,
  63. FieldSubSourceID,
  64. }
  65. // ValidColumn reports if the column name is valid (part of the table columns).
  66. func ValidColumn(column string) bool {
  67. for i := range Columns {
  68. if column == Columns[i] {
  69. return true
  70. }
  71. }
  72. return false
  73. }
  74. // Note that the variables below are initialized by the runtime
  75. // package on the initialization of the application. Therefore,
  76. // it should be imported in the main as follows:
  77. //
  78. // import _ "wechat-api/ent/runtime"
  79. var (
  80. Hooks [1]ent.Hook
  81. Interceptors [1]ent.Interceptor
  82. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  83. DefaultCreatedAt func() time.Time
  84. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  85. DefaultUpdatedAt func() time.Time
  86. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  87. UpdateDefaultUpdatedAt func() time.Time
  88. // DefaultStatus holds the default value on creation for the "status" field.
  89. DefaultStatus uint8
  90. // DefaultContactType holds the default value on creation for the "contact_type" field.
  91. DefaultContactType int
  92. // DefaultContactWxid holds the default value on creation for the "contact_wxid" field.
  93. DefaultContactWxid string
  94. // DefaultContentType holds the default value on creation for the "content_type" field.
  95. DefaultContentType int
  96. // DefaultContent holds the default value on creation for the "content" field.
  97. DefaultContent string
  98. // DefaultErrorDetail holds the default value on creation for the "error_detail" field.
  99. DefaultErrorDetail string
  100. // DefaultSourceType holds the default value on creation for the "source_type" field.
  101. DefaultSourceType int
  102. // DefaultSourceID holds the default value on creation for the "source_id" field.
  103. DefaultSourceID int
  104. // DefaultSubSourceID holds the default value on creation for the "sub_source_id" field.
  105. DefaultSubSourceID int
  106. )
  107. // OrderOption defines the ordering options for the MessageRecords queries.
  108. type OrderOption func(*sql.Selector)
  109. // ByID orders the results by the id field.
  110. func ByID(opts ...sql.OrderTermOption) OrderOption {
  111. return sql.OrderByField(FieldID, opts...).ToFunc()
  112. }
  113. // ByCreatedAt orders the results by the created_at field.
  114. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  115. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  116. }
  117. // ByUpdatedAt orders the results by the updated_at field.
  118. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  119. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  120. }
  121. // ByStatus orders the results by the status field.
  122. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  123. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  124. }
  125. // ByDeletedAt orders the results by the deleted_at field.
  126. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  127. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  128. }
  129. // ByBotWxid orders the results by the bot_wxid field.
  130. func ByBotWxid(opts ...sql.OrderTermOption) OrderOption {
  131. return sql.OrderByField(FieldBotWxid, opts...).ToFunc()
  132. }
  133. // ByContactID orders the results by the contact_id field.
  134. func ByContactID(opts ...sql.OrderTermOption) OrderOption {
  135. return sql.OrderByField(FieldContactID, opts...).ToFunc()
  136. }
  137. // ByContactType orders the results by the contact_type field.
  138. func ByContactType(opts ...sql.OrderTermOption) OrderOption {
  139. return sql.OrderByField(FieldContactType, opts...).ToFunc()
  140. }
  141. // ByContactWxid orders the results by the contact_wxid field.
  142. func ByContactWxid(opts ...sql.OrderTermOption) OrderOption {
  143. return sql.OrderByField(FieldContactWxid, opts...).ToFunc()
  144. }
  145. // ByContentType orders the results by the content_type field.
  146. func ByContentType(opts ...sql.OrderTermOption) OrderOption {
  147. return sql.OrderByField(FieldContentType, opts...).ToFunc()
  148. }
  149. // ByContent orders the results by the content field.
  150. func ByContent(opts ...sql.OrderTermOption) OrderOption {
  151. return sql.OrderByField(FieldContent, opts...).ToFunc()
  152. }
  153. // ByErrorDetail orders the results by the error_detail field.
  154. func ByErrorDetail(opts ...sql.OrderTermOption) OrderOption {
  155. return sql.OrderByField(FieldErrorDetail, opts...).ToFunc()
  156. }
  157. // BySendTime orders the results by the send_time field.
  158. func BySendTime(opts ...sql.OrderTermOption) OrderOption {
  159. return sql.OrderByField(FieldSendTime, opts...).ToFunc()
  160. }
  161. // BySourceType orders the results by the source_type field.
  162. func BySourceType(opts ...sql.OrderTermOption) OrderOption {
  163. return sql.OrderByField(FieldSourceType, opts...).ToFunc()
  164. }
  165. // BySourceID orders the results by the source_id field.
  166. func BySourceID(opts ...sql.OrderTermOption) OrderOption {
  167. return sql.OrderByField(FieldSourceID, opts...).ToFunc()
  168. }
  169. // BySubSourceID orders the results by the sub_source_id field.
  170. func BySubSourceID(opts ...sql.OrderTermOption) OrderOption {
  171. return sql.OrderByField(FieldSubSourceID, opts...).ToFunc()
  172. }