contact.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  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. // 机构 ID
  55. OrganizationID uint64 `json:"organization_id,omitempty"`
  56. // 内容类型:1-微信 2-whatsapp
  57. Ctype uint64 `json:"ctype,omitempty"`
  58. // 性别:1-男 2-女
  59. Csex int `json:"csex,omitempty"`
  60. // 年龄
  61. Cage int `json:"cage,omitempty"`
  62. // 姓名
  63. Cname string `json:"cname,omitempty"`
  64. // 地区
  65. Carea string `json:"carea,omitempty"`
  66. // 手机号
  67. Cmobile string `json:"cmobile,omitempty"`
  68. // 出生日期
  69. Cbirthday string `json:"cbirthday,omitempty"`
  70. // 出生地
  71. Cbirtharea string `json:"cbirtharea,omitempty"`
  72. // 身份证号
  73. CidcardNo string `json:"cidcard_no,omitempty"`
  74. // 称呼
  75. Ctitle string `json:"ctitle,omitempty"`
  76. // 国家区号
  77. Cc string `json:"cc,omitempty"`
  78. // 手机号
  79. Phone string `json:"phone,omitempty"`
  80. // Edges holds the relations/edges for other nodes in the graph.
  81. // The values are being populated by the ContactQuery when eager-loading is set.
  82. Edges ContactEdges `json:"edges"`
  83. selectValues sql.SelectValues
  84. }
  85. // ContactEdges holds the relations/edges for other nodes in the graph.
  86. type ContactEdges struct {
  87. // ContactRelationships holds the value of the contact_relationships edge.
  88. ContactRelationships []*LabelRelationship `json:"contact_relationships,omitempty"`
  89. // ContactMessages holds the value of the contact_messages edge.
  90. ContactMessages []*MessageRecords `json:"contact_messages,omitempty"`
  91. // loadedTypes holds the information for reporting if a
  92. // type was loaded (or requested) in eager-loading or not.
  93. loadedTypes [2]bool
  94. }
  95. // ContactRelationshipsOrErr returns the ContactRelationships value or an error if the edge
  96. // was not loaded in eager-loading.
  97. func (e ContactEdges) ContactRelationshipsOrErr() ([]*LabelRelationship, error) {
  98. if e.loadedTypes[0] {
  99. return e.ContactRelationships, nil
  100. }
  101. return nil, &NotLoadedError{edge: "contact_relationships"}
  102. }
  103. // ContactMessagesOrErr returns the ContactMessages value or an error if the edge
  104. // was not loaded in eager-loading.
  105. func (e ContactEdges) ContactMessagesOrErr() ([]*MessageRecords, error) {
  106. if e.loadedTypes[1] {
  107. return e.ContactMessages, nil
  108. }
  109. return nil, &NotLoadedError{edge: "contact_messages"}
  110. }
  111. // scanValues returns the types for scanning values from sql.Rows.
  112. func (*Contact) scanValues(columns []string) ([]any, error) {
  113. values := make([]any, len(columns))
  114. for i := range columns {
  115. switch columns[i] {
  116. case contact.FieldID, contact.FieldStatus, contact.FieldType, contact.FieldSex, contact.FieldDontseeit, contact.FieldDontseeme, contact.FieldOrganizationID, contact.FieldCtype, contact.FieldCsex, contact.FieldCage:
  117. values[i] = new(sql.NullInt64)
  118. case contact.FieldWxWxid, contact.FieldWxid, contact.FieldAccount, contact.FieldNickname, contact.FieldMarkname, contact.FieldHeadimg, contact.FieldStarrole, contact.FieldLag, contact.FieldGid, contact.FieldGname, contact.FieldV3, contact.FieldCname, contact.FieldCarea, contact.FieldCmobile, contact.FieldCbirthday, contact.FieldCbirtharea, contact.FieldCidcardNo, contact.FieldCtitle, contact.FieldCc, contact.FieldPhone:
  119. values[i] = new(sql.NullString)
  120. case contact.FieldCreatedAt, contact.FieldUpdatedAt, contact.FieldDeletedAt:
  121. values[i] = new(sql.NullTime)
  122. default:
  123. values[i] = new(sql.UnknownType)
  124. }
  125. }
  126. return values, nil
  127. }
  128. // assignValues assigns the values that were returned from sql.Rows (after scanning)
  129. // to the Contact fields.
  130. func (c *Contact) assignValues(columns []string, values []any) error {
  131. if m, n := len(values), len(columns); m < n {
  132. return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
  133. }
  134. for i := range columns {
  135. switch columns[i] {
  136. case contact.FieldID:
  137. value, ok := values[i].(*sql.NullInt64)
  138. if !ok {
  139. return fmt.Errorf("unexpected type %T for field id", value)
  140. }
  141. c.ID = uint64(value.Int64)
  142. case contact.FieldCreatedAt:
  143. if value, ok := values[i].(*sql.NullTime); !ok {
  144. return fmt.Errorf("unexpected type %T for field created_at", values[i])
  145. } else if value.Valid {
  146. c.CreatedAt = value.Time
  147. }
  148. case contact.FieldUpdatedAt:
  149. if value, ok := values[i].(*sql.NullTime); !ok {
  150. return fmt.Errorf("unexpected type %T for field updated_at", values[i])
  151. } else if value.Valid {
  152. c.UpdatedAt = value.Time
  153. }
  154. case contact.FieldStatus:
  155. if value, ok := values[i].(*sql.NullInt64); !ok {
  156. return fmt.Errorf("unexpected type %T for field status", values[i])
  157. } else if value.Valid {
  158. c.Status = uint8(value.Int64)
  159. }
  160. case contact.FieldDeletedAt:
  161. if value, ok := values[i].(*sql.NullTime); !ok {
  162. return fmt.Errorf("unexpected type %T for field deleted_at", values[i])
  163. } else if value.Valid {
  164. c.DeletedAt = value.Time
  165. }
  166. case contact.FieldWxWxid:
  167. if value, ok := values[i].(*sql.NullString); !ok {
  168. return fmt.Errorf("unexpected type %T for field wx_wxid", values[i])
  169. } else if value.Valid {
  170. c.WxWxid = value.String
  171. }
  172. case contact.FieldType:
  173. if value, ok := values[i].(*sql.NullInt64); !ok {
  174. return fmt.Errorf("unexpected type %T for field type", values[i])
  175. } else if value.Valid {
  176. c.Type = int(value.Int64)
  177. }
  178. case contact.FieldWxid:
  179. if value, ok := values[i].(*sql.NullString); !ok {
  180. return fmt.Errorf("unexpected type %T for field wxid", values[i])
  181. } else if value.Valid {
  182. c.Wxid = value.String
  183. }
  184. case contact.FieldAccount:
  185. if value, ok := values[i].(*sql.NullString); !ok {
  186. return fmt.Errorf("unexpected type %T for field account", values[i])
  187. } else if value.Valid {
  188. c.Account = value.String
  189. }
  190. case contact.FieldNickname:
  191. if value, ok := values[i].(*sql.NullString); !ok {
  192. return fmt.Errorf("unexpected type %T for field nickname", values[i])
  193. } else if value.Valid {
  194. c.Nickname = value.String
  195. }
  196. case contact.FieldMarkname:
  197. if value, ok := values[i].(*sql.NullString); !ok {
  198. return fmt.Errorf("unexpected type %T for field markname", values[i])
  199. } else if value.Valid {
  200. c.Markname = value.String
  201. }
  202. case contact.FieldHeadimg:
  203. if value, ok := values[i].(*sql.NullString); !ok {
  204. return fmt.Errorf("unexpected type %T for field headimg", values[i])
  205. } else if value.Valid {
  206. c.Headimg = value.String
  207. }
  208. case contact.FieldSex:
  209. if value, ok := values[i].(*sql.NullInt64); !ok {
  210. return fmt.Errorf("unexpected type %T for field sex", values[i])
  211. } else if value.Valid {
  212. c.Sex = int(value.Int64)
  213. }
  214. case contact.FieldStarrole:
  215. if value, ok := values[i].(*sql.NullString); !ok {
  216. return fmt.Errorf("unexpected type %T for field starrole", values[i])
  217. } else if value.Valid {
  218. c.Starrole = value.String
  219. }
  220. case contact.FieldDontseeit:
  221. if value, ok := values[i].(*sql.NullInt64); !ok {
  222. return fmt.Errorf("unexpected type %T for field dontseeit", values[i])
  223. } else if value.Valid {
  224. c.Dontseeit = int(value.Int64)
  225. }
  226. case contact.FieldDontseeme:
  227. if value, ok := values[i].(*sql.NullInt64); !ok {
  228. return fmt.Errorf("unexpected type %T for field dontseeme", values[i])
  229. } else if value.Valid {
  230. c.Dontseeme = int(value.Int64)
  231. }
  232. case contact.FieldLag:
  233. if value, ok := values[i].(*sql.NullString); !ok {
  234. return fmt.Errorf("unexpected type %T for field lag", values[i])
  235. } else if value.Valid {
  236. c.Lag = value.String
  237. }
  238. case contact.FieldGid:
  239. if value, ok := values[i].(*sql.NullString); !ok {
  240. return fmt.Errorf("unexpected type %T for field gid", values[i])
  241. } else if value.Valid {
  242. c.Gid = value.String
  243. }
  244. case contact.FieldGname:
  245. if value, ok := values[i].(*sql.NullString); !ok {
  246. return fmt.Errorf("unexpected type %T for field gname", values[i])
  247. } else if value.Valid {
  248. c.Gname = value.String
  249. }
  250. case contact.FieldV3:
  251. if value, ok := values[i].(*sql.NullString); !ok {
  252. return fmt.Errorf("unexpected type %T for field v3", values[i])
  253. } else if value.Valid {
  254. c.V3 = value.String
  255. }
  256. case contact.FieldOrganizationID:
  257. if value, ok := values[i].(*sql.NullInt64); !ok {
  258. return fmt.Errorf("unexpected type %T for field organization_id", values[i])
  259. } else if value.Valid {
  260. c.OrganizationID = uint64(value.Int64)
  261. }
  262. case contact.FieldCtype:
  263. if value, ok := values[i].(*sql.NullInt64); !ok {
  264. return fmt.Errorf("unexpected type %T for field ctype", values[i])
  265. } else if value.Valid {
  266. c.Ctype = uint64(value.Int64)
  267. }
  268. case contact.FieldCsex:
  269. if value, ok := values[i].(*sql.NullInt64); !ok {
  270. return fmt.Errorf("unexpected type %T for field csex", values[i])
  271. } else if value.Valid {
  272. c.Csex = int(value.Int64)
  273. }
  274. case contact.FieldCage:
  275. if value, ok := values[i].(*sql.NullInt64); !ok {
  276. return fmt.Errorf("unexpected type %T for field cage", values[i])
  277. } else if value.Valid {
  278. c.Cage = int(value.Int64)
  279. }
  280. case contact.FieldCname:
  281. if value, ok := values[i].(*sql.NullString); !ok {
  282. return fmt.Errorf("unexpected type %T for field cname", values[i])
  283. } else if value.Valid {
  284. c.Cname = value.String
  285. }
  286. case contact.FieldCarea:
  287. if value, ok := values[i].(*sql.NullString); !ok {
  288. return fmt.Errorf("unexpected type %T for field carea", values[i])
  289. } else if value.Valid {
  290. c.Carea = value.String
  291. }
  292. case contact.FieldCmobile:
  293. if value, ok := values[i].(*sql.NullString); !ok {
  294. return fmt.Errorf("unexpected type %T for field cmobile", values[i])
  295. } else if value.Valid {
  296. c.Cmobile = value.String
  297. }
  298. case contact.FieldCbirthday:
  299. if value, ok := values[i].(*sql.NullString); !ok {
  300. return fmt.Errorf("unexpected type %T for field cbirthday", values[i])
  301. } else if value.Valid {
  302. c.Cbirthday = value.String
  303. }
  304. case contact.FieldCbirtharea:
  305. if value, ok := values[i].(*sql.NullString); !ok {
  306. return fmt.Errorf("unexpected type %T for field cbirtharea", values[i])
  307. } else if value.Valid {
  308. c.Cbirtharea = value.String
  309. }
  310. case contact.FieldCidcardNo:
  311. if value, ok := values[i].(*sql.NullString); !ok {
  312. return fmt.Errorf("unexpected type %T for field cidcard_no", values[i])
  313. } else if value.Valid {
  314. c.CidcardNo = value.String
  315. }
  316. case contact.FieldCtitle:
  317. if value, ok := values[i].(*sql.NullString); !ok {
  318. return fmt.Errorf("unexpected type %T for field ctitle", values[i])
  319. } else if value.Valid {
  320. c.Ctitle = value.String
  321. }
  322. case contact.FieldCc:
  323. if value, ok := values[i].(*sql.NullString); !ok {
  324. return fmt.Errorf("unexpected type %T for field cc", values[i])
  325. } else if value.Valid {
  326. c.Cc = value.String
  327. }
  328. case contact.FieldPhone:
  329. if value, ok := values[i].(*sql.NullString); !ok {
  330. return fmt.Errorf("unexpected type %T for field phone", values[i])
  331. } else if value.Valid {
  332. c.Phone = value.String
  333. }
  334. default:
  335. c.selectValues.Set(columns[i], values[i])
  336. }
  337. }
  338. return nil
  339. }
  340. // Value returns the ent.Value that was dynamically selected and assigned to the Contact.
  341. // This includes values selected through modifiers, order, etc.
  342. func (c *Contact) Value(name string) (ent.Value, error) {
  343. return c.selectValues.Get(name)
  344. }
  345. // QueryContactRelationships queries the "contact_relationships" edge of the Contact entity.
  346. func (c *Contact) QueryContactRelationships() *LabelRelationshipQuery {
  347. return NewContactClient(c.config).QueryContactRelationships(c)
  348. }
  349. // QueryContactMessages queries the "contact_messages" edge of the Contact entity.
  350. func (c *Contact) QueryContactMessages() *MessageRecordsQuery {
  351. return NewContactClient(c.config).QueryContactMessages(c)
  352. }
  353. // Update returns a builder for updating this Contact.
  354. // Note that you need to call Contact.Unwrap() before calling this method if this Contact
  355. // was returned from a transaction, and the transaction was committed or rolled back.
  356. func (c *Contact) Update() *ContactUpdateOne {
  357. return NewContactClient(c.config).UpdateOne(c)
  358. }
  359. // Unwrap unwraps the Contact entity that was returned from a transaction after it was closed,
  360. // so that all future queries will be executed through the driver which created the transaction.
  361. func (c *Contact) Unwrap() *Contact {
  362. _tx, ok := c.config.driver.(*txDriver)
  363. if !ok {
  364. panic("ent: Contact is not a transactional entity")
  365. }
  366. c.config.driver = _tx.drv
  367. return c
  368. }
  369. // String implements the fmt.Stringer.
  370. func (c *Contact) String() string {
  371. var builder strings.Builder
  372. builder.WriteString("Contact(")
  373. builder.WriteString(fmt.Sprintf("id=%v, ", c.ID))
  374. builder.WriteString("created_at=")
  375. builder.WriteString(c.CreatedAt.Format(time.ANSIC))
  376. builder.WriteString(", ")
  377. builder.WriteString("updated_at=")
  378. builder.WriteString(c.UpdatedAt.Format(time.ANSIC))
  379. builder.WriteString(", ")
  380. builder.WriteString("status=")
  381. builder.WriteString(fmt.Sprintf("%v", c.Status))
  382. builder.WriteString(", ")
  383. builder.WriteString("deleted_at=")
  384. builder.WriteString(c.DeletedAt.Format(time.ANSIC))
  385. builder.WriteString(", ")
  386. builder.WriteString("wx_wxid=")
  387. builder.WriteString(c.WxWxid)
  388. builder.WriteString(", ")
  389. builder.WriteString("type=")
  390. builder.WriteString(fmt.Sprintf("%v", c.Type))
  391. builder.WriteString(", ")
  392. builder.WriteString("wxid=")
  393. builder.WriteString(c.Wxid)
  394. builder.WriteString(", ")
  395. builder.WriteString("account=")
  396. builder.WriteString(c.Account)
  397. builder.WriteString(", ")
  398. builder.WriteString("nickname=")
  399. builder.WriteString(c.Nickname)
  400. builder.WriteString(", ")
  401. builder.WriteString("markname=")
  402. builder.WriteString(c.Markname)
  403. builder.WriteString(", ")
  404. builder.WriteString("headimg=")
  405. builder.WriteString(c.Headimg)
  406. builder.WriteString(", ")
  407. builder.WriteString("sex=")
  408. builder.WriteString(fmt.Sprintf("%v", c.Sex))
  409. builder.WriteString(", ")
  410. builder.WriteString("starrole=")
  411. builder.WriteString(c.Starrole)
  412. builder.WriteString(", ")
  413. builder.WriteString("dontseeit=")
  414. builder.WriteString(fmt.Sprintf("%v", c.Dontseeit))
  415. builder.WriteString(", ")
  416. builder.WriteString("dontseeme=")
  417. builder.WriteString(fmt.Sprintf("%v", c.Dontseeme))
  418. builder.WriteString(", ")
  419. builder.WriteString("lag=")
  420. builder.WriteString(c.Lag)
  421. builder.WriteString(", ")
  422. builder.WriteString("gid=")
  423. builder.WriteString(c.Gid)
  424. builder.WriteString(", ")
  425. builder.WriteString("gname=")
  426. builder.WriteString(c.Gname)
  427. builder.WriteString(", ")
  428. builder.WriteString("v3=")
  429. builder.WriteString(c.V3)
  430. builder.WriteString(", ")
  431. builder.WriteString("organization_id=")
  432. builder.WriteString(fmt.Sprintf("%v", c.OrganizationID))
  433. builder.WriteString(", ")
  434. builder.WriteString("ctype=")
  435. builder.WriteString(fmt.Sprintf("%v", c.Ctype))
  436. builder.WriteString(", ")
  437. builder.WriteString("csex=")
  438. builder.WriteString(fmt.Sprintf("%v", c.Csex))
  439. builder.WriteString(", ")
  440. builder.WriteString("cage=")
  441. builder.WriteString(fmt.Sprintf("%v", c.Cage))
  442. builder.WriteString(", ")
  443. builder.WriteString("cname=")
  444. builder.WriteString(c.Cname)
  445. builder.WriteString(", ")
  446. builder.WriteString("carea=")
  447. builder.WriteString(c.Carea)
  448. builder.WriteString(", ")
  449. builder.WriteString("cmobile=")
  450. builder.WriteString(c.Cmobile)
  451. builder.WriteString(", ")
  452. builder.WriteString("cbirthday=")
  453. builder.WriteString(c.Cbirthday)
  454. builder.WriteString(", ")
  455. builder.WriteString("cbirtharea=")
  456. builder.WriteString(c.Cbirtharea)
  457. builder.WriteString(", ")
  458. builder.WriteString("cidcard_no=")
  459. builder.WriteString(c.CidcardNo)
  460. builder.WriteString(", ")
  461. builder.WriteString("ctitle=")
  462. builder.WriteString(c.Ctitle)
  463. builder.WriteString(", ")
  464. builder.WriteString("cc=")
  465. builder.WriteString(c.Cc)
  466. builder.WriteString(", ")
  467. builder.WriteString("phone=")
  468. builder.WriteString(c.Phone)
  469. builder.WriteByte(')')
  470. return builder.String()
  471. }
  472. // Contacts is a parsable slice of Contact.
  473. type Contacts []*Contact