contact.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "fmt"
  5. "strings"
  6. "time"
  7. "wechat-api/ent/contact"
  8. "entgo.io/ent"
  9. "entgo.io/ent/dialect/sql"
  10. )
  11. // Contact is the model entity for the Contact schema.
  12. type Contact struct {
  13. config `json:"-"`
  14. // ID of the ent.
  15. ID uint64 `json:"id,omitempty"`
  16. // Create Time | 创建日期
  17. CreatedAt time.Time `json:"created_at,omitempty"`
  18. // Update Time | 修改日期
  19. UpdatedAt time.Time `json:"updated_at,omitempty"`
  20. // Status 1: normal 2: ban | 状态 1 正常 2 禁用
  21. Status uint8 `json:"status,omitempty"`
  22. // Delete Time | 删除日期
  23. DeletedAt time.Time `json:"deleted_at,omitempty"`
  24. // 属主微信id
  25. WxWxid string `json:"wx_wxid,omitempty"`
  26. // 联系人类型:1好友,2群组,3公众号,4企业微信联系人
  27. Type int `json:"type,omitempty"`
  28. // 微信id 公众号微信ID
  29. Wxid string `json:"wxid,omitempty"`
  30. // 微信账号
  31. Account string `json:"account,omitempty"`
  32. // 微信昵称 群备注名称
  33. Nickname string `json:"nickname,omitempty"`
  34. // 备注名
  35. Markname string `json:"markname,omitempty"`
  36. // 头像
  37. Headimg string `json:"headimg,omitempty"`
  38. // 性别 0未知 1男 2女
  39. Sex int `json:"sex,omitempty"`
  40. // 星标 65/67=星标 1/3=未星标
  41. Starrole string `json:"starrole,omitempty"`
  42. // 不让他看我的朋友圈 0可以看 1不让看
  43. Dontseeit int `json:"dontseeit,omitempty"`
  44. // 不看他的朋友圈 0可以看 1不看 1=开启了不看他 128/129=仅聊天
  45. Dontseeme int `json:"dontseeme,omitempty"`
  46. // 所属标签id清单,多开会用逗号隔开
  47. Lag string `json:"lag,omitempty"`
  48. // 群组id
  49. Gid string `json:"gid,omitempty"`
  50. // 群组名称
  51. Gname string `json:"gname,omitempty"`
  52. // v3数据
  53. V3 string `json:"v3,omitempty"`
  54. // Edges holds the relations/edges for other nodes in the graph.
  55. // The values are being populated by the ContactQuery when eager-loading is set.
  56. Edges ContactEdges `json:"edges"`
  57. selectValues sql.SelectValues
  58. }
  59. // ContactEdges holds the relations/edges for other nodes in the graph.
  60. type ContactEdges struct {
  61. // ContactRelationships holds the value of the contact_relationships edge.
  62. ContactRelationships []*LabelRelationship `json:"contact_relationships,omitempty"`
  63. // loadedTypes holds the information for reporting if a
  64. // type was loaded (or requested) in eager-loading or not.
  65. loadedTypes [1]bool
  66. }
  67. // ContactRelationshipsOrErr returns the ContactRelationships value or an error if the edge
  68. // was not loaded in eager-loading.
  69. func (e ContactEdges) ContactRelationshipsOrErr() ([]*LabelRelationship, error) {
  70. if e.loadedTypes[0] {
  71. return e.ContactRelationships, nil
  72. }
  73. return nil, &NotLoadedError{edge: "contact_relationships"}
  74. }
  75. // scanValues returns the types for scanning values from sql.Rows.
  76. func (*Contact) scanValues(columns []string) ([]any, error) {
  77. values := make([]any, len(columns))
  78. for i := range columns {
  79. switch columns[i] {
  80. case contact.FieldID, contact.FieldStatus, contact.FieldType, contact.FieldSex, contact.FieldDontseeit, contact.FieldDontseeme:
  81. values[i] = new(sql.NullInt64)
  82. case contact.FieldWxWxid, contact.FieldWxid, contact.FieldAccount, contact.FieldNickname, contact.FieldMarkname, contact.FieldHeadimg, contact.FieldStarrole, contact.FieldLag, contact.FieldGid, contact.FieldGname, contact.FieldV3:
  83. values[i] = new(sql.NullString)
  84. case contact.FieldCreatedAt, contact.FieldUpdatedAt, contact.FieldDeletedAt:
  85. values[i] = new(sql.NullTime)
  86. default:
  87. values[i] = new(sql.UnknownType)
  88. }
  89. }
  90. return values, nil
  91. }
  92. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  93. // to the Contact fields.
  94. func (c *Contact) assignValues(columns []string, values []any) error {
  95. if m, n := len(values), len(columns); m < n {
  96. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  97. }
  98. for i := range columns {
  99. switch columns[i] {
  100. case contact.FieldID:
  101. value, ok := values[i].(*sql.NullInt64)
  102. if !ok {
  103. return fmt.Errorf("unexpected type %T for field id", value)
  104. }
  105. c.ID = uint64(value.Int64)
  106. case contact.FieldCreatedAt:
  107. if value, ok := values[i].(*sql.NullTime); !ok {
  108. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  109. } else if value.Valid {
  110. c.CreatedAt = value.Time
  111. }
  112. case contact.FieldUpdatedAt:
  113. if value, ok := values[i].(*sql.NullTime); !ok {
  114. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  115. } else if value.Valid {
  116. c.UpdatedAt = value.Time
  117. }
  118. case contact.FieldStatus:
  119. if value, ok := values[i].(*sql.NullInt64); !ok {
  120. return fmt.Errorf("unexpected type %T for field status", values[i])
  121. } else if value.Valid {
  122. c.Status = uint8(value.Int64)
  123. }
  124. case contact.FieldDeletedAt:
  125. if value, ok := values[i].(*sql.NullTime); !ok {
  126. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  127. } else if value.Valid {
  128. c.DeletedAt = value.Time
  129. }
  130. case contact.FieldWxWxid:
  131. if value, ok := values[i].(*sql.NullString); !ok {
  132. return fmt.Errorf("unexpected type %T for field wx_wxid", values[i])
  133. } else if value.Valid {
  134. c.WxWxid = value.String
  135. }
  136. case contact.FieldType:
  137. if value, ok := values[i].(*sql.NullInt64); !ok {
  138. return fmt.Errorf("unexpected type %T for field type", values[i])
  139. } else if value.Valid {
  140. c.Type = int(value.Int64)
  141. }
  142. case contact.FieldWxid:
  143. if value, ok := values[i].(*sql.NullString); !ok {
  144. return fmt.Errorf("unexpected type %T for field wxid", values[i])
  145. } else if value.Valid {
  146. c.Wxid = value.String
  147. }
  148. case contact.FieldAccount:
  149. if value, ok := values[i].(*sql.NullString); !ok {
  150. return fmt.Errorf("unexpected type %T for field account", values[i])
  151. } else if value.Valid {
  152. c.Account = value.String
  153. }
  154. case contact.FieldNickname:
  155. if value, ok := values[i].(*sql.NullString); !ok {
  156. return fmt.Errorf("unexpected type %T for field nickname", values[i])
  157. } else if value.Valid {
  158. c.Nickname = value.String
  159. }
  160. case contact.FieldMarkname:
  161. if value, ok := values[i].(*sql.NullString); !ok {
  162. return fmt.Errorf("unexpected type %T for field markname", values[i])
  163. } else if value.Valid {
  164. c.Markname = value.String
  165. }
  166. case contact.FieldHeadimg:
  167. if value, ok := values[i].(*sql.NullString); !ok {
  168. return fmt.Errorf("unexpected type %T for field headimg", values[i])
  169. } else if value.Valid {
  170. c.Headimg = value.String
  171. }
  172. case contact.FieldSex:
  173. if value, ok := values[i].(*sql.NullInt64); !ok {
  174. return fmt.Errorf("unexpected type %T for field sex", values[i])
  175. } else if value.Valid {
  176. c.Sex = int(value.Int64)
  177. }
  178. case contact.FieldStarrole:
  179. if value, ok := values[i].(*sql.NullString); !ok {
  180. return fmt.Errorf("unexpected type %T for field starrole", values[i])
  181. } else if value.Valid {
  182. c.Starrole = value.String
  183. }
  184. case contact.FieldDontseeit:
  185. if value, ok := values[i].(*sql.NullInt64); !ok {
  186. return fmt.Errorf("unexpected type %T for field dontseeit", values[i])
  187. } else if value.Valid {
  188. c.Dontseeit = int(value.Int64)
  189. }
  190. case contact.FieldDontseeme:
  191. if value, ok := values[i].(*sql.NullInt64); !ok {
  192. return fmt.Errorf("unexpected type %T for field dontseeme", values[i])
  193. } else if value.Valid {
  194. c.Dontseeme = int(value.Int64)
  195. }
  196. case contact.FieldLag:
  197. if value, ok := values[i].(*sql.NullString); !ok {
  198. return fmt.Errorf("unexpected type %T for field lag", values[i])
  199. } else if value.Valid {
  200. c.Lag = value.String
  201. }
  202. case contact.FieldGid:
  203. if value, ok := values[i].(*sql.NullString); !ok {
  204. return fmt.Errorf("unexpected type %T for field gid", values[i])
  205. } else if value.Valid {
  206. c.Gid = value.String
  207. }
  208. case contact.FieldGname:
  209. if value, ok := values[i].(*sql.NullString); !ok {
  210. return fmt.Errorf("unexpected type %T for field gname", values[i])
  211. } else if value.Valid {
  212. c.Gname = value.String
  213. }
  214. case contact.FieldV3:
  215. if value, ok := values[i].(*sql.NullString); !ok {
  216. return fmt.Errorf("unexpected type %T for field v3", values[i])
  217. } else if value.Valid {
  218. c.V3 = value.String
  219. }
  220. default:
  221. c.selectValues.Set(columns[i], values[i])
  222. }
  223. }
  224. return nil
  225. }
  226. // Value returns the ent.Value that was dynamically selected and assigned to the Contact.
  227. // This includes values selected through modifiers, order, etc.
  228. func (c *Contact) Value(name string) (ent.Value, error) {
  229. return c.selectValues.Get(name)
  230. }
  231. // QueryContactRelationships queries the "contact_relationships" edge of the Contact entity.
  232. func (c *Contact) QueryContactRelationships() *LabelRelationshipQuery {
  233. return NewContactClient(c.config).QueryContactRelationships(c)
  234. }
  235. // Update returns a builder for updating this Contact.
  236. // Note that you need to call Contact.Unwrap() before calling this method if this Contact
  237. // was returned from a transaction, and the transaction was committed or rolled back.
  238. func (c *Contact) Update() *ContactUpdateOne {
  239. return NewContactClient(c.config).UpdateOne(c)
  240. }
  241. // Unwrap unwraps the Contact entity that was returned from a transaction after it was closed,
  242. // so that all future queries will be executed through the driver which created the transaction.
  243. func (c *Contact) Unwrap() *Contact {
  244. _tx, ok := c.config.driver.(*txDriver)
  245. if !ok {
  246. panic("ent: Contact is not a transactional entity")
  247. }
  248. c.config.driver = _tx.drv
  249. return c
  250. }
  251. // String implements the fmt.Stringer.
  252. func (c *Contact) String() string {
  253. var builder strings.Builder
  254. builder.WriteString("Contact(")
  255. builder.WriteString(fmt.Sprintf("id=%v, ", c.ID))
  256. builder.WriteString("created_at=")
  257. builder.WriteString(c.CreatedAt.Format(time.ANSIC))
  258. builder.WriteString(", ")
  259. builder.WriteString("updated_at=")
  260. builder.WriteString(c.UpdatedAt.Format(time.ANSIC))
  261. builder.WriteString(", ")
  262. builder.WriteString("status=")
  263. builder.WriteString(fmt.Sprintf("%v", c.Status))
  264. builder.WriteString(", ")
  265. builder.WriteString("deleted_at=")
  266. builder.WriteString(c.DeletedAt.Format(time.ANSIC))
  267. builder.WriteString(", ")
  268. builder.WriteString("wx_wxid=")
  269. builder.WriteString(c.WxWxid)
  270. builder.WriteString(", ")
  271. builder.WriteString("type=")
  272. builder.WriteString(fmt.Sprintf("%v", c.Type))
  273. builder.WriteString(", ")
  274. builder.WriteString("wxid=")
  275. builder.WriteString(c.Wxid)
  276. builder.WriteString(", ")
  277. builder.WriteString("account=")
  278. builder.WriteString(c.Account)
  279. builder.WriteString(", ")
  280. builder.WriteString("nickname=")
  281. builder.WriteString(c.Nickname)
  282. builder.WriteString(", ")
  283. builder.WriteString("markname=")
  284. builder.WriteString(c.Markname)
  285. builder.WriteString(", ")
  286. builder.WriteString("headimg=")
  287. builder.WriteString(c.Headimg)
  288. builder.WriteString(", ")
  289. builder.WriteString("sex=")
  290. builder.WriteString(fmt.Sprintf("%v", c.Sex))
  291. builder.WriteString(", ")
  292. builder.WriteString("starrole=")
  293. builder.WriteString(c.Starrole)
  294. builder.WriteString(", ")
  295. builder.WriteString("dontseeit=")
  296. builder.WriteString(fmt.Sprintf("%v", c.Dontseeit))
  297. builder.WriteString(", ")
  298. builder.WriteString("dontseeme=")
  299. builder.WriteString(fmt.Sprintf("%v", c.Dontseeme))
  300. builder.WriteString(", ")
  301. builder.WriteString("lag=")
  302. builder.WriteString(c.Lag)
  303. builder.WriteString(", ")
  304. builder.WriteString("gid=")
  305. builder.WriteString(c.Gid)
  306. builder.WriteString(", ")
  307. builder.WriteString("gname=")
  308. builder.WriteString(c.Gname)
  309. builder.WriteString(", ")
  310. builder.WriteString("v3=")
  311. builder.WriteString(c.V3)
  312. builder.WriteByte(')')
  313. return builder.String()
  314. }
  315. // Contacts is a parsable slice of Contact.
  316. type Contacts []*Contact