wxcarduser.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. // Code generated by ent, DO NOT EDIT.
  2. package wxcarduser
  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 wxcarduser type in the database.
  10. Label = "wx_card_user"
  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. // FieldWxid holds the string denoting the wxid field in the database.
  20. FieldWxid = "wxid"
  21. // FieldAccount holds the string denoting the account field in the database.
  22. FieldAccount = "account"
  23. // FieldAvatar holds the string denoting the avatar field in the database.
  24. FieldAvatar = "avatar"
  25. // FieldNickname holds the string denoting the nickname field in the database.
  26. FieldNickname = "nickname"
  27. // FieldRemark holds the string denoting the remark field in the database.
  28. FieldRemark = "remark"
  29. // FieldPhone holds the string denoting the phone field in the database.
  30. FieldPhone = "phone"
  31. // FieldOpenID holds the string denoting the open_id field in the database.
  32. FieldOpenID = "open_id"
  33. // FieldUnionID holds the string denoting the union_id field in the database.
  34. FieldUnionID = "union_id"
  35. // FieldSessionKey holds the string denoting the session_key field in the database.
  36. FieldSessionKey = "session_key"
  37. // Table holds the table name of the wxcarduser in the database.
  38. Table = "wx_card_user"
  39. )
  40. // Columns holds all SQL columns for wxcarduser fields.
  41. var Columns = []string{
  42. FieldID,
  43. FieldCreatedAt,
  44. FieldUpdatedAt,
  45. FieldDeletedAt,
  46. FieldWxid,
  47. FieldAccount,
  48. FieldAvatar,
  49. FieldNickname,
  50. FieldRemark,
  51. FieldPhone,
  52. FieldOpenID,
  53. FieldUnionID,
  54. FieldSessionKey,
  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. // DefaultWxid holds the default value on creation for the "wxid" field.
  80. DefaultWxid string
  81. // DefaultAccount holds the default value on creation for the "account" field.
  82. DefaultAccount string
  83. // DefaultAvatar holds the default value on creation for the "avatar" field.
  84. DefaultAvatar string
  85. // DefaultNickname holds the default value on creation for the "nickname" field.
  86. DefaultNickname string
  87. // DefaultRemark holds the default value on creation for the "remark" field.
  88. DefaultRemark string
  89. // DefaultPhone holds the default value on creation for the "phone" field.
  90. DefaultPhone string
  91. // DefaultOpenID holds the default value on creation for the "open_id" field.
  92. DefaultOpenID string
  93. // DefaultUnionID holds the default value on creation for the "union_id" field.
  94. DefaultUnionID string
  95. // DefaultSessionKey holds the default value on creation for the "session_key" field.
  96. DefaultSessionKey string
  97. )
  98. // OrderOption defines the ordering options for the WxCardUser queries.
  99. type OrderOption func(*sql.Selector)
  100. // ByID orders the results by the id field.
  101. func ByID(opts ...sql.OrderTermOption) OrderOption {
  102. return sql.OrderByField(FieldID, opts...).ToFunc()
  103. }
  104. // ByCreatedAt orders the results by the created_at field.
  105. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  106. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  107. }
  108. // ByUpdatedAt orders the results by the updated_at field.
  109. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  110. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  111. }
  112. // ByDeletedAt orders the results by the deleted_at field.
  113. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  114. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  115. }
  116. // ByWxid orders the results by the wxid field.
  117. func ByWxid(opts ...sql.OrderTermOption) OrderOption {
  118. return sql.OrderByField(FieldWxid, opts...).ToFunc()
  119. }
  120. // ByAccount orders the results by the account field.
  121. func ByAccount(opts ...sql.OrderTermOption) OrderOption {
  122. return sql.OrderByField(FieldAccount, opts...).ToFunc()
  123. }
  124. // ByAvatar orders the results by the avatar field.
  125. func ByAvatar(opts ...sql.OrderTermOption) OrderOption {
  126. return sql.OrderByField(FieldAvatar, opts...).ToFunc()
  127. }
  128. // ByNickname orders the results by the nickname field.
  129. func ByNickname(opts ...sql.OrderTermOption) OrderOption {
  130. return sql.OrderByField(FieldNickname, opts...).ToFunc()
  131. }
  132. // ByRemark orders the results by the remark field.
  133. func ByRemark(opts ...sql.OrderTermOption) OrderOption {
  134. return sql.OrderByField(FieldRemark, 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. }
  140. // ByOpenID orders the results by the open_id field.
  141. func ByOpenID(opts ...sql.OrderTermOption) OrderOption {
  142. return sql.OrderByField(FieldOpenID, opts...).ToFunc()
  143. }
  144. // ByUnionID orders the results by the union_id field.
  145. func ByUnionID(opts ...sql.OrderTermOption) OrderOption {
  146. return sql.OrderByField(FieldUnionID, opts...).ToFunc()
  147. }
  148. // BySessionKey orders the results by the session_key field.
  149. func BySessionKey(opts ...sql.OrderTermOption) OrderOption {
  150. return sql.OrderByField(FieldSessionKey, opts...).ToFunc()
  151. }