messagerecords_create.go 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547
  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. "entgo.io/ent/dialect/sql"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // MessageRecordsCreate is the builder for creating a MessageRecords entity.
  14. type MessageRecordsCreate struct {
  15. config
  16. mutation *MessageRecordsMutation
  17. hooks []Hook
  18. conflict []sql.ConflictOption
  19. }
  20. // SetCreatedAt sets the "created_at" field.
  21. func (mrc *MessageRecordsCreate) SetCreatedAt(t time.Time) *MessageRecordsCreate {
  22. mrc.mutation.SetCreatedAt(t)
  23. return mrc
  24. }
  25. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  26. func (mrc *MessageRecordsCreate) SetNillableCreatedAt(t *time.Time) *MessageRecordsCreate {
  27. if t != nil {
  28. mrc.SetCreatedAt(*t)
  29. }
  30. return mrc
  31. }
  32. // SetUpdatedAt sets the "updated_at" field.
  33. func (mrc *MessageRecordsCreate) SetUpdatedAt(t time.Time) *MessageRecordsCreate {
  34. mrc.mutation.SetUpdatedAt(t)
  35. return mrc
  36. }
  37. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  38. func (mrc *MessageRecordsCreate) SetNillableUpdatedAt(t *time.Time) *MessageRecordsCreate {
  39. if t != nil {
  40. mrc.SetUpdatedAt(*t)
  41. }
  42. return mrc
  43. }
  44. // SetStatus sets the "status" field.
  45. func (mrc *MessageRecordsCreate) SetStatus(u uint8) *MessageRecordsCreate {
  46. mrc.mutation.SetStatus(u)
  47. return mrc
  48. }
  49. // SetNillableStatus sets the "status" field if the given value is not nil.
  50. func (mrc *MessageRecordsCreate) SetNillableStatus(u *uint8) *MessageRecordsCreate {
  51. if u != nil {
  52. mrc.SetStatus(*u)
  53. }
  54. return mrc
  55. }
  56. // SetDeletedAt sets the "deleted_at" field.
  57. func (mrc *MessageRecordsCreate) SetDeletedAt(t time.Time) *MessageRecordsCreate {
  58. mrc.mutation.SetDeletedAt(t)
  59. return mrc
  60. }
  61. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  62. func (mrc *MessageRecordsCreate) SetNillableDeletedAt(t *time.Time) *MessageRecordsCreate {
  63. if t != nil {
  64. mrc.SetDeletedAt(*t)
  65. }
  66. return mrc
  67. }
  68. // SetBotWxid sets the "bot_wxid" field.
  69. func (mrc *MessageRecordsCreate) SetBotWxid(s string) *MessageRecordsCreate {
  70. mrc.mutation.SetBotWxid(s)
  71. return mrc
  72. }
  73. // SetContactID sets the "contact_id" field.
  74. func (mrc *MessageRecordsCreate) SetContactID(i int) *MessageRecordsCreate {
  75. mrc.mutation.SetContactID(i)
  76. return mrc
  77. }
  78. // SetContactType sets the "contact_type" field.
  79. func (mrc *MessageRecordsCreate) SetContactType(i int) *MessageRecordsCreate {
  80. mrc.mutation.SetContactType(i)
  81. return mrc
  82. }
  83. // SetNillableContactType sets the "contact_type" field if the given value is not nil.
  84. func (mrc *MessageRecordsCreate) SetNillableContactType(i *int) *MessageRecordsCreate {
  85. if i != nil {
  86. mrc.SetContactType(*i)
  87. }
  88. return mrc
  89. }
  90. // SetContactWxid sets the "contact_wxid" field.
  91. func (mrc *MessageRecordsCreate) SetContactWxid(s string) *MessageRecordsCreate {
  92. mrc.mutation.SetContactWxid(s)
  93. return mrc
  94. }
  95. // SetNillableContactWxid sets the "contact_wxid" field if the given value is not nil.
  96. func (mrc *MessageRecordsCreate) SetNillableContactWxid(s *string) *MessageRecordsCreate {
  97. if s != nil {
  98. mrc.SetContactWxid(*s)
  99. }
  100. return mrc
  101. }
  102. // SetContentType sets the "content_type" field.
  103. func (mrc *MessageRecordsCreate) SetContentType(i int) *MessageRecordsCreate {
  104. mrc.mutation.SetContentType(i)
  105. return mrc
  106. }
  107. // SetNillableContentType sets the "content_type" field if the given value is not nil.
  108. func (mrc *MessageRecordsCreate) SetNillableContentType(i *int) *MessageRecordsCreate {
  109. if i != nil {
  110. mrc.SetContentType(*i)
  111. }
  112. return mrc
  113. }
  114. // SetContent sets the "content" field.
  115. func (mrc *MessageRecordsCreate) SetContent(s string) *MessageRecordsCreate {
  116. mrc.mutation.SetContent(s)
  117. return mrc
  118. }
  119. // SetNillableContent sets the "content" field if the given value is not nil.
  120. func (mrc *MessageRecordsCreate) SetNillableContent(s *string) *MessageRecordsCreate {
  121. if s != nil {
  122. mrc.SetContent(*s)
  123. }
  124. return mrc
  125. }
  126. // SetErrorDetail sets the "error_detail" field.
  127. func (mrc *MessageRecordsCreate) SetErrorDetail(s string) *MessageRecordsCreate {
  128. mrc.mutation.SetErrorDetail(s)
  129. return mrc
  130. }
  131. // SetNillableErrorDetail sets the "error_detail" field if the given value is not nil.
  132. func (mrc *MessageRecordsCreate) SetNillableErrorDetail(s *string) *MessageRecordsCreate {
  133. if s != nil {
  134. mrc.SetErrorDetail(*s)
  135. }
  136. return mrc
  137. }
  138. // SetSendTime sets the "send_time" field.
  139. func (mrc *MessageRecordsCreate) SetSendTime(t time.Time) *MessageRecordsCreate {
  140. mrc.mutation.SetSendTime(t)
  141. return mrc
  142. }
  143. // SetNillableSendTime sets the "send_time" field if the given value is not nil.
  144. func (mrc *MessageRecordsCreate) SetNillableSendTime(t *time.Time) *MessageRecordsCreate {
  145. if t != nil {
  146. mrc.SetSendTime(*t)
  147. }
  148. return mrc
  149. }
  150. // SetSourceType sets the "source_type" field.
  151. func (mrc *MessageRecordsCreate) SetSourceType(i int) *MessageRecordsCreate {
  152. mrc.mutation.SetSourceType(i)
  153. return mrc
  154. }
  155. // SetNillableSourceType sets the "source_type" field if the given value is not nil.
  156. func (mrc *MessageRecordsCreate) SetNillableSourceType(i *int) *MessageRecordsCreate {
  157. if i != nil {
  158. mrc.SetSourceType(*i)
  159. }
  160. return mrc
  161. }
  162. // SetSourceID sets the "source_id" field.
  163. func (mrc *MessageRecordsCreate) SetSourceID(i int) *MessageRecordsCreate {
  164. mrc.mutation.SetSourceID(i)
  165. return mrc
  166. }
  167. // SetNillableSourceID sets the "source_id" field if the given value is not nil.
  168. func (mrc *MessageRecordsCreate) SetNillableSourceID(i *int) *MessageRecordsCreate {
  169. if i != nil {
  170. mrc.SetSourceID(*i)
  171. }
  172. return mrc
  173. }
  174. // SetSubSourceID sets the "sub_source_id" field.
  175. func (mrc *MessageRecordsCreate) SetSubSourceID(i int) *MessageRecordsCreate {
  176. mrc.mutation.SetSubSourceID(i)
  177. return mrc
  178. }
  179. // SetNillableSubSourceID sets the "sub_source_id" field if the given value is not nil.
  180. func (mrc *MessageRecordsCreate) SetNillableSubSourceID(i *int) *MessageRecordsCreate {
  181. if i != nil {
  182. mrc.SetSubSourceID(*i)
  183. }
  184. return mrc
  185. }
  186. // SetID sets the "id" field.
  187. func (mrc *MessageRecordsCreate) SetID(u uint64) *MessageRecordsCreate {
  188. mrc.mutation.SetID(u)
  189. return mrc
  190. }
  191. // Mutation returns the MessageRecordsMutation object of the builder.
  192. func (mrc *MessageRecordsCreate) Mutation() *MessageRecordsMutation {
  193. return mrc.mutation
  194. }
  195. // Save creates the MessageRecords in the database.
  196. func (mrc *MessageRecordsCreate) Save(ctx context.Context) (*MessageRecords, error) {
  197. if err := mrc.defaults(); err != nil {
  198. return nil, err
  199. }
  200. return withHooks(ctx, mrc.sqlSave, mrc.mutation, mrc.hooks)
  201. }
  202. // SaveX calls Save and panics if Save returns an error.
  203. func (mrc *MessageRecordsCreate) SaveX(ctx context.Context) *MessageRecords {
  204. v, err := mrc.Save(ctx)
  205. if err != nil {
  206. panic(err)
  207. }
  208. return v
  209. }
  210. // Exec executes the query.
  211. func (mrc *MessageRecordsCreate) Exec(ctx context.Context) error {
  212. _, err := mrc.Save(ctx)
  213. return err
  214. }
  215. // ExecX is like Exec, but panics if an error occurs.
  216. func (mrc *MessageRecordsCreate) ExecX(ctx context.Context) {
  217. if err := mrc.Exec(ctx); err != nil {
  218. panic(err)
  219. }
  220. }
  221. // defaults sets the default values of the builder before save.
  222. func (mrc *MessageRecordsCreate) defaults() error {
  223. if _, ok := mrc.mutation.CreatedAt(); !ok {
  224. if messagerecords.DefaultCreatedAt == nil {
  225. return fmt.Errorf("ent: uninitialized messagerecords.DefaultCreatedAt (forgotten import ent/runtime?)")
  226. }
  227. v := messagerecords.DefaultCreatedAt()
  228. mrc.mutation.SetCreatedAt(v)
  229. }
  230. if _, ok := mrc.mutation.UpdatedAt(); !ok {
  231. if messagerecords.DefaultUpdatedAt == nil {
  232. return fmt.Errorf("ent: uninitialized messagerecords.DefaultUpdatedAt (forgotten import ent/runtime?)")
  233. }
  234. v := messagerecords.DefaultUpdatedAt()
  235. mrc.mutation.SetUpdatedAt(v)
  236. }
  237. if _, ok := mrc.mutation.Status(); !ok {
  238. v := messagerecords.DefaultStatus
  239. mrc.mutation.SetStatus(v)
  240. }
  241. if _, ok := mrc.mutation.ContactType(); !ok {
  242. v := messagerecords.DefaultContactType
  243. mrc.mutation.SetContactType(v)
  244. }
  245. if _, ok := mrc.mutation.ContactWxid(); !ok {
  246. v := messagerecords.DefaultContactWxid
  247. mrc.mutation.SetContactWxid(v)
  248. }
  249. if _, ok := mrc.mutation.ContentType(); !ok {
  250. v := messagerecords.DefaultContentType
  251. mrc.mutation.SetContentType(v)
  252. }
  253. if _, ok := mrc.mutation.Content(); !ok {
  254. v := messagerecords.DefaultContent
  255. mrc.mutation.SetContent(v)
  256. }
  257. if _, ok := mrc.mutation.ErrorDetail(); !ok {
  258. v := messagerecords.DefaultErrorDetail
  259. mrc.mutation.SetErrorDetail(v)
  260. }
  261. if _, ok := mrc.mutation.SourceType(); !ok {
  262. v := messagerecords.DefaultSourceType
  263. mrc.mutation.SetSourceType(v)
  264. }
  265. if _, ok := mrc.mutation.SourceID(); !ok {
  266. v := messagerecords.DefaultSourceID
  267. mrc.mutation.SetSourceID(v)
  268. }
  269. if _, ok := mrc.mutation.SubSourceID(); !ok {
  270. v := messagerecords.DefaultSubSourceID
  271. mrc.mutation.SetSubSourceID(v)
  272. }
  273. return nil
  274. }
  275. // check runs all checks and user-defined validators on the builder.
  276. func (mrc *MessageRecordsCreate) check() error {
  277. if _, ok := mrc.mutation.CreatedAt(); !ok {
  278. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "MessageRecords.created_at"`)}
  279. }
  280. if _, ok := mrc.mutation.UpdatedAt(); !ok {
  281. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "MessageRecords.updated_at"`)}
  282. }
  283. if _, ok := mrc.mutation.BotWxid(); !ok {
  284. return &ValidationError{Name: "bot_wxid", err: errors.New(`ent: missing required field "MessageRecords.bot_wxid"`)}
  285. }
  286. if _, ok := mrc.mutation.ContactID(); !ok {
  287. return &ValidationError{Name: "contact_id", err: errors.New(`ent: missing required field "MessageRecords.contact_id"`)}
  288. }
  289. if _, ok := mrc.mutation.ContactType(); !ok {
  290. return &ValidationError{Name: "contact_type", err: errors.New(`ent: missing required field "MessageRecords.contact_type"`)}
  291. }
  292. if _, ok := mrc.mutation.ContactWxid(); !ok {
  293. return &ValidationError{Name: "contact_wxid", err: errors.New(`ent: missing required field "MessageRecords.contact_wxid"`)}
  294. }
  295. if _, ok := mrc.mutation.ContentType(); !ok {
  296. return &ValidationError{Name: "content_type", err: errors.New(`ent: missing required field "MessageRecords.content_type"`)}
  297. }
  298. if _, ok := mrc.mutation.Content(); !ok {
  299. return &ValidationError{Name: "content", err: errors.New(`ent: missing required field "MessageRecords.content"`)}
  300. }
  301. if _, ok := mrc.mutation.ErrorDetail(); !ok {
  302. return &ValidationError{Name: "error_detail", err: errors.New(`ent: missing required field "MessageRecords.error_detail"`)}
  303. }
  304. if _, ok := mrc.mutation.SourceType(); !ok {
  305. return &ValidationError{Name: "source_type", err: errors.New(`ent: missing required field "MessageRecords.source_type"`)}
  306. }
  307. if _, ok := mrc.mutation.SourceID(); !ok {
  308. return &ValidationError{Name: "source_id", err: errors.New(`ent: missing required field "MessageRecords.source_id"`)}
  309. }
  310. if _, ok := mrc.mutation.SubSourceID(); !ok {
  311. return &ValidationError{Name: "sub_source_id", err: errors.New(`ent: missing required field "MessageRecords.sub_source_id"`)}
  312. }
  313. return nil
  314. }
  315. func (mrc *MessageRecordsCreate) sqlSave(ctx context.Context) (*MessageRecords, error) {
  316. if err := mrc.check(); err != nil {
  317. return nil, err
  318. }
  319. _node, _spec := mrc.createSpec()
  320. if err := sqlgraph.CreateNode(ctx, mrc.driver, _spec); err != nil {
  321. if sqlgraph.IsConstraintError(err) {
  322. err = &ConstraintError{msg: err.Error(), wrap: err}
  323. }
  324. return nil, err
  325. }
  326. if _spec.ID.Value != _node.ID {
  327. id := _spec.ID.Value.(int64)
  328. _node.ID = uint64(id)
  329. }
  330. mrc.mutation.id = &_node.ID
  331. mrc.mutation.done = true
  332. return _node, nil
  333. }
  334. func (mrc *MessageRecordsCreate) createSpec() (*MessageRecords, *sqlgraph.CreateSpec) {
  335. var (
  336. _node = &MessageRecords{config: mrc.config}
  337. _spec = sqlgraph.NewCreateSpec(messagerecords.Table, sqlgraph.NewFieldSpec(messagerecords.FieldID, field.TypeUint64))
  338. )
  339. _spec.OnConflict = mrc.conflict
  340. if id, ok := mrc.mutation.ID(); ok {
  341. _node.ID = id
  342. _spec.ID.Value = id
  343. }
  344. if value, ok := mrc.mutation.CreatedAt(); ok {
  345. _spec.SetField(messagerecords.FieldCreatedAt, field.TypeTime, value)
  346. _node.CreatedAt = value
  347. }
  348. if value, ok := mrc.mutation.UpdatedAt(); ok {
  349. _spec.SetField(messagerecords.FieldUpdatedAt, field.TypeTime, value)
  350. _node.UpdatedAt = value
  351. }
  352. if value, ok := mrc.mutation.Status(); ok {
  353. _spec.SetField(messagerecords.FieldStatus, field.TypeUint8, value)
  354. _node.Status = value
  355. }
  356. if value, ok := mrc.mutation.DeletedAt(); ok {
  357. _spec.SetField(messagerecords.FieldDeletedAt, field.TypeTime, value)
  358. _node.DeletedAt = value
  359. }
  360. if value, ok := mrc.mutation.BotWxid(); ok {
  361. _spec.SetField(messagerecords.FieldBotWxid, field.TypeString, value)
  362. _node.BotWxid = value
  363. }
  364. if value, ok := mrc.mutation.ContactID(); ok {
  365. _spec.SetField(messagerecords.FieldContactID, field.TypeInt, value)
  366. _node.ContactID = value
  367. }
  368. if value, ok := mrc.mutation.ContactType(); ok {
  369. _spec.SetField(messagerecords.FieldContactType, field.TypeInt, value)
  370. _node.ContactType = value
  371. }
  372. if value, ok := mrc.mutation.ContactWxid(); ok {
  373. _spec.SetField(messagerecords.FieldContactWxid, field.TypeString, value)
  374. _node.ContactWxid = value
  375. }
  376. if value, ok := mrc.mutation.ContentType(); ok {
  377. _spec.SetField(messagerecords.FieldContentType, field.TypeInt, value)
  378. _node.ContentType = value
  379. }
  380. if value, ok := mrc.mutation.Content(); ok {
  381. _spec.SetField(messagerecords.FieldContent, field.TypeString, value)
  382. _node.Content = value
  383. }
  384. if value, ok := mrc.mutation.ErrorDetail(); ok {
  385. _spec.SetField(messagerecords.FieldErrorDetail, field.TypeString, value)
  386. _node.ErrorDetail = value
  387. }
  388. if value, ok := mrc.mutation.SendTime(); ok {
  389. _spec.SetField(messagerecords.FieldSendTime, field.TypeTime, value)
  390. _node.SendTime = value
  391. }
  392. if value, ok := mrc.mutation.SourceType(); ok {
  393. _spec.SetField(messagerecords.FieldSourceType, field.TypeInt, value)
  394. _node.SourceType = value
  395. }
  396. if value, ok := mrc.mutation.SourceID(); ok {
  397. _spec.SetField(messagerecords.FieldSourceID, field.TypeInt, value)
  398. _node.SourceID = value
  399. }
  400. if value, ok := mrc.mutation.SubSourceID(); ok {
  401. _spec.SetField(messagerecords.FieldSubSourceID, field.TypeInt, value)
  402. _node.SubSourceID = value
  403. }
  404. return _node, _spec
  405. }
  406. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  407. // of the `INSERT` statement. For example:
  408. //
  409. // client.MessageRecords.Create().
  410. // SetCreatedAt(v).
  411. // OnConflict(
  412. // // Update the row with the new values
  413. // // the was proposed for insertion.
  414. // sql.ResolveWithNewValues(),
  415. // ).
  416. // // Override some of the fields with custom
  417. // // update values.
  418. // Update(func(u *ent.MessageRecordsUpsert) {
  419. // SetCreatedAt(v+v).
  420. // }).
  421. // Exec(ctx)
  422. func (mrc *MessageRecordsCreate) OnConflict(opts ...sql.ConflictOption) *MessageRecordsUpsertOne {
  423. mrc.conflict = opts
  424. return &MessageRecordsUpsertOne{
  425. create: mrc,
  426. }
  427. }
  428. // OnConflictColumns calls `OnConflict` and configures the columns
  429. // as conflict target. Using this option is equivalent to using:
  430. //
  431. // client.MessageRecords.Create().
  432. // OnConflict(sql.ConflictColumns(columns...)).
  433. // Exec(ctx)
  434. func (mrc *MessageRecordsCreate) OnConflictColumns(columns ...string) *MessageRecordsUpsertOne {
  435. mrc.conflict = append(mrc.conflict, sql.ConflictColumns(columns...))
  436. return &MessageRecordsUpsertOne{
  437. create: mrc,
  438. }
  439. }
  440. type (
  441. // MessageRecordsUpsertOne is the builder for "upsert"-ing
  442. // one MessageRecords node.
  443. MessageRecordsUpsertOne struct {
  444. create *MessageRecordsCreate
  445. }
  446. // MessageRecordsUpsert is the "OnConflict" setter.
  447. MessageRecordsUpsert struct {
  448. *sql.UpdateSet
  449. }
  450. )
  451. // SetUpdatedAt sets the "updated_at" field.
  452. func (u *MessageRecordsUpsert) SetUpdatedAt(v time.Time) *MessageRecordsUpsert {
  453. u.Set(messagerecords.FieldUpdatedAt, v)
  454. return u
  455. }
  456. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  457. func (u *MessageRecordsUpsert) UpdateUpdatedAt() *MessageRecordsUpsert {
  458. u.SetExcluded(messagerecords.FieldUpdatedAt)
  459. return u
  460. }
  461. // SetStatus sets the "status" field.
  462. func (u *MessageRecordsUpsert) SetStatus(v uint8) *MessageRecordsUpsert {
  463. u.Set(messagerecords.FieldStatus, v)
  464. return u
  465. }
  466. // UpdateStatus sets the "status" field to the value that was provided on create.
  467. func (u *MessageRecordsUpsert) UpdateStatus() *MessageRecordsUpsert {
  468. u.SetExcluded(messagerecords.FieldStatus)
  469. return u
  470. }
  471. // AddStatus adds v to the "status" field.
  472. func (u *MessageRecordsUpsert) AddStatus(v uint8) *MessageRecordsUpsert {
  473. u.Add(messagerecords.FieldStatus, v)
  474. return u
  475. }
  476. // ClearStatus clears the value of the "status" field.
  477. func (u *MessageRecordsUpsert) ClearStatus() *MessageRecordsUpsert {
  478. u.SetNull(messagerecords.FieldStatus)
  479. return u
  480. }
  481. // SetDeletedAt sets the "deleted_at" field.
  482. func (u *MessageRecordsUpsert) SetDeletedAt(v time.Time) *MessageRecordsUpsert {
  483. u.Set(messagerecords.FieldDeletedAt, v)
  484. return u
  485. }
  486. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  487. func (u *MessageRecordsUpsert) UpdateDeletedAt() *MessageRecordsUpsert {
  488. u.SetExcluded(messagerecords.FieldDeletedAt)
  489. return u
  490. }
  491. // ClearDeletedAt clears the value of the "deleted_at" field.
  492. func (u *MessageRecordsUpsert) ClearDeletedAt() *MessageRecordsUpsert {
  493. u.SetNull(messagerecords.FieldDeletedAt)
  494. return u
  495. }
  496. // SetBotWxid sets the "bot_wxid" field.
  497. func (u *MessageRecordsUpsert) SetBotWxid(v string) *MessageRecordsUpsert {
  498. u.Set(messagerecords.FieldBotWxid, v)
  499. return u
  500. }
  501. // UpdateBotWxid sets the "bot_wxid" field to the value that was provided on create.
  502. func (u *MessageRecordsUpsert) UpdateBotWxid() *MessageRecordsUpsert {
  503. u.SetExcluded(messagerecords.FieldBotWxid)
  504. return u
  505. }
  506. // SetContactID sets the "contact_id" field.
  507. func (u *MessageRecordsUpsert) SetContactID(v int) *MessageRecordsUpsert {
  508. u.Set(messagerecords.FieldContactID, v)
  509. return u
  510. }
  511. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  512. func (u *MessageRecordsUpsert) UpdateContactID() *MessageRecordsUpsert {
  513. u.SetExcluded(messagerecords.FieldContactID)
  514. return u
  515. }
  516. // AddContactID adds v to the "contact_id" field.
  517. func (u *MessageRecordsUpsert) AddContactID(v int) *MessageRecordsUpsert {
  518. u.Add(messagerecords.FieldContactID, v)
  519. return u
  520. }
  521. // SetContactType sets the "contact_type" field.
  522. func (u *MessageRecordsUpsert) SetContactType(v int) *MessageRecordsUpsert {
  523. u.Set(messagerecords.FieldContactType, v)
  524. return u
  525. }
  526. // UpdateContactType sets the "contact_type" field to the value that was provided on create.
  527. func (u *MessageRecordsUpsert) UpdateContactType() *MessageRecordsUpsert {
  528. u.SetExcluded(messagerecords.FieldContactType)
  529. return u
  530. }
  531. // AddContactType adds v to the "contact_type" field.
  532. func (u *MessageRecordsUpsert) AddContactType(v int) *MessageRecordsUpsert {
  533. u.Add(messagerecords.FieldContactType, v)
  534. return u
  535. }
  536. // SetContactWxid sets the "contact_wxid" field.
  537. func (u *MessageRecordsUpsert) SetContactWxid(v string) *MessageRecordsUpsert {
  538. u.Set(messagerecords.FieldContactWxid, v)
  539. return u
  540. }
  541. // UpdateContactWxid sets the "contact_wxid" field to the value that was provided on create.
  542. func (u *MessageRecordsUpsert) UpdateContactWxid() *MessageRecordsUpsert {
  543. u.SetExcluded(messagerecords.FieldContactWxid)
  544. return u
  545. }
  546. // SetContentType sets the "content_type" field.
  547. func (u *MessageRecordsUpsert) SetContentType(v int) *MessageRecordsUpsert {
  548. u.Set(messagerecords.FieldContentType, v)
  549. return u
  550. }
  551. // UpdateContentType sets the "content_type" field to the value that was provided on create.
  552. func (u *MessageRecordsUpsert) UpdateContentType() *MessageRecordsUpsert {
  553. u.SetExcluded(messagerecords.FieldContentType)
  554. return u
  555. }
  556. // AddContentType adds v to the "content_type" field.
  557. func (u *MessageRecordsUpsert) AddContentType(v int) *MessageRecordsUpsert {
  558. u.Add(messagerecords.FieldContentType, v)
  559. return u
  560. }
  561. // SetContent sets the "content" field.
  562. func (u *MessageRecordsUpsert) SetContent(v string) *MessageRecordsUpsert {
  563. u.Set(messagerecords.FieldContent, v)
  564. return u
  565. }
  566. // UpdateContent sets the "content" field to the value that was provided on create.
  567. func (u *MessageRecordsUpsert) UpdateContent() *MessageRecordsUpsert {
  568. u.SetExcluded(messagerecords.FieldContent)
  569. return u
  570. }
  571. // SetErrorDetail sets the "error_detail" field.
  572. func (u *MessageRecordsUpsert) SetErrorDetail(v string) *MessageRecordsUpsert {
  573. u.Set(messagerecords.FieldErrorDetail, v)
  574. return u
  575. }
  576. // UpdateErrorDetail sets the "error_detail" field to the value that was provided on create.
  577. func (u *MessageRecordsUpsert) UpdateErrorDetail() *MessageRecordsUpsert {
  578. u.SetExcluded(messagerecords.FieldErrorDetail)
  579. return u
  580. }
  581. // SetSendTime sets the "send_time" field.
  582. func (u *MessageRecordsUpsert) SetSendTime(v time.Time) *MessageRecordsUpsert {
  583. u.Set(messagerecords.FieldSendTime, v)
  584. return u
  585. }
  586. // UpdateSendTime sets the "send_time" field to the value that was provided on create.
  587. func (u *MessageRecordsUpsert) UpdateSendTime() *MessageRecordsUpsert {
  588. u.SetExcluded(messagerecords.FieldSendTime)
  589. return u
  590. }
  591. // ClearSendTime clears the value of the "send_time" field.
  592. func (u *MessageRecordsUpsert) ClearSendTime() *MessageRecordsUpsert {
  593. u.SetNull(messagerecords.FieldSendTime)
  594. return u
  595. }
  596. // SetSourceType sets the "source_type" field.
  597. func (u *MessageRecordsUpsert) SetSourceType(v int) *MessageRecordsUpsert {
  598. u.Set(messagerecords.FieldSourceType, v)
  599. return u
  600. }
  601. // UpdateSourceType sets the "source_type" field to the value that was provided on create.
  602. func (u *MessageRecordsUpsert) UpdateSourceType() *MessageRecordsUpsert {
  603. u.SetExcluded(messagerecords.FieldSourceType)
  604. return u
  605. }
  606. // AddSourceType adds v to the "source_type" field.
  607. func (u *MessageRecordsUpsert) AddSourceType(v int) *MessageRecordsUpsert {
  608. u.Add(messagerecords.FieldSourceType, v)
  609. return u
  610. }
  611. // SetSourceID sets the "source_id" field.
  612. func (u *MessageRecordsUpsert) SetSourceID(v int) *MessageRecordsUpsert {
  613. u.Set(messagerecords.FieldSourceID, v)
  614. return u
  615. }
  616. // UpdateSourceID sets the "source_id" field to the value that was provided on create.
  617. func (u *MessageRecordsUpsert) UpdateSourceID() *MessageRecordsUpsert {
  618. u.SetExcluded(messagerecords.FieldSourceID)
  619. return u
  620. }
  621. // AddSourceID adds v to the "source_id" field.
  622. func (u *MessageRecordsUpsert) AddSourceID(v int) *MessageRecordsUpsert {
  623. u.Add(messagerecords.FieldSourceID, v)
  624. return u
  625. }
  626. // SetSubSourceID sets the "sub_source_id" field.
  627. func (u *MessageRecordsUpsert) SetSubSourceID(v int) *MessageRecordsUpsert {
  628. u.Set(messagerecords.FieldSubSourceID, v)
  629. return u
  630. }
  631. // UpdateSubSourceID sets the "sub_source_id" field to the value that was provided on create.
  632. func (u *MessageRecordsUpsert) UpdateSubSourceID() *MessageRecordsUpsert {
  633. u.SetExcluded(messagerecords.FieldSubSourceID)
  634. return u
  635. }
  636. // AddSubSourceID adds v to the "sub_source_id" field.
  637. func (u *MessageRecordsUpsert) AddSubSourceID(v int) *MessageRecordsUpsert {
  638. u.Add(messagerecords.FieldSubSourceID, v)
  639. return u
  640. }
  641. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  642. // Using this option is equivalent to using:
  643. //
  644. // client.MessageRecords.Create().
  645. // OnConflict(
  646. // sql.ResolveWithNewValues(),
  647. // sql.ResolveWith(func(u *sql.UpdateSet) {
  648. // u.SetIgnore(messagerecords.FieldID)
  649. // }),
  650. // ).
  651. // Exec(ctx)
  652. func (u *MessageRecordsUpsertOne) UpdateNewValues() *MessageRecordsUpsertOne {
  653. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  654. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  655. if _, exists := u.create.mutation.ID(); exists {
  656. s.SetIgnore(messagerecords.FieldID)
  657. }
  658. if _, exists := u.create.mutation.CreatedAt(); exists {
  659. s.SetIgnore(messagerecords.FieldCreatedAt)
  660. }
  661. }))
  662. return u
  663. }
  664. // Ignore sets each column to itself in case of conflict.
  665. // Using this option is equivalent to using:
  666. //
  667. // client.MessageRecords.Create().
  668. // OnConflict(sql.ResolveWithIgnore()).
  669. // Exec(ctx)
  670. func (u *MessageRecordsUpsertOne) Ignore() *MessageRecordsUpsertOne {
  671. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  672. return u
  673. }
  674. // DoNothing configures the conflict_action to `DO NOTHING`.
  675. // Supported only by SQLite and PostgreSQL.
  676. func (u *MessageRecordsUpsertOne) DoNothing() *MessageRecordsUpsertOne {
  677. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  678. return u
  679. }
  680. // Update allows overriding fields `UPDATE` values. See the MessageRecordsCreate.OnConflict
  681. // documentation for more info.
  682. func (u *MessageRecordsUpsertOne) Update(set func(*MessageRecordsUpsert)) *MessageRecordsUpsertOne {
  683. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  684. set(&MessageRecordsUpsert{UpdateSet: update})
  685. }))
  686. return u
  687. }
  688. // SetUpdatedAt sets the "updated_at" field.
  689. func (u *MessageRecordsUpsertOne) SetUpdatedAt(v time.Time) *MessageRecordsUpsertOne {
  690. return u.Update(func(s *MessageRecordsUpsert) {
  691. s.SetUpdatedAt(v)
  692. })
  693. }
  694. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  695. func (u *MessageRecordsUpsertOne) UpdateUpdatedAt() *MessageRecordsUpsertOne {
  696. return u.Update(func(s *MessageRecordsUpsert) {
  697. s.UpdateUpdatedAt()
  698. })
  699. }
  700. // SetStatus sets the "status" field.
  701. func (u *MessageRecordsUpsertOne) SetStatus(v uint8) *MessageRecordsUpsertOne {
  702. return u.Update(func(s *MessageRecordsUpsert) {
  703. s.SetStatus(v)
  704. })
  705. }
  706. // AddStatus adds v to the "status" field.
  707. func (u *MessageRecordsUpsertOne) AddStatus(v uint8) *MessageRecordsUpsertOne {
  708. return u.Update(func(s *MessageRecordsUpsert) {
  709. s.AddStatus(v)
  710. })
  711. }
  712. // UpdateStatus sets the "status" field to the value that was provided on create.
  713. func (u *MessageRecordsUpsertOne) UpdateStatus() *MessageRecordsUpsertOne {
  714. return u.Update(func(s *MessageRecordsUpsert) {
  715. s.UpdateStatus()
  716. })
  717. }
  718. // ClearStatus clears the value of the "status" field.
  719. func (u *MessageRecordsUpsertOne) ClearStatus() *MessageRecordsUpsertOne {
  720. return u.Update(func(s *MessageRecordsUpsert) {
  721. s.ClearStatus()
  722. })
  723. }
  724. // SetDeletedAt sets the "deleted_at" field.
  725. func (u *MessageRecordsUpsertOne) SetDeletedAt(v time.Time) *MessageRecordsUpsertOne {
  726. return u.Update(func(s *MessageRecordsUpsert) {
  727. s.SetDeletedAt(v)
  728. })
  729. }
  730. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  731. func (u *MessageRecordsUpsertOne) UpdateDeletedAt() *MessageRecordsUpsertOne {
  732. return u.Update(func(s *MessageRecordsUpsert) {
  733. s.UpdateDeletedAt()
  734. })
  735. }
  736. // ClearDeletedAt clears the value of the "deleted_at" field.
  737. func (u *MessageRecordsUpsertOne) ClearDeletedAt() *MessageRecordsUpsertOne {
  738. return u.Update(func(s *MessageRecordsUpsert) {
  739. s.ClearDeletedAt()
  740. })
  741. }
  742. // SetBotWxid sets the "bot_wxid" field.
  743. func (u *MessageRecordsUpsertOne) SetBotWxid(v string) *MessageRecordsUpsertOne {
  744. return u.Update(func(s *MessageRecordsUpsert) {
  745. s.SetBotWxid(v)
  746. })
  747. }
  748. // UpdateBotWxid sets the "bot_wxid" field to the value that was provided on create.
  749. func (u *MessageRecordsUpsertOne) UpdateBotWxid() *MessageRecordsUpsertOne {
  750. return u.Update(func(s *MessageRecordsUpsert) {
  751. s.UpdateBotWxid()
  752. })
  753. }
  754. // SetContactID sets the "contact_id" field.
  755. func (u *MessageRecordsUpsertOne) SetContactID(v int) *MessageRecordsUpsertOne {
  756. return u.Update(func(s *MessageRecordsUpsert) {
  757. s.SetContactID(v)
  758. })
  759. }
  760. // AddContactID adds v to the "contact_id" field.
  761. func (u *MessageRecordsUpsertOne) AddContactID(v int) *MessageRecordsUpsertOne {
  762. return u.Update(func(s *MessageRecordsUpsert) {
  763. s.AddContactID(v)
  764. })
  765. }
  766. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  767. func (u *MessageRecordsUpsertOne) UpdateContactID() *MessageRecordsUpsertOne {
  768. return u.Update(func(s *MessageRecordsUpsert) {
  769. s.UpdateContactID()
  770. })
  771. }
  772. // SetContactType sets the "contact_type" field.
  773. func (u *MessageRecordsUpsertOne) SetContactType(v int) *MessageRecordsUpsertOne {
  774. return u.Update(func(s *MessageRecordsUpsert) {
  775. s.SetContactType(v)
  776. })
  777. }
  778. // AddContactType adds v to the "contact_type" field.
  779. func (u *MessageRecordsUpsertOne) AddContactType(v int) *MessageRecordsUpsertOne {
  780. return u.Update(func(s *MessageRecordsUpsert) {
  781. s.AddContactType(v)
  782. })
  783. }
  784. // UpdateContactType sets the "contact_type" field to the value that was provided on create.
  785. func (u *MessageRecordsUpsertOne) UpdateContactType() *MessageRecordsUpsertOne {
  786. return u.Update(func(s *MessageRecordsUpsert) {
  787. s.UpdateContactType()
  788. })
  789. }
  790. // SetContactWxid sets the "contact_wxid" field.
  791. func (u *MessageRecordsUpsertOne) SetContactWxid(v string) *MessageRecordsUpsertOne {
  792. return u.Update(func(s *MessageRecordsUpsert) {
  793. s.SetContactWxid(v)
  794. })
  795. }
  796. // UpdateContactWxid sets the "contact_wxid" field to the value that was provided on create.
  797. func (u *MessageRecordsUpsertOne) UpdateContactWxid() *MessageRecordsUpsertOne {
  798. return u.Update(func(s *MessageRecordsUpsert) {
  799. s.UpdateContactWxid()
  800. })
  801. }
  802. // SetContentType sets the "content_type" field.
  803. func (u *MessageRecordsUpsertOne) SetContentType(v int) *MessageRecordsUpsertOne {
  804. return u.Update(func(s *MessageRecordsUpsert) {
  805. s.SetContentType(v)
  806. })
  807. }
  808. // AddContentType adds v to the "content_type" field.
  809. func (u *MessageRecordsUpsertOne) AddContentType(v int) *MessageRecordsUpsertOne {
  810. return u.Update(func(s *MessageRecordsUpsert) {
  811. s.AddContentType(v)
  812. })
  813. }
  814. // UpdateContentType sets the "content_type" field to the value that was provided on create.
  815. func (u *MessageRecordsUpsertOne) UpdateContentType() *MessageRecordsUpsertOne {
  816. return u.Update(func(s *MessageRecordsUpsert) {
  817. s.UpdateContentType()
  818. })
  819. }
  820. // SetContent sets the "content" field.
  821. func (u *MessageRecordsUpsertOne) SetContent(v string) *MessageRecordsUpsertOne {
  822. return u.Update(func(s *MessageRecordsUpsert) {
  823. s.SetContent(v)
  824. })
  825. }
  826. // UpdateContent sets the "content" field to the value that was provided on create.
  827. func (u *MessageRecordsUpsertOne) UpdateContent() *MessageRecordsUpsertOne {
  828. return u.Update(func(s *MessageRecordsUpsert) {
  829. s.UpdateContent()
  830. })
  831. }
  832. // SetErrorDetail sets the "error_detail" field.
  833. func (u *MessageRecordsUpsertOne) SetErrorDetail(v string) *MessageRecordsUpsertOne {
  834. return u.Update(func(s *MessageRecordsUpsert) {
  835. s.SetErrorDetail(v)
  836. })
  837. }
  838. // UpdateErrorDetail sets the "error_detail" field to the value that was provided on create.
  839. func (u *MessageRecordsUpsertOne) UpdateErrorDetail() *MessageRecordsUpsertOne {
  840. return u.Update(func(s *MessageRecordsUpsert) {
  841. s.UpdateErrorDetail()
  842. })
  843. }
  844. // SetSendTime sets the "send_time" field.
  845. func (u *MessageRecordsUpsertOne) SetSendTime(v time.Time) *MessageRecordsUpsertOne {
  846. return u.Update(func(s *MessageRecordsUpsert) {
  847. s.SetSendTime(v)
  848. })
  849. }
  850. // UpdateSendTime sets the "send_time" field to the value that was provided on create.
  851. func (u *MessageRecordsUpsertOne) UpdateSendTime() *MessageRecordsUpsertOne {
  852. return u.Update(func(s *MessageRecordsUpsert) {
  853. s.UpdateSendTime()
  854. })
  855. }
  856. // ClearSendTime clears the value of the "send_time" field.
  857. func (u *MessageRecordsUpsertOne) ClearSendTime() *MessageRecordsUpsertOne {
  858. return u.Update(func(s *MessageRecordsUpsert) {
  859. s.ClearSendTime()
  860. })
  861. }
  862. // SetSourceType sets the "source_type" field.
  863. func (u *MessageRecordsUpsertOne) SetSourceType(v int) *MessageRecordsUpsertOne {
  864. return u.Update(func(s *MessageRecordsUpsert) {
  865. s.SetSourceType(v)
  866. })
  867. }
  868. // AddSourceType adds v to the "source_type" field.
  869. func (u *MessageRecordsUpsertOne) AddSourceType(v int) *MessageRecordsUpsertOne {
  870. return u.Update(func(s *MessageRecordsUpsert) {
  871. s.AddSourceType(v)
  872. })
  873. }
  874. // UpdateSourceType sets the "source_type" field to the value that was provided on create.
  875. func (u *MessageRecordsUpsertOne) UpdateSourceType() *MessageRecordsUpsertOne {
  876. return u.Update(func(s *MessageRecordsUpsert) {
  877. s.UpdateSourceType()
  878. })
  879. }
  880. // SetSourceID sets the "source_id" field.
  881. func (u *MessageRecordsUpsertOne) SetSourceID(v int) *MessageRecordsUpsertOne {
  882. return u.Update(func(s *MessageRecordsUpsert) {
  883. s.SetSourceID(v)
  884. })
  885. }
  886. // AddSourceID adds v to the "source_id" field.
  887. func (u *MessageRecordsUpsertOne) AddSourceID(v int) *MessageRecordsUpsertOne {
  888. return u.Update(func(s *MessageRecordsUpsert) {
  889. s.AddSourceID(v)
  890. })
  891. }
  892. // UpdateSourceID sets the "source_id" field to the value that was provided on create.
  893. func (u *MessageRecordsUpsertOne) UpdateSourceID() *MessageRecordsUpsertOne {
  894. return u.Update(func(s *MessageRecordsUpsert) {
  895. s.UpdateSourceID()
  896. })
  897. }
  898. // SetSubSourceID sets the "sub_source_id" field.
  899. func (u *MessageRecordsUpsertOne) SetSubSourceID(v int) *MessageRecordsUpsertOne {
  900. return u.Update(func(s *MessageRecordsUpsert) {
  901. s.SetSubSourceID(v)
  902. })
  903. }
  904. // AddSubSourceID adds v to the "sub_source_id" field.
  905. func (u *MessageRecordsUpsertOne) AddSubSourceID(v int) *MessageRecordsUpsertOne {
  906. return u.Update(func(s *MessageRecordsUpsert) {
  907. s.AddSubSourceID(v)
  908. })
  909. }
  910. // UpdateSubSourceID sets the "sub_source_id" field to the value that was provided on create.
  911. func (u *MessageRecordsUpsertOne) UpdateSubSourceID() *MessageRecordsUpsertOne {
  912. return u.Update(func(s *MessageRecordsUpsert) {
  913. s.UpdateSubSourceID()
  914. })
  915. }
  916. // Exec executes the query.
  917. func (u *MessageRecordsUpsertOne) Exec(ctx context.Context) error {
  918. if len(u.create.conflict) == 0 {
  919. return errors.New("ent: missing options for MessageRecordsCreate.OnConflict")
  920. }
  921. return u.create.Exec(ctx)
  922. }
  923. // ExecX is like Exec, but panics if an error occurs.
  924. func (u *MessageRecordsUpsertOne) ExecX(ctx context.Context) {
  925. if err := u.create.Exec(ctx); err != nil {
  926. panic(err)
  927. }
  928. }
  929. // Exec executes the UPSERT query and returns the inserted/updated ID.
  930. func (u *MessageRecordsUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  931. node, err := u.create.Save(ctx)
  932. if err != nil {
  933. return id, err
  934. }
  935. return node.ID, nil
  936. }
  937. // IDX is like ID, but panics if an error occurs.
  938. func (u *MessageRecordsUpsertOne) IDX(ctx context.Context) uint64 {
  939. id, err := u.ID(ctx)
  940. if err != nil {
  941. panic(err)
  942. }
  943. return id
  944. }
  945. // MessageRecordsCreateBulk is the builder for creating many MessageRecords entities in bulk.
  946. type MessageRecordsCreateBulk struct {
  947. config
  948. err error
  949. builders []*MessageRecordsCreate
  950. conflict []sql.ConflictOption
  951. }
  952. // Save creates the MessageRecords entities in the database.
  953. func (mrcb *MessageRecordsCreateBulk) Save(ctx context.Context) ([]*MessageRecords, error) {
  954. if mrcb.err != nil {
  955. return nil, mrcb.err
  956. }
  957. specs := make([]*sqlgraph.CreateSpec, len(mrcb.builders))
  958. nodes := make([]*MessageRecords, len(mrcb.builders))
  959. mutators := make([]Mutator, len(mrcb.builders))
  960. for i := range mrcb.builders {
  961. func(i int, root context.Context) {
  962. builder := mrcb.builders[i]
  963. builder.defaults()
  964. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  965. mutation, ok := m.(*MessageRecordsMutation)
  966. if !ok {
  967. return nil, fmt.Errorf("unexpected mutation type %T", m)
  968. }
  969. if err := builder.check(); err != nil {
  970. return nil, err
  971. }
  972. builder.mutation = mutation
  973. var err error
  974. nodes[i], specs[i] = builder.createSpec()
  975. if i < len(mutators)-1 {
  976. _, err = mutators[i+1].Mutate(root, mrcb.builders[i+1].mutation)
  977. } else {
  978. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  979. spec.OnConflict = mrcb.conflict
  980. // Invoke the actual operation on the latest mutation in the chain.
  981. if err = sqlgraph.BatchCreate(ctx, mrcb.driver, spec); err != nil {
  982. if sqlgraph.IsConstraintError(err) {
  983. err = &ConstraintError{msg: err.Error(), wrap: err}
  984. }
  985. }
  986. }
  987. if err != nil {
  988. return nil, err
  989. }
  990. mutation.id = &nodes[i].ID
  991. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  992. id := specs[i].ID.Value.(int64)
  993. nodes[i].ID = uint64(id)
  994. }
  995. mutation.done = true
  996. return nodes[i], nil
  997. })
  998. for i := len(builder.hooks) - 1; i >= 0; i-- {
  999. mut = builder.hooks[i](mut)
  1000. }
  1001. mutators[i] = mut
  1002. }(i, ctx)
  1003. }
  1004. if len(mutators) > 0 {
  1005. if _, err := mutators[0].Mutate(ctx, mrcb.builders[0].mutation); err != nil {
  1006. return nil, err
  1007. }
  1008. }
  1009. return nodes, nil
  1010. }
  1011. // SaveX is like Save, but panics if an error occurs.
  1012. func (mrcb *MessageRecordsCreateBulk) SaveX(ctx context.Context) []*MessageRecords {
  1013. v, err := mrcb.Save(ctx)
  1014. if err != nil {
  1015. panic(err)
  1016. }
  1017. return v
  1018. }
  1019. // Exec executes the query.
  1020. func (mrcb *MessageRecordsCreateBulk) Exec(ctx context.Context) error {
  1021. _, err := mrcb.Save(ctx)
  1022. return err
  1023. }
  1024. // ExecX is like Exec, but panics if an error occurs.
  1025. func (mrcb *MessageRecordsCreateBulk) ExecX(ctx context.Context) {
  1026. if err := mrcb.Exec(ctx); err != nil {
  1027. panic(err)
  1028. }
  1029. }
  1030. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  1031. // of the `INSERT` statement. For example:
  1032. //
  1033. // client.MessageRecords.CreateBulk(builders...).
  1034. // OnConflict(
  1035. // // Update the row with the new values
  1036. // // the was proposed for insertion.
  1037. // sql.ResolveWithNewValues(),
  1038. // ).
  1039. // // Override some of the fields with custom
  1040. // // update values.
  1041. // Update(func(u *ent.MessageRecordsUpsert) {
  1042. // SetCreatedAt(v+v).
  1043. // }).
  1044. // Exec(ctx)
  1045. func (mrcb *MessageRecordsCreateBulk) OnConflict(opts ...sql.ConflictOption) *MessageRecordsUpsertBulk {
  1046. mrcb.conflict = opts
  1047. return &MessageRecordsUpsertBulk{
  1048. create: mrcb,
  1049. }
  1050. }
  1051. // OnConflictColumns calls `OnConflict` and configures the columns
  1052. // as conflict target. Using this option is equivalent to using:
  1053. //
  1054. // client.MessageRecords.Create().
  1055. // OnConflict(sql.ConflictColumns(columns...)).
  1056. // Exec(ctx)
  1057. func (mrcb *MessageRecordsCreateBulk) OnConflictColumns(columns ...string) *MessageRecordsUpsertBulk {
  1058. mrcb.conflict = append(mrcb.conflict, sql.ConflictColumns(columns...))
  1059. return &MessageRecordsUpsertBulk{
  1060. create: mrcb,
  1061. }
  1062. }
  1063. // MessageRecordsUpsertBulk is the builder for "upsert"-ing
  1064. // a bulk of MessageRecords nodes.
  1065. type MessageRecordsUpsertBulk struct {
  1066. create *MessageRecordsCreateBulk
  1067. }
  1068. // UpdateNewValues updates the mutable fields using the new values that
  1069. // were set on create. Using this option is equivalent to using:
  1070. //
  1071. // client.MessageRecords.Create().
  1072. // OnConflict(
  1073. // sql.ResolveWithNewValues(),
  1074. // sql.ResolveWith(func(u *sql.UpdateSet) {
  1075. // u.SetIgnore(messagerecords.FieldID)
  1076. // }),
  1077. // ).
  1078. // Exec(ctx)
  1079. func (u *MessageRecordsUpsertBulk) UpdateNewValues() *MessageRecordsUpsertBulk {
  1080. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  1081. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  1082. for _, b := range u.create.builders {
  1083. if _, exists := b.mutation.ID(); exists {
  1084. s.SetIgnore(messagerecords.FieldID)
  1085. }
  1086. if _, exists := b.mutation.CreatedAt(); exists {
  1087. s.SetIgnore(messagerecords.FieldCreatedAt)
  1088. }
  1089. }
  1090. }))
  1091. return u
  1092. }
  1093. // Ignore sets each column to itself in case of conflict.
  1094. // Using this option is equivalent to using:
  1095. //
  1096. // client.MessageRecords.Create().
  1097. // OnConflict(sql.ResolveWithIgnore()).
  1098. // Exec(ctx)
  1099. func (u *MessageRecordsUpsertBulk) Ignore() *MessageRecordsUpsertBulk {
  1100. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  1101. return u
  1102. }
  1103. // DoNothing configures the conflict_action to `DO NOTHING`.
  1104. // Supported only by SQLite and PostgreSQL.
  1105. func (u *MessageRecordsUpsertBulk) DoNothing() *MessageRecordsUpsertBulk {
  1106. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  1107. return u
  1108. }
  1109. // Update allows overriding fields `UPDATE` values. See the MessageRecordsCreateBulk.OnConflict
  1110. // documentation for more info.
  1111. func (u *MessageRecordsUpsertBulk) Update(set func(*MessageRecordsUpsert)) *MessageRecordsUpsertBulk {
  1112. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  1113. set(&MessageRecordsUpsert{UpdateSet: update})
  1114. }))
  1115. return u
  1116. }
  1117. // SetUpdatedAt sets the "updated_at" field.
  1118. func (u *MessageRecordsUpsertBulk) SetUpdatedAt(v time.Time) *MessageRecordsUpsertBulk {
  1119. return u.Update(func(s *MessageRecordsUpsert) {
  1120. s.SetUpdatedAt(v)
  1121. })
  1122. }
  1123. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  1124. func (u *MessageRecordsUpsertBulk) UpdateUpdatedAt() *MessageRecordsUpsertBulk {
  1125. return u.Update(func(s *MessageRecordsUpsert) {
  1126. s.UpdateUpdatedAt()
  1127. })
  1128. }
  1129. // SetStatus sets the "status" field.
  1130. func (u *MessageRecordsUpsertBulk) SetStatus(v uint8) *MessageRecordsUpsertBulk {
  1131. return u.Update(func(s *MessageRecordsUpsert) {
  1132. s.SetStatus(v)
  1133. })
  1134. }
  1135. // AddStatus adds v to the "status" field.
  1136. func (u *MessageRecordsUpsertBulk) AddStatus(v uint8) *MessageRecordsUpsertBulk {
  1137. return u.Update(func(s *MessageRecordsUpsert) {
  1138. s.AddStatus(v)
  1139. })
  1140. }
  1141. // UpdateStatus sets the "status" field to the value that was provided on create.
  1142. func (u *MessageRecordsUpsertBulk) UpdateStatus() *MessageRecordsUpsertBulk {
  1143. return u.Update(func(s *MessageRecordsUpsert) {
  1144. s.UpdateStatus()
  1145. })
  1146. }
  1147. // ClearStatus clears the value of the "status" field.
  1148. func (u *MessageRecordsUpsertBulk) ClearStatus() *MessageRecordsUpsertBulk {
  1149. return u.Update(func(s *MessageRecordsUpsert) {
  1150. s.ClearStatus()
  1151. })
  1152. }
  1153. // SetDeletedAt sets the "deleted_at" field.
  1154. func (u *MessageRecordsUpsertBulk) SetDeletedAt(v time.Time) *MessageRecordsUpsertBulk {
  1155. return u.Update(func(s *MessageRecordsUpsert) {
  1156. s.SetDeletedAt(v)
  1157. })
  1158. }
  1159. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  1160. func (u *MessageRecordsUpsertBulk) UpdateDeletedAt() *MessageRecordsUpsertBulk {
  1161. return u.Update(func(s *MessageRecordsUpsert) {
  1162. s.UpdateDeletedAt()
  1163. })
  1164. }
  1165. // ClearDeletedAt clears the value of the "deleted_at" field.
  1166. func (u *MessageRecordsUpsertBulk) ClearDeletedAt() *MessageRecordsUpsertBulk {
  1167. return u.Update(func(s *MessageRecordsUpsert) {
  1168. s.ClearDeletedAt()
  1169. })
  1170. }
  1171. // SetBotWxid sets the "bot_wxid" field.
  1172. func (u *MessageRecordsUpsertBulk) SetBotWxid(v string) *MessageRecordsUpsertBulk {
  1173. return u.Update(func(s *MessageRecordsUpsert) {
  1174. s.SetBotWxid(v)
  1175. })
  1176. }
  1177. // UpdateBotWxid sets the "bot_wxid" field to the value that was provided on create.
  1178. func (u *MessageRecordsUpsertBulk) UpdateBotWxid() *MessageRecordsUpsertBulk {
  1179. return u.Update(func(s *MessageRecordsUpsert) {
  1180. s.UpdateBotWxid()
  1181. })
  1182. }
  1183. // SetContactID sets the "contact_id" field.
  1184. func (u *MessageRecordsUpsertBulk) SetContactID(v int) *MessageRecordsUpsertBulk {
  1185. return u.Update(func(s *MessageRecordsUpsert) {
  1186. s.SetContactID(v)
  1187. })
  1188. }
  1189. // AddContactID adds v to the "contact_id" field.
  1190. func (u *MessageRecordsUpsertBulk) AddContactID(v int) *MessageRecordsUpsertBulk {
  1191. return u.Update(func(s *MessageRecordsUpsert) {
  1192. s.AddContactID(v)
  1193. })
  1194. }
  1195. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  1196. func (u *MessageRecordsUpsertBulk) UpdateContactID() *MessageRecordsUpsertBulk {
  1197. return u.Update(func(s *MessageRecordsUpsert) {
  1198. s.UpdateContactID()
  1199. })
  1200. }
  1201. // SetContactType sets the "contact_type" field.
  1202. func (u *MessageRecordsUpsertBulk) SetContactType(v int) *MessageRecordsUpsertBulk {
  1203. return u.Update(func(s *MessageRecordsUpsert) {
  1204. s.SetContactType(v)
  1205. })
  1206. }
  1207. // AddContactType adds v to the "contact_type" field.
  1208. func (u *MessageRecordsUpsertBulk) AddContactType(v int) *MessageRecordsUpsertBulk {
  1209. return u.Update(func(s *MessageRecordsUpsert) {
  1210. s.AddContactType(v)
  1211. })
  1212. }
  1213. // UpdateContactType sets the "contact_type" field to the value that was provided on create.
  1214. func (u *MessageRecordsUpsertBulk) UpdateContactType() *MessageRecordsUpsertBulk {
  1215. return u.Update(func(s *MessageRecordsUpsert) {
  1216. s.UpdateContactType()
  1217. })
  1218. }
  1219. // SetContactWxid sets the "contact_wxid" field.
  1220. func (u *MessageRecordsUpsertBulk) SetContactWxid(v string) *MessageRecordsUpsertBulk {
  1221. return u.Update(func(s *MessageRecordsUpsert) {
  1222. s.SetContactWxid(v)
  1223. })
  1224. }
  1225. // UpdateContactWxid sets the "contact_wxid" field to the value that was provided on create.
  1226. func (u *MessageRecordsUpsertBulk) UpdateContactWxid() *MessageRecordsUpsertBulk {
  1227. return u.Update(func(s *MessageRecordsUpsert) {
  1228. s.UpdateContactWxid()
  1229. })
  1230. }
  1231. // SetContentType sets the "content_type" field.
  1232. func (u *MessageRecordsUpsertBulk) SetContentType(v int) *MessageRecordsUpsertBulk {
  1233. return u.Update(func(s *MessageRecordsUpsert) {
  1234. s.SetContentType(v)
  1235. })
  1236. }
  1237. // AddContentType adds v to the "content_type" field.
  1238. func (u *MessageRecordsUpsertBulk) AddContentType(v int) *MessageRecordsUpsertBulk {
  1239. return u.Update(func(s *MessageRecordsUpsert) {
  1240. s.AddContentType(v)
  1241. })
  1242. }
  1243. // UpdateContentType sets the "content_type" field to the value that was provided on create.
  1244. func (u *MessageRecordsUpsertBulk) UpdateContentType() *MessageRecordsUpsertBulk {
  1245. return u.Update(func(s *MessageRecordsUpsert) {
  1246. s.UpdateContentType()
  1247. })
  1248. }
  1249. // SetContent sets the "content" field.
  1250. func (u *MessageRecordsUpsertBulk) SetContent(v string) *MessageRecordsUpsertBulk {
  1251. return u.Update(func(s *MessageRecordsUpsert) {
  1252. s.SetContent(v)
  1253. })
  1254. }
  1255. // UpdateContent sets the "content" field to the value that was provided on create.
  1256. func (u *MessageRecordsUpsertBulk) UpdateContent() *MessageRecordsUpsertBulk {
  1257. return u.Update(func(s *MessageRecordsUpsert) {
  1258. s.UpdateContent()
  1259. })
  1260. }
  1261. // SetErrorDetail sets the "error_detail" field.
  1262. func (u *MessageRecordsUpsertBulk) SetErrorDetail(v string) *MessageRecordsUpsertBulk {
  1263. return u.Update(func(s *MessageRecordsUpsert) {
  1264. s.SetErrorDetail(v)
  1265. })
  1266. }
  1267. // UpdateErrorDetail sets the "error_detail" field to the value that was provided on create.
  1268. func (u *MessageRecordsUpsertBulk) UpdateErrorDetail() *MessageRecordsUpsertBulk {
  1269. return u.Update(func(s *MessageRecordsUpsert) {
  1270. s.UpdateErrorDetail()
  1271. })
  1272. }
  1273. // SetSendTime sets the "send_time" field.
  1274. func (u *MessageRecordsUpsertBulk) SetSendTime(v time.Time) *MessageRecordsUpsertBulk {
  1275. return u.Update(func(s *MessageRecordsUpsert) {
  1276. s.SetSendTime(v)
  1277. })
  1278. }
  1279. // UpdateSendTime sets the "send_time" field to the value that was provided on create.
  1280. func (u *MessageRecordsUpsertBulk) UpdateSendTime() *MessageRecordsUpsertBulk {
  1281. return u.Update(func(s *MessageRecordsUpsert) {
  1282. s.UpdateSendTime()
  1283. })
  1284. }
  1285. // ClearSendTime clears the value of the "send_time" field.
  1286. func (u *MessageRecordsUpsertBulk) ClearSendTime() *MessageRecordsUpsertBulk {
  1287. return u.Update(func(s *MessageRecordsUpsert) {
  1288. s.ClearSendTime()
  1289. })
  1290. }
  1291. // SetSourceType sets the "source_type" field.
  1292. func (u *MessageRecordsUpsertBulk) SetSourceType(v int) *MessageRecordsUpsertBulk {
  1293. return u.Update(func(s *MessageRecordsUpsert) {
  1294. s.SetSourceType(v)
  1295. })
  1296. }
  1297. // AddSourceType adds v to the "source_type" field.
  1298. func (u *MessageRecordsUpsertBulk) AddSourceType(v int) *MessageRecordsUpsertBulk {
  1299. return u.Update(func(s *MessageRecordsUpsert) {
  1300. s.AddSourceType(v)
  1301. })
  1302. }
  1303. // UpdateSourceType sets the "source_type" field to the value that was provided on create.
  1304. func (u *MessageRecordsUpsertBulk) UpdateSourceType() *MessageRecordsUpsertBulk {
  1305. return u.Update(func(s *MessageRecordsUpsert) {
  1306. s.UpdateSourceType()
  1307. })
  1308. }
  1309. // SetSourceID sets the "source_id" field.
  1310. func (u *MessageRecordsUpsertBulk) SetSourceID(v int) *MessageRecordsUpsertBulk {
  1311. return u.Update(func(s *MessageRecordsUpsert) {
  1312. s.SetSourceID(v)
  1313. })
  1314. }
  1315. // AddSourceID adds v to the "source_id" field.
  1316. func (u *MessageRecordsUpsertBulk) AddSourceID(v int) *MessageRecordsUpsertBulk {
  1317. return u.Update(func(s *MessageRecordsUpsert) {
  1318. s.AddSourceID(v)
  1319. })
  1320. }
  1321. // UpdateSourceID sets the "source_id" field to the value that was provided on create.
  1322. func (u *MessageRecordsUpsertBulk) UpdateSourceID() *MessageRecordsUpsertBulk {
  1323. return u.Update(func(s *MessageRecordsUpsert) {
  1324. s.UpdateSourceID()
  1325. })
  1326. }
  1327. // SetSubSourceID sets the "sub_source_id" field.
  1328. func (u *MessageRecordsUpsertBulk) SetSubSourceID(v int) *MessageRecordsUpsertBulk {
  1329. return u.Update(func(s *MessageRecordsUpsert) {
  1330. s.SetSubSourceID(v)
  1331. })
  1332. }
  1333. // AddSubSourceID adds v to the "sub_source_id" field.
  1334. func (u *MessageRecordsUpsertBulk) AddSubSourceID(v int) *MessageRecordsUpsertBulk {
  1335. return u.Update(func(s *MessageRecordsUpsert) {
  1336. s.AddSubSourceID(v)
  1337. })
  1338. }
  1339. // UpdateSubSourceID sets the "sub_source_id" field to the value that was provided on create.
  1340. func (u *MessageRecordsUpsertBulk) UpdateSubSourceID() *MessageRecordsUpsertBulk {
  1341. return u.Update(func(s *MessageRecordsUpsert) {
  1342. s.UpdateSubSourceID()
  1343. })
  1344. }
  1345. // Exec executes the query.
  1346. func (u *MessageRecordsUpsertBulk) Exec(ctx context.Context) error {
  1347. if u.create.err != nil {
  1348. return u.create.err
  1349. }
  1350. for i, b := range u.create.builders {
  1351. if len(b.conflict) != 0 {
  1352. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the MessageRecordsCreateBulk instead", i)
  1353. }
  1354. }
  1355. if len(u.create.conflict) == 0 {
  1356. return errors.New("ent: missing options for MessageRecordsCreateBulk.OnConflict")
  1357. }
  1358. return u.create.Exec(ctx)
  1359. }
  1360. // ExecX is like Exec, but panics if an error occurs.
  1361. func (u *MessageRecordsUpsertBulk) ExecX(ctx context.Context) {
  1362. if err := u.create.Exec(ctx); err != nil {
  1363. panic(err)
  1364. }
  1365. }