batchmsg.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. // Code generated by ent, DO NOT EDIT.
  2. package batchmsg
  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 batchmsg type in the database.
  10. Label = "batch_msg"
  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. // FieldStatus holds the string denoting the status field in the database.
  20. FieldStatus = "status"
  21. // FieldBatchNo holds the string denoting the batch_no field in the database.
  22. FieldBatchNo = "batch_no"
  23. // FieldTaskName holds the string denoting the task_name field in the database.
  24. FieldTaskName = "task_name"
  25. // FieldFromwxid holds the string denoting the fromwxid field in the database.
  26. FieldFromwxid = "fromwxid"
  27. // FieldMsg holds the string denoting the msg field in the database.
  28. FieldMsg = "msg"
  29. // FieldTag holds the string denoting the tag field in the database.
  30. FieldTag = "tag"
  31. // FieldTotal holds the string denoting the total field in the database.
  32. FieldTotal = "total"
  33. // FieldSuccess holds the string denoting the success field in the database.
  34. FieldSuccess = "success"
  35. // FieldFail holds the string denoting the fail field in the database.
  36. FieldFail = "fail"
  37. // FieldStartTime holds the string denoting the start_time field in the database.
  38. FieldStartTime = "start_time"
  39. // FieldStopTime holds the string denoting the stop_time field in the database.
  40. FieldStopTime = "stop_time"
  41. // FieldType holds the string denoting the type field in the database.
  42. FieldType = "type"
  43. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  44. FieldOrganizationID = "organization_id"
  45. // Table holds the table name of the batchmsg in the database.
  46. Table = "batch_msg"
  47. )
  48. // Columns holds all SQL columns for batchmsg fields.
  49. var Columns = []string{
  50. FieldID,
  51. FieldCreatedAt,
  52. FieldUpdatedAt,
  53. FieldDeletedAt,
  54. FieldStatus,
  55. FieldBatchNo,
  56. FieldTaskName,
  57. FieldFromwxid,
  58. FieldMsg,
  59. FieldTag,
  60. FieldTotal,
  61. FieldSuccess,
  62. FieldFail,
  63. FieldStartTime,
  64. FieldStopTime,
  65. FieldType,
  66. FieldOrganizationID,
  67. }
  68. // ValidColumn reports if the column name is valid (part of the table columns).
  69. func ValidColumn(column string) bool {
  70. for i := range Columns {
  71. if column == Columns[i] {
  72. return true
  73. }
  74. }
  75. return false
  76. }
  77. // Note that the variables below are initialized by the runtime
  78. // package on the initialization of the application. Therefore,
  79. // it should be imported in the main as follows:
  80. //
  81. // import _ "wechat-api/ent/runtime"
  82. var (
  83. Hooks [1]ent.Hook
  84. Interceptors [1]ent.Interceptor
  85. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  86. DefaultCreatedAt func() time.Time
  87. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  88. DefaultUpdatedAt func() time.Time
  89. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  90. UpdateDefaultUpdatedAt func() time.Time
  91. // DefaultTaskName holds the default value on creation for the "task_name" field.
  92. DefaultTaskName string
  93. // OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  94. OrganizationIDValidator func(uint64) error
  95. )
  96. // OrderOption defines the ordering options for the BatchMsg 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. // ByStatus orders the results by the status field.
  115. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  116. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  117. }
  118. // ByBatchNo orders the results by the batch_no field.
  119. func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
  120. return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
  121. }
  122. // ByTaskName orders the results by the task_name field.
  123. func ByTaskName(opts ...sql.OrderTermOption) OrderOption {
  124. return sql.OrderByField(FieldTaskName, opts...).ToFunc()
  125. }
  126. // ByFromwxid orders the results by the fromwxid field.
  127. func ByFromwxid(opts ...sql.OrderTermOption) OrderOption {
  128. return sql.OrderByField(FieldFromwxid, opts...).ToFunc()
  129. }
  130. // ByMsg orders the results by the msg field.
  131. func ByMsg(opts ...sql.OrderTermOption) OrderOption {
  132. return sql.OrderByField(FieldMsg, opts...).ToFunc()
  133. }
  134. // ByTag orders the results by the tag field.
  135. func ByTag(opts ...sql.OrderTermOption) OrderOption {
  136. return sql.OrderByField(FieldTag, opts...).ToFunc()
  137. }
  138. // ByTotal orders the results by the total field.
  139. func ByTotal(opts ...sql.OrderTermOption) OrderOption {
  140. return sql.OrderByField(FieldTotal, opts...).ToFunc()
  141. }
  142. // BySuccess orders the results by the success field.
  143. func BySuccess(opts ...sql.OrderTermOption) OrderOption {
  144. return sql.OrderByField(FieldSuccess, opts...).ToFunc()
  145. }
  146. // ByFail orders the results by the fail field.
  147. func ByFail(opts ...sql.OrderTermOption) OrderOption {
  148. return sql.OrderByField(FieldFail, opts...).ToFunc()
  149. }
  150. // ByStartTime orders the results by the start_time field.
  151. func ByStartTime(opts ...sql.OrderTermOption) OrderOption {
  152. return sql.OrderByField(FieldStartTime, opts...).ToFunc()
  153. }
  154. // ByStopTime orders the results by the stop_time field.
  155. func ByStopTime(opts ...sql.OrderTermOption) OrderOption {
  156. return sql.OrderByField(FieldStopTime, opts...).ToFunc()
  157. }
  158. // ByType orders the results by the type field.
  159. func ByType(opts ...sql.OrderTermOption) OrderOption {
  160. return sql.OrderByField(FieldType, opts...).ToFunc()
  161. }
  162. // ByOrganizationID orders the results by the organization_id field.
  163. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  164. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  165. }