msg.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. // Code generated by ent, DO NOT EDIT.
  2. package msg
  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 msg type in the database.
  10. Label = "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. // FieldFromwxid holds the string denoting the fromwxid field in the database.
  22. FieldFromwxid = "fromwxid"
  23. // FieldToid holds the string denoting the toid field in the database.
  24. FieldToid = "toid"
  25. // FieldMsgtype holds the string denoting the msgtype field in the database.
  26. FieldMsgtype = "msgtype"
  27. // FieldMsg holds the string denoting the msg field in the database.
  28. FieldMsg = "msg"
  29. // FieldBatchNo holds the string denoting the batch_no field in the database.
  30. FieldBatchNo = "batch_no"
  31. // FieldCtype holds the string denoting the ctype field in the database.
  32. FieldCtype = "ctype"
  33. // FieldCc holds the string denoting the cc field in the database.
  34. FieldCc = "cc"
  35. // FieldPhone holds the string denoting the phone field in the database.
  36. FieldPhone = "phone"
  37. // Table holds the table name of the msg in the database.
  38. Table = "msg"
  39. )
  40. // Columns holds all SQL columns for msg fields.
  41. var Columns = []string{
  42. FieldID,
  43. FieldCreatedAt,
  44. FieldUpdatedAt,
  45. FieldDeletedAt,
  46. FieldStatus,
  47. FieldFromwxid,
  48. FieldToid,
  49. FieldMsgtype,
  50. FieldMsg,
  51. FieldBatchNo,
  52. FieldCtype,
  53. FieldCc,
  54. FieldPhone,
  55. }
  56. // ValidColumn reports if the column name is valid (part of the table columns).
  57. func ValidColumn(column string) bool {
  58. for i := range Columns {
  59. if column == Columns[i] {
  60. return true
  61. }
  62. }
  63. return false
  64. }
  65. // Note that the variables below are initialized by the runtime
  66. // package on the initialization of the application. Therefore,
  67. // it should be imported in the main as follows:
  68. //
  69. // import _ "wechat-api/ent/runtime"
  70. var (
  71. Hooks [1]ent.Hook
  72. Interceptors [1]ent.Interceptor
  73. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  74. DefaultCreatedAt func() time.Time
  75. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  76. DefaultUpdatedAt func() time.Time
  77. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  78. UpdateDefaultUpdatedAt func() time.Time
  79. // DefaultCtype holds the default value on creation for the "ctype" field.
  80. DefaultCtype uint64
  81. // DefaultCc holds the default value on creation for the "cc" field.
  82. DefaultCc string
  83. // DefaultPhone holds the default value on creation for the "phone" field.
  84. DefaultPhone string
  85. )
  86. // OrderOption defines the ordering options for the Msg queries.
  87. type OrderOption func(*sql.Selector)
  88. // ByID orders the results by the id field.
  89. func ByID(opts ...sql.OrderTermOption) OrderOption {
  90. return sql.OrderByField(FieldID, opts...).ToFunc()
  91. }
  92. // ByCreatedAt orders the results by the created_at field.
  93. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  94. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  95. }
  96. // ByUpdatedAt orders the results by the updated_at field.
  97. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  98. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  99. }
  100. // ByDeletedAt orders the results by the deleted_at field.
  101. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  102. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  103. }
  104. // ByStatus orders the results by the status field.
  105. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  106. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  107. }
  108. // ByFromwxid orders the results by the fromwxid field.
  109. func ByFromwxid(opts ...sql.OrderTermOption) OrderOption {
  110. return sql.OrderByField(FieldFromwxid, opts...).ToFunc()
  111. }
  112. // ByToid orders the results by the toid field.
  113. func ByToid(opts ...sql.OrderTermOption) OrderOption {
  114. return sql.OrderByField(FieldToid, opts...).ToFunc()
  115. }
  116. // ByMsgtype orders the results by the msgtype field.
  117. func ByMsgtype(opts ...sql.OrderTermOption) OrderOption {
  118. return sql.OrderByField(FieldMsgtype, opts...).ToFunc()
  119. }
  120. // ByMsg orders the results by the msg field.
  121. func ByMsg(opts ...sql.OrderTermOption) OrderOption {
  122. return sql.OrderByField(FieldMsg, opts...).ToFunc()
  123. }
  124. // ByBatchNo orders the results by the batch_no field.
  125. func ByBatchNo(opts ...sql.OrderTermOption) OrderOption {
  126. return sql.OrderByField(FieldBatchNo, opts...).ToFunc()
  127. }
  128. // ByCtype orders the results by the ctype field.
  129. func ByCtype(opts ...sql.OrderTermOption) OrderOption {
  130. return sql.OrderByField(FieldCtype, opts...).ToFunc()
  131. }
  132. // ByCc orders the results by the cc field.
  133. func ByCc(opts ...sql.OrderTermOption) OrderOption {
  134. return sql.OrderByField(FieldCc, opts...).ToFunc()
  135. }
  136. // ByPhone orders the results by the phone field.
  137. func ByPhone(opts ...sql.OrderTermOption) OrderOption {
  138. return sql.OrderByField(FieldPhone, opts...).ToFunc()
  139. }