batchmsg.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. // FieldSendTime holds the string denoting the send_time field in the database.
  42. FieldSendTime = "send_time"
  43. // Table holds the table name of the batchmsg in the database.
  44. Table = "batch_msg"
  45. )
  46. // Columns holds all SQL columns for batchmsg fields.
  47. var Columns = []string{
  48. FieldID,
  49. FieldCreatedAt,
  50. FieldUpdatedAt,
  51. FieldDeletedAt,
  52. FieldStatus,
  53. FieldBatchNo,
  54. FieldTaskName,
  55. FieldFromwxid,
  56. FieldMsg,
  57. FieldTag,
  58. FieldTotal,
  59. FieldSuccess,
  60. FieldFail,
  61. FieldStartTime,
  62. FieldStopTime,
  63. FieldSendTime,
  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. // DefaultTaskName holds the default value on creation for the "task_name" field.
  89. DefaultTaskName string
  90. )
  91. // OrderOption defines the ordering options for the BatchMsg queries.
  92. type OrderOption func(*sql.Selector)
  93. // ByID orders the results by the id field.
  94. func ByID(opts ...sql.OrderTermOption) OrderOption {
  95. return sql.OrderByField(FieldID, opts...).ToFunc()
  96. }
  97. // ByCreatedAt orders the results by the created_at field.
  98. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  99. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  100. }
  101. // ByUpdatedAt orders the results by the updated_at field.
  102. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  103. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  104. }
  105. // ByDeletedAt orders the results by the deleted_at field.
  106. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  107. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  108. }
  109. // ByStatus orders the results by the status field.
  110. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  111. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  112. }
  113. // ByBatchNo orders the results by the batch_no field.
  114. func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
  115. return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
  116. }
  117. // ByTaskName orders the results by the task_name field.
  118. func ByTaskName(opts ...sql.OrderTermOption) OrderOption {
  119. return sql.OrderByField(FieldTaskName, opts...).ToFunc()
  120. }
  121. // ByFromwxid orders the results by the fromwxid field.
  122. func ByFromwxid(opts ...sql.OrderTermOption) OrderOption {
  123. return sql.OrderByField(FieldFromwxid, opts...).ToFunc()
  124. }
  125. // ByMsg orders the results by the msg field.
  126. func ByMsg(opts ...sql.OrderTermOption) OrderOption {
  127. return sql.OrderByField(FieldMsg, opts...).ToFunc()
  128. }
  129. // ByTag orders the results by the tag field.
  130. func ByTag(opts ...sql.OrderTermOption) OrderOption {
  131. return sql.OrderByField(FieldTag, opts...).ToFunc()
  132. }
  133. // ByTotal orders the results by the total field.
  134. func ByTotal(opts ...sql.OrderTermOption) OrderOption {
  135. return sql.OrderByField(FieldTotal, opts...).ToFunc()
  136. }
  137. // BySuccess orders the results by the success field.
  138. func BySuccess(opts ...sql.OrderTermOption) OrderOption {
  139. return sql.OrderByField(FieldSuccess, opts...).ToFunc()
  140. }
  141. // ByFail orders the results by the fail field.
  142. func ByFail(opts ...sql.OrderTermOption) OrderOption {
  143. return sql.OrderByField(FieldFail, opts...).ToFunc()
  144. }
  145. // ByStartTime orders the results by the start_time field.
  146. func ByStartTime(opts ...sql.OrderTermOption) OrderOption {
  147. return sql.OrderByField(FieldStartTime, opts...).ToFunc()
  148. }
  149. // ByStopTime orders the results by the stop_time field.
  150. func ByStopTime(opts ...sql.OrderTermOption) OrderOption {
  151. return sql.OrderByField(FieldStopTime, opts...).ToFunc()
  152. }
  153. // BySendTime orders the results by the send_time field.
  154. func BySendTime(opts ...sql.OrderTermOption) OrderOption {
  155. return sql.OrderByField(FieldSendTime, opts...).ToFunc()
  156. }