messagerecords_update.go 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "time"
  8. "wechat-api/ent/messagerecords"
  9. "wechat-api/ent/predicate"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/schema/field"
  13. )
  14. // MessageRecordsUpdate is the builder for updating MessageRecords entities.
  15. type MessageRecordsUpdate struct {
  16. config
  17. hooks []Hook
  18. mutation *MessageRecordsMutation
  19. }
  20. // Where appends a list predicates to the MessageRecordsUpdate builder.
  21. func (mru *MessageRecordsUpdate) Where(ps ...predicate.MessageRecords) *MessageRecordsUpdate {
  22. mru.mutation.Where(ps...)
  23. return mru
  24. }
  25. // SetUpdatedAt sets the "updated_at" field.
  26. func (mru *MessageRecordsUpdate) SetUpdatedAt(t time.Time) *MessageRecordsUpdate {
  27. mru.mutation.SetUpdatedAt(t)
  28. return mru
  29. }
  30. // SetStatus sets the "status" field.
  31. func (mru *MessageRecordsUpdate) SetStatus(u uint8) *MessageRecordsUpdate {
  32. mru.mutation.ResetStatus()
  33. mru.mutation.SetStatus(u)
  34. return mru
  35. }
  36. // SetNillableStatus sets the "status" field if the given value is not nil.
  37. func (mru *MessageRecordsUpdate) SetNillableStatus(u *uint8) *MessageRecordsUpdate {
  38. if u != nil {
  39. mru.SetStatus(*u)
  40. }
  41. return mru
  42. }
  43. // AddStatus adds u to the "status" field.
  44. func (mru *MessageRecordsUpdate) AddStatus(u int8) *MessageRecordsUpdate {
  45. mru.mutation.AddStatus(u)
  46. return mru
  47. }
  48. // ClearStatus clears the value of the "status" field.
  49. func (mru *MessageRecordsUpdate) ClearStatus() *MessageRecordsUpdate {
  50. mru.mutation.ClearStatus()
  51. return mru
  52. }
  53. // SetDeletedAt sets the "deleted_at" field.
  54. func (mru *MessageRecordsUpdate) SetDeletedAt(t time.Time) *MessageRecordsUpdate {
  55. mru.mutation.SetDeletedAt(t)
  56. return mru
  57. }
  58. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  59. func (mru *MessageRecordsUpdate) SetNillableDeletedAt(t *time.Time) *MessageRecordsUpdate {
  60. if t != nil {
  61. mru.SetDeletedAt(*t)
  62. }
  63. return mru
  64. }
  65. // ClearDeletedAt clears the value of the "deleted_at" field.
  66. func (mru *MessageRecordsUpdate) ClearDeletedAt() *MessageRecordsUpdate {
  67. mru.mutation.ClearDeletedAt()
  68. return mru
  69. }
  70. // SetBotWxid sets the "bot_wxid" field.
  71. func (mru *MessageRecordsUpdate) SetBotWxid(s string) *MessageRecordsUpdate {
  72. mru.mutation.SetBotWxid(s)
  73. return mru
  74. }
  75. // SetNillableBotWxid sets the "bot_wxid" field if the given value is not nil.
  76. func (mru *MessageRecordsUpdate) SetNillableBotWxid(s *string) *MessageRecordsUpdate {
  77. if s != nil {
  78. mru.SetBotWxid(*s)
  79. }
  80. return mru
  81. }
  82. // SetContactID sets the "contact_id" field.
  83. func (mru *MessageRecordsUpdate) SetContactID(i int) *MessageRecordsUpdate {
  84. mru.mutation.ResetContactID()
  85. mru.mutation.SetContactID(i)
  86. return mru
  87. }
  88. // SetNillableContactID sets the "contact_id" field if the given value is not nil.
  89. func (mru *MessageRecordsUpdate) SetNillableContactID(i *int) *MessageRecordsUpdate {
  90. if i != nil {
  91. mru.SetContactID(*i)
  92. }
  93. return mru
  94. }
  95. // AddContactID adds i to the "contact_id" field.
  96. func (mru *MessageRecordsUpdate) AddContactID(i int) *MessageRecordsUpdate {
  97. mru.mutation.AddContactID(i)
  98. return mru
  99. }
  100. // SetContactType sets the "contact_type" field.
  101. func (mru *MessageRecordsUpdate) SetContactType(i int) *MessageRecordsUpdate {
  102. mru.mutation.ResetContactType()
  103. mru.mutation.SetContactType(i)
  104. return mru
  105. }
  106. // SetNillableContactType sets the "contact_type" field if the given value is not nil.
  107. func (mru *MessageRecordsUpdate) SetNillableContactType(i *int) *MessageRecordsUpdate {
  108. if i != nil {
  109. mru.SetContactType(*i)
  110. }
  111. return mru
  112. }
  113. // AddContactType adds i to the "contact_type" field.
  114. func (mru *MessageRecordsUpdate) AddContactType(i int) *MessageRecordsUpdate {
  115. mru.mutation.AddContactType(i)
  116. return mru
  117. }
  118. // SetContactWxid sets the "contact_wxid" field.
  119. func (mru *MessageRecordsUpdate) SetContactWxid(s string) *MessageRecordsUpdate {
  120. mru.mutation.SetContactWxid(s)
  121. return mru
  122. }
  123. // SetNillableContactWxid sets the "contact_wxid" field if the given value is not nil.
  124. func (mru *MessageRecordsUpdate) SetNillableContactWxid(s *string) *MessageRecordsUpdate {
  125. if s != nil {
  126. mru.SetContactWxid(*s)
  127. }
  128. return mru
  129. }
  130. // SetContentType sets the "content_type" field.
  131. func (mru *MessageRecordsUpdate) SetContentType(i int) *MessageRecordsUpdate {
  132. mru.mutation.ResetContentType()
  133. mru.mutation.SetContentType(i)
  134. return mru
  135. }
  136. // SetNillableContentType sets the "content_type" field if the given value is not nil.
  137. func (mru *MessageRecordsUpdate) SetNillableContentType(i *int) *MessageRecordsUpdate {
  138. if i != nil {
  139. mru.SetContentType(*i)
  140. }
  141. return mru
  142. }
  143. // AddContentType adds i to the "content_type" field.
  144. func (mru *MessageRecordsUpdate) AddContentType(i int) *MessageRecordsUpdate {
  145. mru.mutation.AddContentType(i)
  146. return mru
  147. }
  148. // SetContent sets the "content" field.
  149. func (mru *MessageRecordsUpdate) SetContent(s string) *MessageRecordsUpdate {
  150. mru.mutation.SetContent(s)
  151. return mru
  152. }
  153. // SetNillableContent sets the "content" field if the given value is not nil.
  154. func (mru *MessageRecordsUpdate) SetNillableContent(s *string) *MessageRecordsUpdate {
  155. if s != nil {
  156. mru.SetContent(*s)
  157. }
  158. return mru
  159. }
  160. // SetErrorDetail sets the "error_detail" field.
  161. func (mru *MessageRecordsUpdate) SetErrorDetail(s string) *MessageRecordsUpdate {
  162. mru.mutation.SetErrorDetail(s)
  163. return mru
  164. }
  165. // SetNillableErrorDetail sets the "error_detail" field if the given value is not nil.
  166. func (mru *MessageRecordsUpdate) SetNillableErrorDetail(s *string) *MessageRecordsUpdate {
  167. if s != nil {
  168. mru.SetErrorDetail(*s)
  169. }
  170. return mru
  171. }
  172. // SetSendTime sets the "send_time" field.
  173. func (mru *MessageRecordsUpdate) SetSendTime(t time.Time) *MessageRecordsUpdate {
  174. mru.mutation.SetSendTime(t)
  175. return mru
  176. }
  177. // SetNillableSendTime sets the "send_time" field if the given value is not nil.
  178. func (mru *MessageRecordsUpdate) SetNillableSendTime(t *time.Time) *MessageRecordsUpdate {
  179. if t != nil {
  180. mru.SetSendTime(*t)
  181. }
  182. return mru
  183. }
  184. // ClearSendTime clears the value of the "send_time" field.
  185. func (mru *MessageRecordsUpdate) ClearSendTime() *MessageRecordsUpdate {
  186. mru.mutation.ClearSendTime()
  187. return mru
  188. }
  189. // SetSourceType sets the "source_type" field.
  190. func (mru *MessageRecordsUpdate) SetSourceType(i int) *MessageRecordsUpdate {
  191. mru.mutation.ResetSourceType()
  192. mru.mutation.SetSourceType(i)
  193. return mru
  194. }
  195. // SetNillableSourceType sets the "source_type" field if the given value is not nil.
  196. func (mru *MessageRecordsUpdate) SetNillableSourceType(i *int) *MessageRecordsUpdate {
  197. if i != nil {
  198. mru.SetSourceType(*i)
  199. }
  200. return mru
  201. }
  202. // AddSourceType adds i to the "source_type" field.
  203. func (mru *MessageRecordsUpdate) AddSourceType(i int) *MessageRecordsUpdate {
  204. mru.mutation.AddSourceType(i)
  205. return mru
  206. }
  207. // SetSourceID sets the "source_id" field.
  208. func (mru *MessageRecordsUpdate) SetSourceID(i int) *MessageRecordsUpdate {
  209. mru.mutation.ResetSourceID()
  210. mru.mutation.SetSourceID(i)
  211. return mru
  212. }
  213. // SetNillableSourceID sets the "source_id" field if the given value is not nil.
  214. func (mru *MessageRecordsUpdate) SetNillableSourceID(i *int) *MessageRecordsUpdate {
  215. if i != nil {
  216. mru.SetSourceID(*i)
  217. }
  218. return mru
  219. }
  220. // AddSourceID adds i to the "source_id" field.
  221. func (mru *MessageRecordsUpdate) AddSourceID(i int) *MessageRecordsUpdate {
  222. mru.mutation.AddSourceID(i)
  223. return mru
  224. }
  225. // SetSubSourceID sets the "sub_source_id" field.
  226. func (mru *MessageRecordsUpdate) SetSubSourceID(i int) *MessageRecordsUpdate {
  227. mru.mutation.ResetSubSourceID()
  228. mru.mutation.SetSubSourceID(i)
  229. return mru
  230. }
  231. // SetNillableSubSourceID sets the "sub_source_id" field if the given value is not nil.
  232. func (mru *MessageRecordsUpdate) SetNillableSubSourceID(i *int) *MessageRecordsUpdate {
  233. if i != nil {
  234. mru.SetSubSourceID(*i)
  235. }
  236. return mru
  237. }
  238. // AddSubSourceID adds i to the "sub_source_id" field.
  239. func (mru *MessageRecordsUpdate) AddSubSourceID(i int) *MessageRecordsUpdate {
  240. mru.mutation.AddSubSourceID(i)
  241. return mru
  242. }
  243. // Mutation returns the MessageRecordsMutation object of the builder.
  244. func (mru *MessageRecordsUpdate) Mutation() *MessageRecordsMutation {
  245. return mru.mutation
  246. }
  247. // Save executes the query and returns the number of nodes affected by the update operation.
  248. func (mru *MessageRecordsUpdate) Save(ctx context.Context) (int, error) {
  249. if err := mru.defaults(); err != nil {
  250. return 0, err
  251. }
  252. return withHooks(ctx, mru.sqlSave, mru.mutation, mru.hooks)
  253. }
  254. // SaveX is like Save, but panics if an error occurs.
  255. func (mru *MessageRecordsUpdate) SaveX(ctx context.Context) int {
  256. affected, err := mru.Save(ctx)
  257. if err != nil {
  258. panic(err)
  259. }
  260. return affected
  261. }
  262. // Exec executes the query.
  263. func (mru *MessageRecordsUpdate) Exec(ctx context.Context) error {
  264. _, err := mru.Save(ctx)
  265. return err
  266. }
  267. // ExecX is like Exec, but panics if an error occurs.
  268. func (mru *MessageRecordsUpdate) ExecX(ctx context.Context) {
  269. if err := mru.Exec(ctx); err != nil {
  270. panic(err)
  271. }
  272. }
  273. // defaults sets the default values of the builder before save.
  274. func (mru *MessageRecordsUpdate) defaults() error {
  275. if _, ok := mru.mutation.UpdatedAt(); !ok {
  276. if messagerecords.UpdateDefaultUpdatedAt == nil {
  277. return fmt.Errorf("ent: uninitialized messagerecords.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  278. }
  279. v := messagerecords.UpdateDefaultUpdatedAt()
  280. mru.mutation.SetUpdatedAt(v)
  281. }
  282. return nil
  283. }
  284. func (mru *MessageRecordsUpdate) sqlSave(ctx context.Context) (n int, err error) {
  285. _spec := sqlgraph.NewUpdateSpec(messagerecords.Table, messagerecords.Columns, sqlgraph.NewFieldSpec(messagerecords.FieldID, field.TypeUint64))
  286. if ps := mru.mutation.predicates; len(ps) > 0 {
  287. _spec.Predicate = func(selector *sql.Selector) {
  288. for i := range ps {
  289. ps[i](selector)
  290. }
  291. }
  292. }
  293. if value, ok := mru.mutation.UpdatedAt(); ok {
  294. _spec.SetField(messagerecords.FieldUpdatedAt, field.TypeTime, value)
  295. }
  296. if value, ok := mru.mutation.Status(); ok {
  297. _spec.SetField(messagerecords.FieldStatus, field.TypeUint8, value)
  298. }
  299. if value, ok := mru.mutation.AddedStatus(); ok {
  300. _spec.AddField(messagerecords.FieldStatus, field.TypeUint8, value)
  301. }
  302. if mru.mutation.StatusCleared() {
  303. _spec.ClearField(messagerecords.FieldStatus, field.TypeUint8)
  304. }
  305. if value, ok := mru.mutation.DeletedAt(); ok {
  306. _spec.SetField(messagerecords.FieldDeletedAt, field.TypeTime, value)
  307. }
  308. if mru.mutation.DeletedAtCleared() {
  309. _spec.ClearField(messagerecords.FieldDeletedAt, field.TypeTime)
  310. }
  311. if value, ok := mru.mutation.BotWxid(); ok {
  312. _spec.SetField(messagerecords.FieldBotWxid, field.TypeString, value)
  313. }
  314. if value, ok := mru.mutation.ContactID(); ok {
  315. _spec.SetField(messagerecords.FieldContactID, field.TypeInt, value)
  316. }
  317. if value, ok := mru.mutation.AddedContactID(); ok {
  318. _spec.AddField(messagerecords.FieldContactID, field.TypeInt, value)
  319. }
  320. if value, ok := mru.mutation.ContactType(); ok {
  321. _spec.SetField(messagerecords.FieldContactType, field.TypeInt, value)
  322. }
  323. if value, ok := mru.mutation.AddedContactType(); ok {
  324. _spec.AddField(messagerecords.FieldContactType, field.TypeInt, value)
  325. }
  326. if value, ok := mru.mutation.ContactWxid(); ok {
  327. _spec.SetField(messagerecords.FieldContactWxid, field.TypeString, value)
  328. }
  329. if value, ok := mru.mutation.ContentType(); ok {
  330. _spec.SetField(messagerecords.FieldContentType, field.TypeInt, value)
  331. }
  332. if value, ok := mru.mutation.AddedContentType(); ok {
  333. _spec.AddField(messagerecords.FieldContentType, field.TypeInt, value)
  334. }
  335. if value, ok := mru.mutation.Content(); ok {
  336. _spec.SetField(messagerecords.FieldContent, field.TypeString, value)
  337. }
  338. if value, ok := mru.mutation.ErrorDetail(); ok {
  339. _spec.SetField(messagerecords.FieldErrorDetail, field.TypeString, value)
  340. }
  341. if value, ok := mru.mutation.SendTime(); ok {
  342. _spec.SetField(messagerecords.FieldSendTime, field.TypeTime, value)
  343. }
  344. if mru.mutation.SendTimeCleared() {
  345. _spec.ClearField(messagerecords.FieldSendTime, field.TypeTime)
  346. }
  347. if value, ok := mru.mutation.SourceType(); ok {
  348. _spec.SetField(messagerecords.FieldSourceType, field.TypeInt, value)
  349. }
  350. if value, ok := mru.mutation.AddedSourceType(); ok {
  351. _spec.AddField(messagerecords.FieldSourceType, field.TypeInt, value)
  352. }
  353. if value, ok := mru.mutation.SourceID(); ok {
  354. _spec.SetField(messagerecords.FieldSourceID, field.TypeInt, value)
  355. }
  356. if value, ok := mru.mutation.AddedSourceID(); ok {
  357. _spec.AddField(messagerecords.FieldSourceID, field.TypeInt, value)
  358. }
  359. if value, ok := mru.mutation.SubSourceID(); ok {
  360. _spec.SetField(messagerecords.FieldSubSourceID, field.TypeInt, value)
  361. }
  362. if value, ok := mru.mutation.AddedSubSourceID(); ok {
  363. _spec.AddField(messagerecords.FieldSubSourceID, field.TypeInt, value)
  364. }
  365. if n, err = sqlgraph.UpdateNodes(ctx, mru.driver, _spec); err != nil {
  366. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  367. err = &NotFoundError{messagerecords.Label}
  368. } else if sqlgraph.IsConstraintError(err) {
  369. err = &ConstraintError{msg: err.Error(), wrap: err}
  370. }
  371. return 0, err
  372. }
  373. mru.mutation.done = true
  374. return n, nil
  375. }
  376. // MessageRecordsUpdateOne is the builder for updating a single MessageRecords entity.
  377. type MessageRecordsUpdateOne struct {
  378. config
  379. fields []string
  380. hooks []Hook
  381. mutation *MessageRecordsMutation
  382. }
  383. // SetUpdatedAt sets the "updated_at" field.
  384. func (mruo *MessageRecordsUpdateOne) SetUpdatedAt(t time.Time) *MessageRecordsUpdateOne {
  385. mruo.mutation.SetUpdatedAt(t)
  386. return mruo
  387. }
  388. // SetStatus sets the "status" field.
  389. func (mruo *MessageRecordsUpdateOne) SetStatus(u uint8) *MessageRecordsUpdateOne {
  390. mruo.mutation.ResetStatus()
  391. mruo.mutation.SetStatus(u)
  392. return mruo
  393. }
  394. // SetNillableStatus sets the "status" field if the given value is not nil.
  395. func (mruo *MessageRecordsUpdateOne) SetNillableStatus(u *uint8) *MessageRecordsUpdateOne {
  396. if u != nil {
  397. mruo.SetStatus(*u)
  398. }
  399. return mruo
  400. }
  401. // AddStatus adds u to the "status" field.
  402. func (mruo *MessageRecordsUpdateOne) AddStatus(u int8) *MessageRecordsUpdateOne {
  403. mruo.mutation.AddStatus(u)
  404. return mruo
  405. }
  406. // ClearStatus clears the value of the "status" field.
  407. func (mruo *MessageRecordsUpdateOne) ClearStatus() *MessageRecordsUpdateOne {
  408. mruo.mutation.ClearStatus()
  409. return mruo
  410. }
  411. // SetDeletedAt sets the "deleted_at" field.
  412. func (mruo *MessageRecordsUpdateOne) SetDeletedAt(t time.Time) *MessageRecordsUpdateOne {
  413. mruo.mutation.SetDeletedAt(t)
  414. return mruo
  415. }
  416. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  417. func (mruo *MessageRecordsUpdateOne) SetNillableDeletedAt(t *time.Time) *MessageRecordsUpdateOne {
  418. if t != nil {
  419. mruo.SetDeletedAt(*t)
  420. }
  421. return mruo
  422. }
  423. // ClearDeletedAt clears the value of the "deleted_at" field.
  424. func (mruo *MessageRecordsUpdateOne) ClearDeletedAt() *MessageRecordsUpdateOne {
  425. mruo.mutation.ClearDeletedAt()
  426. return mruo
  427. }
  428. // SetBotWxid sets the "bot_wxid" field.
  429. func (mruo *MessageRecordsUpdateOne) SetBotWxid(s string) *MessageRecordsUpdateOne {
  430. mruo.mutation.SetBotWxid(s)
  431. return mruo
  432. }
  433. // SetNillableBotWxid sets the "bot_wxid" field if the given value is not nil.
  434. func (mruo *MessageRecordsUpdateOne) SetNillableBotWxid(s *string) *MessageRecordsUpdateOne {
  435. if s != nil {
  436. mruo.SetBotWxid(*s)
  437. }
  438. return mruo
  439. }
  440. // SetContactID sets the "contact_id" field.
  441. func (mruo *MessageRecordsUpdateOne) SetContactID(i int) *MessageRecordsUpdateOne {
  442. mruo.mutation.ResetContactID()
  443. mruo.mutation.SetContactID(i)
  444. return mruo
  445. }
  446. // SetNillableContactID sets the "contact_id" field if the given value is not nil.
  447. func (mruo *MessageRecordsUpdateOne) SetNillableContactID(i *int) *MessageRecordsUpdateOne {
  448. if i != nil {
  449. mruo.SetContactID(*i)
  450. }
  451. return mruo
  452. }
  453. // AddContactID adds i to the "contact_id" field.
  454. func (mruo *MessageRecordsUpdateOne) AddContactID(i int) *MessageRecordsUpdateOne {
  455. mruo.mutation.AddContactID(i)
  456. return mruo
  457. }
  458. // SetContactType sets the "contact_type" field.
  459. func (mruo *MessageRecordsUpdateOne) SetContactType(i int) *MessageRecordsUpdateOne {
  460. mruo.mutation.ResetContactType()
  461. mruo.mutation.SetContactType(i)
  462. return mruo
  463. }
  464. // SetNillableContactType sets the "contact_type" field if the given value is not nil.
  465. func (mruo *MessageRecordsUpdateOne) SetNillableContactType(i *int) *MessageRecordsUpdateOne {
  466. if i != nil {
  467. mruo.SetContactType(*i)
  468. }
  469. return mruo
  470. }
  471. // AddContactType adds i to the "contact_type" field.
  472. func (mruo *MessageRecordsUpdateOne) AddContactType(i int) *MessageRecordsUpdateOne {
  473. mruo.mutation.AddContactType(i)
  474. return mruo
  475. }
  476. // SetContactWxid sets the "contact_wxid" field.
  477. func (mruo *MessageRecordsUpdateOne) SetContactWxid(s string) *MessageRecordsUpdateOne {
  478. mruo.mutation.SetContactWxid(s)
  479. return mruo
  480. }
  481. // SetNillableContactWxid sets the "contact_wxid" field if the given value is not nil.
  482. func (mruo *MessageRecordsUpdateOne) SetNillableContactWxid(s *string) *MessageRecordsUpdateOne {
  483. if s != nil {
  484. mruo.SetContactWxid(*s)
  485. }
  486. return mruo
  487. }
  488. // SetContentType sets the "content_type" field.
  489. func (mruo *MessageRecordsUpdateOne) SetContentType(i int) *MessageRecordsUpdateOne {
  490. mruo.mutation.ResetContentType()
  491. mruo.mutation.SetContentType(i)
  492. return mruo
  493. }
  494. // SetNillableContentType sets the "content_type" field if the given value is not nil.
  495. func (mruo *MessageRecordsUpdateOne) SetNillableContentType(i *int) *MessageRecordsUpdateOne {
  496. if i != nil {
  497. mruo.SetContentType(*i)
  498. }
  499. return mruo
  500. }
  501. // AddContentType adds i to the "content_type" field.
  502. func (mruo *MessageRecordsUpdateOne) AddContentType(i int) *MessageRecordsUpdateOne {
  503. mruo.mutation.AddContentType(i)
  504. return mruo
  505. }
  506. // SetContent sets the "content" field.
  507. func (mruo *MessageRecordsUpdateOne) SetContent(s string) *MessageRecordsUpdateOne {
  508. mruo.mutation.SetContent(s)
  509. return mruo
  510. }
  511. // SetNillableContent sets the "content" field if the given value is not nil.
  512. func (mruo *MessageRecordsUpdateOne) SetNillableContent(s *string) *MessageRecordsUpdateOne {
  513. if s != nil {
  514. mruo.SetContent(*s)
  515. }
  516. return mruo
  517. }
  518. // SetErrorDetail sets the "error_detail" field.
  519. func (mruo *MessageRecordsUpdateOne) SetErrorDetail(s string) *MessageRecordsUpdateOne {
  520. mruo.mutation.SetErrorDetail(s)
  521. return mruo
  522. }
  523. // SetNillableErrorDetail sets the "error_detail" field if the given value is not nil.
  524. func (mruo *MessageRecordsUpdateOne) SetNillableErrorDetail(s *string) *MessageRecordsUpdateOne {
  525. if s != nil {
  526. mruo.SetErrorDetail(*s)
  527. }
  528. return mruo
  529. }
  530. // SetSendTime sets the "send_time" field.
  531. func (mruo *MessageRecordsUpdateOne) SetSendTime(t time.Time) *MessageRecordsUpdateOne {
  532. mruo.mutation.SetSendTime(t)
  533. return mruo
  534. }
  535. // SetNillableSendTime sets the "send_time" field if the given value is not nil.
  536. func (mruo *MessageRecordsUpdateOne) SetNillableSendTime(t *time.Time) *MessageRecordsUpdateOne {
  537. if t != nil {
  538. mruo.SetSendTime(*t)
  539. }
  540. return mruo
  541. }
  542. // ClearSendTime clears the value of the "send_time" field.
  543. func (mruo *MessageRecordsUpdateOne) ClearSendTime() *MessageRecordsUpdateOne {
  544. mruo.mutation.ClearSendTime()
  545. return mruo
  546. }
  547. // SetSourceType sets the "source_type" field.
  548. func (mruo *MessageRecordsUpdateOne) SetSourceType(i int) *MessageRecordsUpdateOne {
  549. mruo.mutation.ResetSourceType()
  550. mruo.mutation.SetSourceType(i)
  551. return mruo
  552. }
  553. // SetNillableSourceType sets the "source_type" field if the given value is not nil.
  554. func (mruo *MessageRecordsUpdateOne) SetNillableSourceType(i *int) *MessageRecordsUpdateOne {
  555. if i != nil {
  556. mruo.SetSourceType(*i)
  557. }
  558. return mruo
  559. }
  560. // AddSourceType adds i to the "source_type" field.
  561. func (mruo *MessageRecordsUpdateOne) AddSourceType(i int) *MessageRecordsUpdateOne {
  562. mruo.mutation.AddSourceType(i)
  563. return mruo
  564. }
  565. // SetSourceID sets the "source_id" field.
  566. func (mruo *MessageRecordsUpdateOne) SetSourceID(i int) *MessageRecordsUpdateOne {
  567. mruo.mutation.ResetSourceID()
  568. mruo.mutation.SetSourceID(i)
  569. return mruo
  570. }
  571. // SetNillableSourceID sets the "source_id" field if the given value is not nil.
  572. func (mruo *MessageRecordsUpdateOne) SetNillableSourceID(i *int) *MessageRecordsUpdateOne {
  573. if i != nil {
  574. mruo.SetSourceID(*i)
  575. }
  576. return mruo
  577. }
  578. // AddSourceID adds i to the "source_id" field.
  579. func (mruo *MessageRecordsUpdateOne) AddSourceID(i int) *MessageRecordsUpdateOne {
  580. mruo.mutation.AddSourceID(i)
  581. return mruo
  582. }
  583. // SetSubSourceID sets the "sub_source_id" field.
  584. func (mruo *MessageRecordsUpdateOne) SetSubSourceID(i int) *MessageRecordsUpdateOne {
  585. mruo.mutation.ResetSubSourceID()
  586. mruo.mutation.SetSubSourceID(i)
  587. return mruo
  588. }
  589. // SetNillableSubSourceID sets the "sub_source_id" field if the given value is not nil.
  590. func (mruo *MessageRecordsUpdateOne) SetNillableSubSourceID(i *int) *MessageRecordsUpdateOne {
  591. if i != nil {
  592. mruo.SetSubSourceID(*i)
  593. }
  594. return mruo
  595. }
  596. // AddSubSourceID adds i to the "sub_source_id" field.
  597. func (mruo *MessageRecordsUpdateOne) AddSubSourceID(i int) *MessageRecordsUpdateOne {
  598. mruo.mutation.AddSubSourceID(i)
  599. return mruo
  600. }
  601. // Mutation returns the MessageRecordsMutation object of the builder.
  602. func (mruo *MessageRecordsUpdateOne) Mutation() *MessageRecordsMutation {
  603. return mruo.mutation
  604. }
  605. // Where appends a list predicates to the MessageRecordsUpdate builder.
  606. func (mruo *MessageRecordsUpdateOne) Where(ps ...predicate.MessageRecords) *MessageRecordsUpdateOne {
  607. mruo.mutation.Where(ps...)
  608. return mruo
  609. }
  610. // Select allows selecting one or more fields (columns) of the returned entity.
  611. // The default is selecting all fields defined in the entity schema.
  612. func (mruo *MessageRecordsUpdateOne) Select(field string, fields ...string) *MessageRecordsUpdateOne {
  613. mruo.fields = append([]string{field}, fields...)
  614. return mruo
  615. }
  616. // Save executes the query and returns the updated MessageRecords entity.
  617. func (mruo *MessageRecordsUpdateOne) Save(ctx context.Context) (*MessageRecords, error) {
  618. if err := mruo.defaults(); err != nil {
  619. return nil, err
  620. }
  621. return withHooks(ctx, mruo.sqlSave, mruo.mutation, mruo.hooks)
  622. }
  623. // SaveX is like Save, but panics if an error occurs.
  624. func (mruo *MessageRecordsUpdateOne) SaveX(ctx context.Context) *MessageRecords {
  625. node, err := mruo.Save(ctx)
  626. if err != nil {
  627. panic(err)
  628. }
  629. return node
  630. }
  631. // Exec executes the query on the entity.
  632. func (mruo *MessageRecordsUpdateOne) Exec(ctx context.Context) error {
  633. _, err := mruo.Save(ctx)
  634. return err
  635. }
  636. // ExecX is like Exec, but panics if an error occurs.
  637. func (mruo *MessageRecordsUpdateOne) ExecX(ctx context.Context) {
  638. if err := mruo.Exec(ctx); err != nil {
  639. panic(err)
  640. }
  641. }
  642. // defaults sets the default values of the builder before save.
  643. func (mruo *MessageRecordsUpdateOne) defaults() error {
  644. if _, ok := mruo.mutation.UpdatedAt(); !ok {
  645. if messagerecords.UpdateDefaultUpdatedAt == nil {
  646. return fmt.Errorf("ent: uninitialized messagerecords.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  647. }
  648. v := messagerecords.UpdateDefaultUpdatedAt()
  649. mruo.mutation.SetUpdatedAt(v)
  650. }
  651. return nil
  652. }
  653. func (mruo *MessageRecordsUpdateOne) sqlSave(ctx context.Context) (_node *MessageRecords, err error) {
  654. _spec := sqlgraph.NewUpdateSpec(messagerecords.Table, messagerecords.Columns, sqlgraph.NewFieldSpec(messagerecords.FieldID, field.TypeUint64))
  655. id, ok := mruo.mutation.ID()
  656. if !ok {
  657. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "MessageRecords.id" for update`)}
  658. }
  659. _spec.Node.ID.Value = id
  660. if fields := mruo.fields; len(fields) > 0 {
  661. _spec.Node.Columns = make([]string, 0, len(fields))
  662. _spec.Node.Columns = append(_spec.Node.Columns, messagerecords.FieldID)
  663. for _, f := range fields {
  664. if !messagerecords.ValidColumn(f) {
  665. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  666. }
  667. if f != messagerecords.FieldID {
  668. _spec.Node.Columns = append(_spec.Node.Columns, f)
  669. }
  670. }
  671. }
  672. if ps := mruo.mutation.predicates; len(ps) > 0 {
  673. _spec.Predicate = func(selector *sql.Selector) {
  674. for i := range ps {
  675. ps[i](selector)
  676. }
  677. }
  678. }
  679. if value, ok := mruo.mutation.UpdatedAt(); ok {
  680. _spec.SetField(messagerecords.FieldUpdatedAt, field.TypeTime, value)
  681. }
  682. if value, ok := mruo.mutation.Status(); ok {
  683. _spec.SetField(messagerecords.FieldStatus, field.TypeUint8, value)
  684. }
  685. if value, ok := mruo.mutation.AddedStatus(); ok {
  686. _spec.AddField(messagerecords.FieldStatus, field.TypeUint8, value)
  687. }
  688. if mruo.mutation.StatusCleared() {
  689. _spec.ClearField(messagerecords.FieldStatus, field.TypeUint8)
  690. }
  691. if value, ok := mruo.mutation.DeletedAt(); ok {
  692. _spec.SetField(messagerecords.FieldDeletedAt, field.TypeTime, value)
  693. }
  694. if mruo.mutation.DeletedAtCleared() {
  695. _spec.ClearField(messagerecords.FieldDeletedAt, field.TypeTime)
  696. }
  697. if value, ok := mruo.mutation.BotWxid(); ok {
  698. _spec.SetField(messagerecords.FieldBotWxid, field.TypeString, value)
  699. }
  700. if value, ok := mruo.mutation.ContactID(); ok {
  701. _spec.SetField(messagerecords.FieldContactID, field.TypeInt, value)
  702. }
  703. if value, ok := mruo.mutation.AddedContactID(); ok {
  704. _spec.AddField(messagerecords.FieldContactID, field.TypeInt, value)
  705. }
  706. if value, ok := mruo.mutation.ContactType(); ok {
  707. _spec.SetField(messagerecords.FieldContactType, field.TypeInt, value)
  708. }
  709. if value, ok := mruo.mutation.AddedContactType(); ok {
  710. _spec.AddField(messagerecords.FieldContactType, field.TypeInt, value)
  711. }
  712. if value, ok := mruo.mutation.ContactWxid(); ok {
  713. _spec.SetField(messagerecords.FieldContactWxid, field.TypeString, value)
  714. }
  715. if value, ok := mruo.mutation.ContentType(); ok {
  716. _spec.SetField(messagerecords.FieldContentType, field.TypeInt, value)
  717. }
  718. if value, ok := mruo.mutation.AddedContentType(); ok {
  719. _spec.AddField(messagerecords.FieldContentType, field.TypeInt, value)
  720. }
  721. if value, ok := mruo.mutation.Content(); ok {
  722. _spec.SetField(messagerecords.FieldContent, field.TypeString, value)
  723. }
  724. if value, ok := mruo.mutation.ErrorDetail(); ok {
  725. _spec.SetField(messagerecords.FieldErrorDetail, field.TypeString, value)
  726. }
  727. if value, ok := mruo.mutation.SendTime(); ok {
  728. _spec.SetField(messagerecords.FieldSendTime, field.TypeTime, value)
  729. }
  730. if mruo.mutation.SendTimeCleared() {
  731. _spec.ClearField(messagerecords.FieldSendTime, field.TypeTime)
  732. }
  733. if value, ok := mruo.mutation.SourceType(); ok {
  734. _spec.SetField(messagerecords.FieldSourceType, field.TypeInt, value)
  735. }
  736. if value, ok := mruo.mutation.AddedSourceType(); ok {
  737. _spec.AddField(messagerecords.FieldSourceType, field.TypeInt, value)
  738. }
  739. if value, ok := mruo.mutation.SourceID(); ok {
  740. _spec.SetField(messagerecords.FieldSourceID, field.TypeInt, value)
  741. }
  742. if value, ok := mruo.mutation.AddedSourceID(); ok {
  743. _spec.AddField(messagerecords.FieldSourceID, field.TypeInt, value)
  744. }
  745. if value, ok := mruo.mutation.SubSourceID(); ok {
  746. _spec.SetField(messagerecords.FieldSubSourceID, field.TypeInt, value)
  747. }
  748. if value, ok := mruo.mutation.AddedSubSourceID(); ok {
  749. _spec.AddField(messagerecords.FieldSubSourceID, field.TypeInt, value)
  750. }
  751. _node = &MessageRecords{config: mruo.config}
  752. _spec.Assign = _node.assignValues
  753. _spec.ScanValues = _node.scanValues
  754. if err = sqlgraph.UpdateNode(ctx, mruo.driver, _spec); err != nil {
  755. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  756. err = &NotFoundError{messagerecords.Label}
  757. } else if sqlgraph.IsConstraintError(err) {
  758. err = &ConstraintError{msg: err.Error(), wrap: err}
  759. }
  760. return nil, err
  761. }
  762. mruo.mutation.done = true
  763. return _node, nil
  764. }