batchmsg.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. // FieldTagids holds the string denoting the tagids field in the database.
  32. FieldTagids = "tagids"
  33. // FieldTotal holds the string denoting the total field in the database.
  34. FieldTotal = "total"
  35. // FieldSuccess holds the string denoting the success field in the database.
  36. FieldSuccess = "success"
  37. // FieldFail holds the string denoting the fail field in the database.
  38. FieldFail = "fail"
  39. // FieldStartTime holds the string denoting the start_time field in the database.
  40. FieldStartTime = "start_time"
  41. // FieldStopTime holds the string denoting the stop_time field in the database.
  42. FieldStopTime = "stop_time"
  43. // FieldSendTime holds the string denoting the send_time field in the database.
  44. FieldSendTime = "send_time"
  45. // FieldType holds the string denoting the type field in the database.
  46. FieldType = "type"
  47. // FieldOrganizationID holds the string denoting the organization_id field in the database.
  48. FieldOrganizationID = "organization_id"
  49. // FieldCtype holds the string denoting the ctype field in the database.
  50. FieldCtype = "ctype"
  51. // FieldCc holds the string denoting the cc field in the database.
  52. FieldCc = "cc"
  53. // FieldPhone holds the string denoting the phone field in the database.
  54. FieldPhone = "phone"
  55. // Table holds the table name of the batchmsg in the database.
  56. Table = "batch_msg"
  57. )
  58. // Columns holds all SQL columns for batchmsg fields.
  59. var Columns = []string{
  60. FieldID,
  61. FieldCreatedAt,
  62. FieldUpdatedAt,
  63. FieldDeletedAt,
  64. FieldStatus,
  65. FieldBatchNo,
  66. FieldTaskName,
  67. FieldFromwxid,
  68. FieldMsg,
  69. FieldTag,
  70. FieldTagids,
  71. FieldTotal,
  72. FieldSuccess,
  73. FieldFail,
  74. FieldStartTime,
  75. FieldStopTime,
  76. FieldSendTime,
  77. FieldType,
  78. FieldOrganizationID,
  79. FieldCtype,
  80. FieldCc,
  81. FieldPhone,
  82. }
  83. // ValidColumn reports if the column name is valid (part of the table columns).
  84. func ValidColumn(column string) bool {
  85. for i := range Columns {
  86. if column == Columns[i] {
  87. return true
  88. }
  89. }
  90. return false
  91. }
  92. // Note that the variables below are initialized by the runtime
  93. // package on the initialization of the application. Therefore,
  94. // it should be imported in the main as follows:
  95. //
  96. // import _ "wechat-api/ent/runtime"
  97. var (
  98. Hooks [1]ent.Hook
  99. Interceptors [1]ent.Interceptor
  100. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  101. DefaultCreatedAt func() time.Time
  102. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  103. DefaultUpdatedAt func() time.Time
  104. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  105. UpdateDefaultUpdatedAt func() time.Time
  106. // DefaultTaskName holds the default value on creation for the "task_name" field.
  107. DefaultTaskName string
  108. // OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  109. OrganizationIDValidator func(uint64) error
  110. // DefaultCtype holds the default value on creation for the "ctype" field.
  111. DefaultCtype uint64
  112. )
  113. // OrderOption defines the ordering options for the BatchMsg queries.
  114. type OrderOption func(*sql.Selector)
  115. // ByID orders the results by the id field.
  116. func ByID(opts ...sql.OrderTermOption) OrderOption {
  117. return sql.OrderByField(FieldID, opts...).ToFunc()
  118. }
  119. // ByCreatedAt orders the results by the created_at field.
  120. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  121. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  122. }
  123. // ByUpdatedAt orders the results by the updated_at field.
  124. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  125. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  126. }
  127. // ByDeletedAt orders the results by the deleted_at field.
  128. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  129. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  130. }
  131. // ByStatus orders the results by the status field.
  132. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  133. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  134. }
  135. // ByBatchNo orders the results by the batch_no field.
  136. func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
  137. return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
  138. }
  139. // ByTaskName orders the results by the task_name field.
  140. func ByTaskName(opts ...sql.OrderTermOption) OrderOption {
  141. return sql.OrderByField(FieldTaskName, opts...).ToFunc()
  142. }
  143. // ByFromwxid orders the results by the fromwxid field.
  144. func ByFromwxid(opts ...sql.OrderTermOption) OrderOption {
  145. return sql.OrderByField(FieldFromwxid, opts...).ToFunc()
  146. }
  147. // ByMsg orders the results by the msg field.
  148. func ByMsg(opts ...sql.OrderTermOption) OrderOption {
  149. return sql.OrderByField(FieldMsg, opts...).ToFunc()
  150. }
  151. // ByTag orders the results by the tag field.
  152. func ByTag(opts ...sql.OrderTermOption) OrderOption {
  153. return sql.OrderByField(FieldTag, opts...).ToFunc()
  154. }
  155. // ByTagids orders the results by the tagids field.
  156. func ByTagids(opts ...sql.OrderTermOption) OrderOption {
  157. return sql.OrderByField(FieldTagids, opts...).ToFunc()
  158. }
  159. // ByTotal orders the results by the total field.
  160. func ByTotal(opts ...sql.OrderTermOption) OrderOption {
  161. return sql.OrderByField(FieldTotal, opts...).ToFunc()
  162. }
  163. // BySuccess orders the results by the success field.
  164. func BySuccess(opts ...sql.OrderTermOption) OrderOption {
  165. return sql.OrderByField(FieldSuccess, opts...).ToFunc()
  166. }
  167. // ByFail orders the results by the fail field.
  168. func ByFail(opts ...sql.OrderTermOption) OrderOption {
  169. return sql.OrderByField(FieldFail, opts...).ToFunc()
  170. }
  171. // ByStartTime orders the results by the start_time field.
  172. func ByStartTime(opts ...sql.OrderTermOption) OrderOption {
  173. return sql.OrderByField(FieldStartTime, opts...).ToFunc()
  174. }
  175. // ByStopTime orders the results by the stop_time field.
  176. func ByStopTime(opts ...sql.OrderTermOption) OrderOption {
  177. return sql.OrderByField(FieldStopTime, opts...).ToFunc()
  178. }
  179. // BySendTime orders the results by the send_time field.
  180. func BySendTime(opts ...sql.OrderTermOption) OrderOption {
  181. return sql.OrderByField(FieldSendTime, opts...).ToFunc()
  182. }
  183. // ByType orders the results by the type field.
  184. func ByType(opts ...sql.OrderTermOption) OrderOption {
  185. return sql.OrderByField(FieldType, opts...).ToFunc()
  186. }
  187. // ByOrganizationID orders the results by the organization_id field.
  188. func ByOrganizationID(opts ...sql.OrderTermOption) OrderOption {
  189. return sql.OrderByField(FieldOrganizationID, opts...).ToFunc()
  190. }
  191. // ByCtype orders the results by the ctype field.
  192. func ByCtype(opts ...sql.OrderTermOption) OrderOption {
  193. return sql.OrderByField(FieldCtype, opts...).ToFunc()
  194. }
  195. // ByCc orders the results by the cc field.
  196. func ByCc(opts ...sql.OrderTermOption) OrderOption {
  197. return sql.OrderByField(FieldCc, opts...).ToFunc()
  198. }
  199. // ByPhone orders the results by the phone field.
  200. func ByPhone(opts ...sql.OrderTermOption) OrderOption {
  201. return sql.OrderByField(FieldPhone, opts...).ToFunc()
  202. }