contact.go 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. // Code generated by ent, DO NOT EDIT.
  2. package contact
  3. import (
  4. "time"
  5. "entgo.io/ent"
  6. "entgo.io/ent/dialect/sql"
  7. "entgo.io/ent/dialect/sql/sqlgraph"
  8. )
  9. const (
  10. // Label holds the string label denoting the contact type in the database.
  11. Label = "contact"
  12. // FieldID holds the string denoting the id field in the database.
  13. FieldID = "id"
  14. // FieldCreatedAt holds the string denoting the created_at field in the database.
  15. FieldCreatedAt = "created_at"
  16. // FieldUpdatedAt holds the string denoting the updated_at field in the database.
  17. FieldUpdatedAt = "updated_at"
  18. // FieldStatus holds the string denoting the status field in the database.
  19. FieldStatus = "status"
  20. // FieldDeletedAt holds the string denoting the deleted_at field in the database.
  21. FieldDeletedAt = "deleted_at"
  22. // FieldWxWxid holds the string denoting the wx_wxid field in the database.
  23. FieldWxWxid = "wx_wxid"
  24. // FieldType holds the string denoting the type field in the database.
  25. FieldType = "type"
  26. // FieldWxid holds the string denoting the wxid field in the database.
  27. FieldWxid = "wxid"
  28. // FieldAccount holds the string denoting the account field in the database.
  29. FieldAccount = "account"
  30. // FieldNickname holds the string denoting the nickname field in the database.
  31. FieldNickname = "nickname"
  32. // FieldMarkname holds the string denoting the markname field in the database.
  33. FieldMarkname = "markname"
  34. // FieldHeadimg holds the string denoting the headimg field in the database.
  35. FieldHeadimg = "headimg"
  36. // FieldSex holds the string denoting the sex field in the database.
  37. FieldSex = "sex"
  38. // FieldStarrole holds the string denoting the starrole field in the database.
  39. FieldStarrole = "starrole"
  40. // FieldDontseeit holds the string denoting the dontseeit field in the database.
  41. FieldDontseeit = "dontseeit"
  42. // FieldDontseeme holds the string denoting the dontseeme field in the database.
  43. FieldDontseeme = "dontseeme"
  44. // FieldLag holds the string denoting the lag field in the database.
  45. FieldLag = "lag"
  46. // FieldGid holds the string denoting the gid field in the database.
  47. FieldGid = "gid"
  48. // FieldGname holds the string denoting the gname field in the database.
  49. FieldGname = "gname"
  50. // FieldV3 holds the string denoting the v3 field in the database.
  51. FieldV3 = "v3"
  52. // EdgeContactRelationships holds the string denoting the contact_relationships edge name in mutations.
  53. EdgeContactRelationships = "contact_relationships"
  54. // Table holds the table name of the contact in the database.
  55. Table = "contact"
  56. // ContactRelationshipsTable is the table that holds the contact_relationships relation/edge.
  57. ContactRelationshipsTable = "label_relationship"
  58. // ContactRelationshipsInverseTable is the table name for the LabelRelationship entity.
  59. // It exists in this package in order to avoid circular dependency with the "labelrelationship" package.
  60. ContactRelationshipsInverseTable = "label_relationship"
  61. // ContactRelationshipsColumn is the table column denoting the contact_relationships relation/edge.
  62. ContactRelationshipsColumn = "contact_id"
  63. )
  64. // Columns holds all SQL columns for contact fields.
  65. var Columns = []string{
  66. FieldID,
  67. FieldCreatedAt,
  68. FieldUpdatedAt,
  69. FieldStatus,
  70. FieldDeletedAt,
  71. FieldWxWxid,
  72. FieldType,
  73. FieldWxid,
  74. FieldAccount,
  75. FieldNickname,
  76. FieldMarkname,
  77. FieldHeadimg,
  78. FieldSex,
  79. FieldStarrole,
  80. FieldDontseeit,
  81. FieldDontseeme,
  82. FieldLag,
  83. FieldGid,
  84. FieldGname,
  85. FieldV3,
  86. }
  87. // ValidColumn reports if the column name is valid (part of the table columns).
  88. func ValidColumn(column string) bool {
  89. for i := range Columns {
  90. if column == Columns[i] {
  91. return true
  92. }
  93. }
  94. return false
  95. }
  96. // Note that the variables below are initialized by the runtime
  97. // package on the initialization of the application. Therefore,
  98. // it should be imported in the main as follows:
  99. //
  100. // import _ "wechat-api/ent/runtime"
  101. var (
  102. Hooks [1]ent.Hook
  103. Interceptors [1]ent.Interceptor
  104. // DefaultCreatedAt holds the default value on creation for the "created_at" field.
  105. DefaultCreatedAt func() time.Time
  106. // DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
  107. DefaultUpdatedAt func() time.Time
  108. // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
  109. UpdateDefaultUpdatedAt func() time.Time
  110. // DefaultStatus holds the default value on creation for the "status" field.
  111. DefaultStatus uint8
  112. // DefaultWxWxid holds the default value on creation for the "wx_wxid" field.
  113. DefaultWxWxid string
  114. // DefaultType holds the default value on creation for the "type" field.
  115. DefaultType int
  116. // DefaultWxid holds the default value on creation for the "wxid" field.
  117. DefaultWxid string
  118. // DefaultAccount holds the default value on creation for the "account" field.
  119. DefaultAccount string
  120. // DefaultNickname holds the default value on creation for the "nickname" field.
  121. DefaultNickname string
  122. // DefaultMarkname holds the default value on creation for the "markname" field.
  123. DefaultMarkname string
  124. // DefaultHeadimg holds the default value on creation for the "headimg" field.
  125. DefaultHeadimg string
  126. // DefaultSex holds the default value on creation for the "sex" field.
  127. DefaultSex int
  128. // DefaultStarrole holds the default value on creation for the "starrole" field.
  129. DefaultStarrole string
  130. // DefaultDontseeit holds the default value on creation for the "dontseeit" field.
  131. DefaultDontseeit int
  132. // DefaultDontseeme holds the default value on creation for the "dontseeme" field.
  133. DefaultDontseeme int
  134. // DefaultLag holds the default value on creation for the "lag" field.
  135. DefaultLag string
  136. // DefaultGid holds the default value on creation for the "gid" field.
  137. DefaultGid string
  138. // DefaultGname holds the default value on creation for the "gname" field.
  139. DefaultGname string
  140. // DefaultV3 holds the default value on creation for the "v3" field.
  141. DefaultV3 string
  142. )
  143. // OrderOption defines the ordering options for the Contact queries.
  144. type OrderOption func(*sql.Selector)
  145. // ByID orders the results by the id field.
  146. func ByID(opts ...sql.OrderTermOption) OrderOption {
  147. return sql.OrderByField(FieldID, opts...).ToFunc()
  148. }
  149. // ByCreatedAt orders the results by the created_at field.
  150. func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
  151. return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
  152. }
  153. // ByUpdatedAt orders the results by the updated_at field.
  154. func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
  155. return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
  156. }
  157. // ByStatus orders the results by the status field.
  158. func ByStatus(opts ...sql.OrderTermOption) OrderOption {
  159. return sql.OrderByField(FieldStatus, opts...).ToFunc()
  160. }
  161. // ByDeletedAt orders the results by the deleted_at field.
  162. func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption {
  163. return sql.OrderByField(FieldDeletedAt, opts...).ToFunc()
  164. }
  165. // ByWxWxid orders the results by the wx_wxid field.
  166. func ByWxWxid(opts ...sql.OrderTermOption) OrderOption {
  167. return sql.OrderByField(FieldWxWxid, opts...).ToFunc()
  168. }
  169. // ByType orders the results by the type field.
  170. func ByType(opts ...sql.OrderTermOption) OrderOption {
  171. return sql.OrderByField(FieldType, opts...).ToFunc()
  172. }
  173. // ByWxid orders the results by the wxid field.
  174. func ByWxid(opts ...sql.OrderTermOption) OrderOption {
  175. return sql.OrderByField(FieldWxid, opts...).ToFunc()
  176. }
  177. // ByAccount orders the results by the account field.
  178. func ByAccount(opts ...sql.OrderTermOption) OrderOption {
  179. return sql.OrderByField(FieldAccount, opts...).ToFunc()
  180. }
  181. // ByNickname orders the results by the nickname field.
  182. func ByNickname(opts ...sql.OrderTermOption) OrderOption {
  183. return sql.OrderByField(FieldNickname, opts...).ToFunc()
  184. }
  185. // ByMarkname orders the results by the markname field.
  186. func ByMarkname(opts ...sql.OrderTermOption) OrderOption {
  187. return sql.OrderByField(FieldMarkname, opts...).ToFunc()
  188. }
  189. // ByHeadimg orders the results by the headimg field.
  190. func ByHeadimg(opts ...sql.OrderTermOption) OrderOption {
  191. return sql.OrderByField(FieldHeadimg, opts...).ToFunc()
  192. }
  193. // BySex orders the results by the sex field.
  194. func BySex(opts ...sql.OrderTermOption) OrderOption {
  195. return sql.OrderByField(FieldSex, opts...).ToFunc()
  196. }
  197. // ByStarrole orders the results by the starrole field.
  198. func ByStarrole(opts ...sql.OrderTermOption) OrderOption {
  199. return sql.OrderByField(FieldStarrole, opts...).ToFunc()
  200. }
  201. // ByDontseeit orders the results by the dontseeit field.
  202. func ByDontseeit(opts ...sql.OrderTermOption) OrderOption {
  203. return sql.OrderByField(FieldDontseeit, opts...).ToFunc()
  204. }
  205. // ByDontseeme orders the results by the dontseeme field.
  206. func ByDontseeme(opts ...sql.OrderTermOption) OrderOption {
  207. return sql.OrderByField(FieldDontseeme, opts...).ToFunc()
  208. }
  209. // ByLag orders the results by the lag field.
  210. func ByLag(opts ...sql.OrderTermOption) OrderOption {
  211. return sql.OrderByField(FieldLag, opts...).ToFunc()
  212. }
  213. // ByGid orders the results by the gid field.
  214. func ByGid(opts ...sql.OrderTermOption) OrderOption {
  215. return sql.OrderByField(FieldGid, opts...).ToFunc()
  216. }
  217. // ByGname orders the results by the gname field.
  218. func ByGname(opts ...sql.OrderTermOption) OrderOption {
  219. return sql.OrderByField(FieldGname, opts...).ToFunc()
  220. }
  221. // ByV3 orders the results by the v3 field.
  222. func ByV3(opts ...sql.OrderTermOption) OrderOption {
  223. return sql.OrderByField(FieldV3, opts...).ToFunc()
  224. }
  225. // ByContactRelationshipsCount orders the results by contact_relationships count.
  226. func ByContactRelationshipsCount(opts ...sql.OrderTermOption) OrderOption {
  227. return func(s *sql.Selector) {
  228. sqlgraph.OrderByNeighborsCount(s, newContactRelationshipsStep(), opts...)
  229. }
  230. }
  231. // ByContactRelationships orders the results by contact_relationships terms.
  232. func ByContactRelationships(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
  233. return func(s *sql.Selector) {
  234. sqlgraph.OrderByNeighborTerms(s, newContactRelationshipsStep(), append([]sql.OrderTerm{term}, terms...)...)
  235. }
  236. }
  237. func newContactRelationshipsStep() *sqlgraph.Step {
  238. return sqlgraph.NewStep(
  239. sqlgraph.From(Table, FieldID),
  240. sqlgraph.To(ContactRelationshipsInverseTable, FieldID),
  241. sqlgraph.Edge(sqlgraph.O2M, false, ContactRelationshipsTable, ContactRelationshipsColumn),
  242. )
  243. }