payrecharge_create.go 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  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/payrecharge"
  9. "entgo.io/ent/dialect/sql"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // PayRechargeCreate is the builder for creating a PayRecharge entity.
  14. type PayRechargeCreate struct {
  15. config
  16. mutation *PayRechargeMutation
  17. hooks []Hook
  18. conflict []sql.ConflictOption
  19. }
  20. // SetCreatedAt sets the "created_at" field.
  21. func (prc *PayRechargeCreate) SetCreatedAt(t time.Time) *PayRechargeCreate {
  22. prc.mutation.SetCreatedAt(t)
  23. return prc
  24. }
  25. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  26. func (prc *PayRechargeCreate) SetNillableCreatedAt(t *time.Time) *PayRechargeCreate {
  27. if t != nil {
  28. prc.SetCreatedAt(*t)
  29. }
  30. return prc
  31. }
  32. // SetUpdatedAt sets the "updated_at" field.
  33. func (prc *PayRechargeCreate) SetUpdatedAt(t time.Time) *PayRechargeCreate {
  34. prc.mutation.SetUpdatedAt(t)
  35. return prc
  36. }
  37. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  38. func (prc *PayRechargeCreate) SetNillableUpdatedAt(t *time.Time) *PayRechargeCreate {
  39. if t != nil {
  40. prc.SetUpdatedAt(*t)
  41. }
  42. return prc
  43. }
  44. // SetDeletedAt sets the "deleted_at" field.
  45. func (prc *PayRechargeCreate) SetDeletedAt(t time.Time) *PayRechargeCreate {
  46. prc.mutation.SetDeletedAt(t)
  47. return prc
  48. }
  49. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  50. func (prc *PayRechargeCreate) SetNillableDeletedAt(t *time.Time) *PayRechargeCreate {
  51. if t != nil {
  52. prc.SetDeletedAt(*t)
  53. }
  54. return prc
  55. }
  56. // SetUserID sets the "user_id" field.
  57. func (prc *PayRechargeCreate) SetUserID(s string) *PayRechargeCreate {
  58. prc.mutation.SetUserID(s)
  59. return prc
  60. }
  61. // SetNumber sets the "number" field.
  62. func (prc *PayRechargeCreate) SetNumber(f float32) *PayRechargeCreate {
  63. prc.mutation.SetNumber(f)
  64. return prc
  65. }
  66. // SetNillableNumber sets the "number" field if the given value is not nil.
  67. func (prc *PayRechargeCreate) SetNillableNumber(f *float32) *PayRechargeCreate {
  68. if f != nil {
  69. prc.SetNumber(*f)
  70. }
  71. return prc
  72. }
  73. // SetStatus sets the "status" field.
  74. func (prc *PayRechargeCreate) SetStatus(i int) *PayRechargeCreate {
  75. prc.mutation.SetStatus(i)
  76. return prc
  77. }
  78. // SetNillableStatus sets the "status" field if the given value is not nil.
  79. func (prc *PayRechargeCreate) SetNillableStatus(i *int) *PayRechargeCreate {
  80. if i != nil {
  81. prc.SetStatus(*i)
  82. }
  83. return prc
  84. }
  85. // SetMoney sets the "money" field.
  86. func (prc *PayRechargeCreate) SetMoney(f float32) *PayRechargeCreate {
  87. prc.mutation.SetMoney(f)
  88. return prc
  89. }
  90. // SetNillableMoney sets the "money" field if the given value is not nil.
  91. func (prc *PayRechargeCreate) SetNillableMoney(f *float32) *PayRechargeCreate {
  92. if f != nil {
  93. prc.SetMoney(*f)
  94. }
  95. return prc
  96. }
  97. // SetOutTradeNo sets the "out_trade_no" field.
  98. func (prc *PayRechargeCreate) SetOutTradeNo(s string) *PayRechargeCreate {
  99. prc.mutation.SetOutTradeNo(s)
  100. return prc
  101. }
  102. // SetNillableOutTradeNo sets the "out_trade_no" field if the given value is not nil.
  103. func (prc *PayRechargeCreate) SetNillableOutTradeNo(s *string) *PayRechargeCreate {
  104. if s != nil {
  105. prc.SetOutTradeNo(*s)
  106. }
  107. return prc
  108. }
  109. // SetOrganizationID sets the "organization_id" field.
  110. func (prc *PayRechargeCreate) SetOrganizationID(u uint64) *PayRechargeCreate {
  111. prc.mutation.SetOrganizationID(u)
  112. return prc
  113. }
  114. // SetID sets the "id" field.
  115. func (prc *PayRechargeCreate) SetID(u uint64) *PayRechargeCreate {
  116. prc.mutation.SetID(u)
  117. return prc
  118. }
  119. // Mutation returns the PayRechargeMutation object of the builder.
  120. func (prc *PayRechargeCreate) Mutation() *PayRechargeMutation {
  121. return prc.mutation
  122. }
  123. // Save creates the PayRecharge in the database.
  124. func (prc *PayRechargeCreate) Save(ctx context.Context) (*PayRecharge, error) {
  125. if err := prc.defaults(); err != nil {
  126. return nil, err
  127. }
  128. return withHooks(ctx, prc.sqlSave, prc.mutation, prc.hooks)
  129. }
  130. // SaveX calls Save and panics if Save returns an error.
  131. func (prc *PayRechargeCreate) SaveX(ctx context.Context) *PayRecharge {
  132. v, err := prc.Save(ctx)
  133. if err != nil {
  134. panic(err)
  135. }
  136. return v
  137. }
  138. // Exec executes the query.
  139. func (prc *PayRechargeCreate) Exec(ctx context.Context) error {
  140. _, err := prc.Save(ctx)
  141. return err
  142. }
  143. // ExecX is like Exec, but panics if an error occurs.
  144. func (prc *PayRechargeCreate) ExecX(ctx context.Context) {
  145. if err := prc.Exec(ctx); err != nil {
  146. panic(err)
  147. }
  148. }
  149. // defaults sets the default values of the builder before save.
  150. func (prc *PayRechargeCreate) defaults() error {
  151. if _, ok := prc.mutation.CreatedAt(); !ok {
  152. if payrecharge.DefaultCreatedAt == nil {
  153. return fmt.Errorf("ent: uninitialized payrecharge.DefaultCreatedAt (forgotten import ent/runtime?)")
  154. }
  155. v := payrecharge.DefaultCreatedAt()
  156. prc.mutation.SetCreatedAt(v)
  157. }
  158. if _, ok := prc.mutation.UpdatedAt(); !ok {
  159. if payrecharge.DefaultUpdatedAt == nil {
  160. return fmt.Errorf("ent: uninitialized payrecharge.DefaultUpdatedAt (forgotten import ent/runtime?)")
  161. }
  162. v := payrecharge.DefaultUpdatedAt()
  163. prc.mutation.SetUpdatedAt(v)
  164. }
  165. if _, ok := prc.mutation.Number(); !ok {
  166. v := payrecharge.DefaultNumber
  167. prc.mutation.SetNumber(v)
  168. }
  169. if _, ok := prc.mutation.Status(); !ok {
  170. v := payrecharge.DefaultStatus
  171. prc.mutation.SetStatus(v)
  172. }
  173. if _, ok := prc.mutation.Money(); !ok {
  174. v := payrecharge.DefaultMoney
  175. prc.mutation.SetMoney(v)
  176. }
  177. if _, ok := prc.mutation.OutTradeNo(); !ok {
  178. v := payrecharge.DefaultOutTradeNo
  179. prc.mutation.SetOutTradeNo(v)
  180. }
  181. return nil
  182. }
  183. // check runs all checks and user-defined validators on the builder.
  184. func (prc *PayRechargeCreate) check() error {
  185. if _, ok := prc.mutation.CreatedAt(); !ok {
  186. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "PayRecharge.created_at"`)}
  187. }
  188. if _, ok := prc.mutation.UpdatedAt(); !ok {
  189. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "PayRecharge.updated_at"`)}
  190. }
  191. if _, ok := prc.mutation.UserID(); !ok {
  192. return &ValidationError{Name: "user_id", err: errors.New(`ent: missing required field "PayRecharge.user_id"`)}
  193. }
  194. if v, ok := prc.mutation.UserID(); ok {
  195. if err := payrecharge.UserIDValidator(v); err != nil {
  196. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "PayRecharge.user_id": %w`, err)}
  197. }
  198. }
  199. if _, ok := prc.mutation.Number(); !ok {
  200. return &ValidationError{Name: "number", err: errors.New(`ent: missing required field "PayRecharge.number"`)}
  201. }
  202. if v, ok := prc.mutation.Status(); ok {
  203. if err := payrecharge.StatusValidator(v); err != nil {
  204. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "PayRecharge.status": %w`, err)}
  205. }
  206. }
  207. if _, ok := prc.mutation.OrganizationID(); !ok {
  208. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "PayRecharge.organization_id"`)}
  209. }
  210. if v, ok := prc.mutation.OrganizationID(); ok {
  211. if err := payrecharge.OrganizationIDValidator(v); err != nil {
  212. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "PayRecharge.organization_id": %w`, err)}
  213. }
  214. }
  215. return nil
  216. }
  217. func (prc *PayRechargeCreate) sqlSave(ctx context.Context) (*PayRecharge, error) {
  218. if err := prc.check(); err != nil {
  219. return nil, err
  220. }
  221. _node, _spec := prc.createSpec()
  222. if err := sqlgraph.CreateNode(ctx, prc.driver, _spec); err != nil {
  223. if sqlgraph.IsConstraintError(err) {
  224. err = &ConstraintError{msg: err.Error(), wrap: err}
  225. }
  226. return nil, err
  227. }
  228. if _spec.ID.Value != _node.ID {
  229. id := _spec.ID.Value.(int64)
  230. _node.ID = uint64(id)
  231. }
  232. prc.mutation.id = &_node.ID
  233. prc.mutation.done = true
  234. return _node, nil
  235. }
  236. func (prc *PayRechargeCreate) createSpec() (*PayRecharge, *sqlgraph.CreateSpec) {
  237. var (
  238. _node = &PayRecharge{config: prc.config}
  239. _spec = sqlgraph.NewCreateSpec(payrecharge.Table, sqlgraph.NewFieldSpec(payrecharge.FieldID, field.TypeUint64))
  240. )
  241. _spec.OnConflict = prc.conflict
  242. if id, ok := prc.mutation.ID(); ok {
  243. _node.ID = id
  244. _spec.ID.Value = id
  245. }
  246. if value, ok := prc.mutation.CreatedAt(); ok {
  247. _spec.SetField(payrecharge.FieldCreatedAt, field.TypeTime, value)
  248. _node.CreatedAt = value
  249. }
  250. if value, ok := prc.mutation.UpdatedAt(); ok {
  251. _spec.SetField(payrecharge.FieldUpdatedAt, field.TypeTime, value)
  252. _node.UpdatedAt = value
  253. }
  254. if value, ok := prc.mutation.DeletedAt(); ok {
  255. _spec.SetField(payrecharge.FieldDeletedAt, field.TypeTime, value)
  256. _node.DeletedAt = value
  257. }
  258. if value, ok := prc.mutation.UserID(); ok {
  259. _spec.SetField(payrecharge.FieldUserID, field.TypeString, value)
  260. _node.UserID = value
  261. }
  262. if value, ok := prc.mutation.Number(); ok {
  263. _spec.SetField(payrecharge.FieldNumber, field.TypeFloat32, value)
  264. _node.Number = value
  265. }
  266. if value, ok := prc.mutation.Status(); ok {
  267. _spec.SetField(payrecharge.FieldStatus, field.TypeInt, value)
  268. _node.Status = value
  269. }
  270. if value, ok := prc.mutation.Money(); ok {
  271. _spec.SetField(payrecharge.FieldMoney, field.TypeFloat32, value)
  272. _node.Money = value
  273. }
  274. if value, ok := prc.mutation.OutTradeNo(); ok {
  275. _spec.SetField(payrecharge.FieldOutTradeNo, field.TypeString, value)
  276. _node.OutTradeNo = value
  277. }
  278. if value, ok := prc.mutation.OrganizationID(); ok {
  279. _spec.SetField(payrecharge.FieldOrganizationID, field.TypeUint64, value)
  280. _node.OrganizationID = value
  281. }
  282. return _node, _spec
  283. }
  284. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  285. // of the `INSERT` statement. For example:
  286. //
  287. // client.PayRecharge.Create().
  288. // SetCreatedAt(v).
  289. // OnConflict(
  290. // // Update the row with the new values
  291. // // the was proposed for insertion.
  292. // sql.ResolveWithNewValues(),
  293. // ).
  294. // // Override some of the fields with custom
  295. // // update values.
  296. // Update(func(u *ent.PayRechargeUpsert) {
  297. // SetCreatedAt(v+v).
  298. // }).
  299. // Exec(ctx)
  300. func (prc *PayRechargeCreate) OnConflict(opts ...sql.ConflictOption) *PayRechargeUpsertOne {
  301. prc.conflict = opts
  302. return &PayRechargeUpsertOne{
  303. create: prc,
  304. }
  305. }
  306. // OnConflictColumns calls `OnConflict` and configures the columns
  307. // as conflict target. Using this option is equivalent to using:
  308. //
  309. // client.PayRecharge.Create().
  310. // OnConflict(sql.ConflictColumns(columns...)).
  311. // Exec(ctx)
  312. func (prc *PayRechargeCreate) OnConflictColumns(columns ...string) *PayRechargeUpsertOne {
  313. prc.conflict = append(prc.conflict, sql.ConflictColumns(columns...))
  314. return &PayRechargeUpsertOne{
  315. create: prc,
  316. }
  317. }
  318. type (
  319. // PayRechargeUpsertOne is the builder for "upsert"-ing
  320. // one PayRecharge node.
  321. PayRechargeUpsertOne struct {
  322. create *PayRechargeCreate
  323. }
  324. // PayRechargeUpsert is the "OnConflict" setter.
  325. PayRechargeUpsert struct {
  326. *sql.UpdateSet
  327. }
  328. )
  329. // SetUpdatedAt sets the "updated_at" field.
  330. func (u *PayRechargeUpsert) SetUpdatedAt(v time.Time) *PayRechargeUpsert {
  331. u.Set(payrecharge.FieldUpdatedAt, v)
  332. return u
  333. }
  334. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  335. func (u *PayRechargeUpsert) UpdateUpdatedAt() *PayRechargeUpsert {
  336. u.SetExcluded(payrecharge.FieldUpdatedAt)
  337. return u
  338. }
  339. // SetDeletedAt sets the "deleted_at" field.
  340. func (u *PayRechargeUpsert) SetDeletedAt(v time.Time) *PayRechargeUpsert {
  341. u.Set(payrecharge.FieldDeletedAt, v)
  342. return u
  343. }
  344. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  345. func (u *PayRechargeUpsert) UpdateDeletedAt() *PayRechargeUpsert {
  346. u.SetExcluded(payrecharge.FieldDeletedAt)
  347. return u
  348. }
  349. // ClearDeletedAt clears the value of the "deleted_at" field.
  350. func (u *PayRechargeUpsert) ClearDeletedAt() *PayRechargeUpsert {
  351. u.SetNull(payrecharge.FieldDeletedAt)
  352. return u
  353. }
  354. // SetUserID sets the "user_id" field.
  355. func (u *PayRechargeUpsert) SetUserID(v string) *PayRechargeUpsert {
  356. u.Set(payrecharge.FieldUserID, v)
  357. return u
  358. }
  359. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  360. func (u *PayRechargeUpsert) UpdateUserID() *PayRechargeUpsert {
  361. u.SetExcluded(payrecharge.FieldUserID)
  362. return u
  363. }
  364. // SetNumber sets the "number" field.
  365. func (u *PayRechargeUpsert) SetNumber(v float32) *PayRechargeUpsert {
  366. u.Set(payrecharge.FieldNumber, v)
  367. return u
  368. }
  369. // UpdateNumber sets the "number" field to the value that was provided on create.
  370. func (u *PayRechargeUpsert) UpdateNumber() *PayRechargeUpsert {
  371. u.SetExcluded(payrecharge.FieldNumber)
  372. return u
  373. }
  374. // AddNumber adds v to the "number" field.
  375. func (u *PayRechargeUpsert) AddNumber(v float32) *PayRechargeUpsert {
  376. u.Add(payrecharge.FieldNumber, v)
  377. return u
  378. }
  379. // SetStatus sets the "status" field.
  380. func (u *PayRechargeUpsert) SetStatus(v int) *PayRechargeUpsert {
  381. u.Set(payrecharge.FieldStatus, v)
  382. return u
  383. }
  384. // UpdateStatus sets the "status" field to the value that was provided on create.
  385. func (u *PayRechargeUpsert) UpdateStatus() *PayRechargeUpsert {
  386. u.SetExcluded(payrecharge.FieldStatus)
  387. return u
  388. }
  389. // AddStatus adds v to the "status" field.
  390. func (u *PayRechargeUpsert) AddStatus(v int) *PayRechargeUpsert {
  391. u.Add(payrecharge.FieldStatus, v)
  392. return u
  393. }
  394. // ClearStatus clears the value of the "status" field.
  395. func (u *PayRechargeUpsert) ClearStatus() *PayRechargeUpsert {
  396. u.SetNull(payrecharge.FieldStatus)
  397. return u
  398. }
  399. // SetMoney sets the "money" field.
  400. func (u *PayRechargeUpsert) SetMoney(v float32) *PayRechargeUpsert {
  401. u.Set(payrecharge.FieldMoney, v)
  402. return u
  403. }
  404. // UpdateMoney sets the "money" field to the value that was provided on create.
  405. func (u *PayRechargeUpsert) UpdateMoney() *PayRechargeUpsert {
  406. u.SetExcluded(payrecharge.FieldMoney)
  407. return u
  408. }
  409. // AddMoney adds v to the "money" field.
  410. func (u *PayRechargeUpsert) AddMoney(v float32) *PayRechargeUpsert {
  411. u.Add(payrecharge.FieldMoney, v)
  412. return u
  413. }
  414. // ClearMoney clears the value of the "money" field.
  415. func (u *PayRechargeUpsert) ClearMoney() *PayRechargeUpsert {
  416. u.SetNull(payrecharge.FieldMoney)
  417. return u
  418. }
  419. // SetOutTradeNo sets the "out_trade_no" field.
  420. func (u *PayRechargeUpsert) SetOutTradeNo(v string) *PayRechargeUpsert {
  421. u.Set(payrecharge.FieldOutTradeNo, v)
  422. return u
  423. }
  424. // UpdateOutTradeNo sets the "out_trade_no" field to the value that was provided on create.
  425. func (u *PayRechargeUpsert) UpdateOutTradeNo() *PayRechargeUpsert {
  426. u.SetExcluded(payrecharge.FieldOutTradeNo)
  427. return u
  428. }
  429. // ClearOutTradeNo clears the value of the "out_trade_no" field.
  430. func (u *PayRechargeUpsert) ClearOutTradeNo() *PayRechargeUpsert {
  431. u.SetNull(payrecharge.FieldOutTradeNo)
  432. return u
  433. }
  434. // SetOrganizationID sets the "organization_id" field.
  435. func (u *PayRechargeUpsert) SetOrganizationID(v uint64) *PayRechargeUpsert {
  436. u.Set(payrecharge.FieldOrganizationID, v)
  437. return u
  438. }
  439. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  440. func (u *PayRechargeUpsert) UpdateOrganizationID() *PayRechargeUpsert {
  441. u.SetExcluded(payrecharge.FieldOrganizationID)
  442. return u
  443. }
  444. // AddOrganizationID adds v to the "organization_id" field.
  445. func (u *PayRechargeUpsert) AddOrganizationID(v uint64) *PayRechargeUpsert {
  446. u.Add(payrecharge.FieldOrganizationID, v)
  447. return u
  448. }
  449. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  450. // Using this option is equivalent to using:
  451. //
  452. // client.PayRecharge.Create().
  453. // OnConflict(
  454. // sql.ResolveWithNewValues(),
  455. // sql.ResolveWith(func(u *sql.UpdateSet) {
  456. // u.SetIgnore(payrecharge.FieldID)
  457. // }),
  458. // ).
  459. // Exec(ctx)
  460. func (u *PayRechargeUpsertOne) UpdateNewValues() *PayRechargeUpsertOne {
  461. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  462. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  463. if _, exists := u.create.mutation.ID(); exists {
  464. s.SetIgnore(payrecharge.FieldID)
  465. }
  466. if _, exists := u.create.mutation.CreatedAt(); exists {
  467. s.SetIgnore(payrecharge.FieldCreatedAt)
  468. }
  469. }))
  470. return u
  471. }
  472. // Ignore sets each column to itself in case of conflict.
  473. // Using this option is equivalent to using:
  474. //
  475. // client.PayRecharge.Create().
  476. // OnConflict(sql.ResolveWithIgnore()).
  477. // Exec(ctx)
  478. func (u *PayRechargeUpsertOne) Ignore() *PayRechargeUpsertOne {
  479. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  480. return u
  481. }
  482. // DoNothing configures the conflict_action to `DO NOTHING`.
  483. // Supported only by SQLite and PostgreSQL.
  484. func (u *PayRechargeUpsertOne) DoNothing() *PayRechargeUpsertOne {
  485. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  486. return u
  487. }
  488. // Update allows overriding fields `UPDATE` values. See the PayRechargeCreate.OnConflict
  489. // documentation for more info.
  490. func (u *PayRechargeUpsertOne) Update(set func(*PayRechargeUpsert)) *PayRechargeUpsertOne {
  491. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  492. set(&PayRechargeUpsert{UpdateSet: update})
  493. }))
  494. return u
  495. }
  496. // SetUpdatedAt sets the "updated_at" field.
  497. func (u *PayRechargeUpsertOne) SetUpdatedAt(v time.Time) *PayRechargeUpsertOne {
  498. return u.Update(func(s *PayRechargeUpsert) {
  499. s.SetUpdatedAt(v)
  500. })
  501. }
  502. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  503. func (u *PayRechargeUpsertOne) UpdateUpdatedAt() *PayRechargeUpsertOne {
  504. return u.Update(func(s *PayRechargeUpsert) {
  505. s.UpdateUpdatedAt()
  506. })
  507. }
  508. // SetDeletedAt sets the "deleted_at" field.
  509. func (u *PayRechargeUpsertOne) SetDeletedAt(v time.Time) *PayRechargeUpsertOne {
  510. return u.Update(func(s *PayRechargeUpsert) {
  511. s.SetDeletedAt(v)
  512. })
  513. }
  514. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  515. func (u *PayRechargeUpsertOne) UpdateDeletedAt() *PayRechargeUpsertOne {
  516. return u.Update(func(s *PayRechargeUpsert) {
  517. s.UpdateDeletedAt()
  518. })
  519. }
  520. // ClearDeletedAt clears the value of the "deleted_at" field.
  521. func (u *PayRechargeUpsertOne) ClearDeletedAt() *PayRechargeUpsertOne {
  522. return u.Update(func(s *PayRechargeUpsert) {
  523. s.ClearDeletedAt()
  524. })
  525. }
  526. // SetUserID sets the "user_id" field.
  527. func (u *PayRechargeUpsertOne) SetUserID(v string) *PayRechargeUpsertOne {
  528. return u.Update(func(s *PayRechargeUpsert) {
  529. s.SetUserID(v)
  530. })
  531. }
  532. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  533. func (u *PayRechargeUpsertOne) UpdateUserID() *PayRechargeUpsertOne {
  534. return u.Update(func(s *PayRechargeUpsert) {
  535. s.UpdateUserID()
  536. })
  537. }
  538. // SetNumber sets the "number" field.
  539. func (u *PayRechargeUpsertOne) SetNumber(v float32) *PayRechargeUpsertOne {
  540. return u.Update(func(s *PayRechargeUpsert) {
  541. s.SetNumber(v)
  542. })
  543. }
  544. // AddNumber adds v to the "number" field.
  545. func (u *PayRechargeUpsertOne) AddNumber(v float32) *PayRechargeUpsertOne {
  546. return u.Update(func(s *PayRechargeUpsert) {
  547. s.AddNumber(v)
  548. })
  549. }
  550. // UpdateNumber sets the "number" field to the value that was provided on create.
  551. func (u *PayRechargeUpsertOne) UpdateNumber() *PayRechargeUpsertOne {
  552. return u.Update(func(s *PayRechargeUpsert) {
  553. s.UpdateNumber()
  554. })
  555. }
  556. // SetStatus sets the "status" field.
  557. func (u *PayRechargeUpsertOne) SetStatus(v int) *PayRechargeUpsertOne {
  558. return u.Update(func(s *PayRechargeUpsert) {
  559. s.SetStatus(v)
  560. })
  561. }
  562. // AddStatus adds v to the "status" field.
  563. func (u *PayRechargeUpsertOne) AddStatus(v int) *PayRechargeUpsertOne {
  564. return u.Update(func(s *PayRechargeUpsert) {
  565. s.AddStatus(v)
  566. })
  567. }
  568. // UpdateStatus sets the "status" field to the value that was provided on create.
  569. func (u *PayRechargeUpsertOne) UpdateStatus() *PayRechargeUpsertOne {
  570. return u.Update(func(s *PayRechargeUpsert) {
  571. s.UpdateStatus()
  572. })
  573. }
  574. // ClearStatus clears the value of the "status" field.
  575. func (u *PayRechargeUpsertOne) ClearStatus() *PayRechargeUpsertOne {
  576. return u.Update(func(s *PayRechargeUpsert) {
  577. s.ClearStatus()
  578. })
  579. }
  580. // SetMoney sets the "money" field.
  581. func (u *PayRechargeUpsertOne) SetMoney(v float32) *PayRechargeUpsertOne {
  582. return u.Update(func(s *PayRechargeUpsert) {
  583. s.SetMoney(v)
  584. })
  585. }
  586. // AddMoney adds v to the "money" field.
  587. func (u *PayRechargeUpsertOne) AddMoney(v float32) *PayRechargeUpsertOne {
  588. return u.Update(func(s *PayRechargeUpsert) {
  589. s.AddMoney(v)
  590. })
  591. }
  592. // UpdateMoney sets the "money" field to the value that was provided on create.
  593. func (u *PayRechargeUpsertOne) UpdateMoney() *PayRechargeUpsertOne {
  594. return u.Update(func(s *PayRechargeUpsert) {
  595. s.UpdateMoney()
  596. })
  597. }
  598. // ClearMoney clears the value of the "money" field.
  599. func (u *PayRechargeUpsertOne) ClearMoney() *PayRechargeUpsertOne {
  600. return u.Update(func(s *PayRechargeUpsert) {
  601. s.ClearMoney()
  602. })
  603. }
  604. // SetOutTradeNo sets the "out_trade_no" field.
  605. func (u *PayRechargeUpsertOne) SetOutTradeNo(v string) *PayRechargeUpsertOne {
  606. return u.Update(func(s *PayRechargeUpsert) {
  607. s.SetOutTradeNo(v)
  608. })
  609. }
  610. // UpdateOutTradeNo sets the "out_trade_no" field to the value that was provided on create.
  611. func (u *PayRechargeUpsertOne) UpdateOutTradeNo() *PayRechargeUpsertOne {
  612. return u.Update(func(s *PayRechargeUpsert) {
  613. s.UpdateOutTradeNo()
  614. })
  615. }
  616. // ClearOutTradeNo clears the value of the "out_trade_no" field.
  617. func (u *PayRechargeUpsertOne) ClearOutTradeNo() *PayRechargeUpsertOne {
  618. return u.Update(func(s *PayRechargeUpsert) {
  619. s.ClearOutTradeNo()
  620. })
  621. }
  622. // SetOrganizationID sets the "organization_id" field.
  623. func (u *PayRechargeUpsertOne) SetOrganizationID(v uint64) *PayRechargeUpsertOne {
  624. return u.Update(func(s *PayRechargeUpsert) {
  625. s.SetOrganizationID(v)
  626. })
  627. }
  628. // AddOrganizationID adds v to the "organization_id" field.
  629. func (u *PayRechargeUpsertOne) AddOrganizationID(v uint64) *PayRechargeUpsertOne {
  630. return u.Update(func(s *PayRechargeUpsert) {
  631. s.AddOrganizationID(v)
  632. })
  633. }
  634. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  635. func (u *PayRechargeUpsertOne) UpdateOrganizationID() *PayRechargeUpsertOne {
  636. return u.Update(func(s *PayRechargeUpsert) {
  637. s.UpdateOrganizationID()
  638. })
  639. }
  640. // Exec executes the query.
  641. func (u *PayRechargeUpsertOne) Exec(ctx context.Context) error {
  642. if len(u.create.conflict) == 0 {
  643. return errors.New("ent: missing options for PayRechargeCreate.OnConflict")
  644. }
  645. return u.create.Exec(ctx)
  646. }
  647. // ExecX is like Exec, but panics if an error occurs.
  648. func (u *PayRechargeUpsertOne) ExecX(ctx context.Context) {
  649. if err := u.create.Exec(ctx); err != nil {
  650. panic(err)
  651. }
  652. }
  653. // Exec executes the UPSERT query and returns the inserted/updated ID.
  654. func (u *PayRechargeUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  655. node, err := u.create.Save(ctx)
  656. if err != nil {
  657. return id, err
  658. }
  659. return node.ID, nil
  660. }
  661. // IDX is like ID, but panics if an error occurs.
  662. func (u *PayRechargeUpsertOne) IDX(ctx context.Context) uint64 {
  663. id, err := u.ID(ctx)
  664. if err != nil {
  665. panic(err)
  666. }
  667. return id
  668. }
  669. // PayRechargeCreateBulk is the builder for creating many PayRecharge entities in bulk.
  670. type PayRechargeCreateBulk struct {
  671. config
  672. err error
  673. builders []*PayRechargeCreate
  674. conflict []sql.ConflictOption
  675. }
  676. // Save creates the PayRecharge entities in the database.
  677. func (prcb *PayRechargeCreateBulk) Save(ctx context.Context) ([]*PayRecharge, error) {
  678. if prcb.err != nil {
  679. return nil, prcb.err
  680. }
  681. specs := make([]*sqlgraph.CreateSpec, len(prcb.builders))
  682. nodes := make([]*PayRecharge, len(prcb.builders))
  683. mutators := make([]Mutator, len(prcb.builders))
  684. for i := range prcb.builders {
  685. func(i int, root context.Context) {
  686. builder := prcb.builders[i]
  687. builder.defaults()
  688. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  689. mutation, ok := m.(*PayRechargeMutation)
  690. if !ok {
  691. return nil, fmt.Errorf("unexpected mutation type %T", m)
  692. }
  693. if err := builder.check(); err != nil {
  694. return nil, err
  695. }
  696. builder.mutation = mutation
  697. var err error
  698. nodes[i], specs[i] = builder.createSpec()
  699. if i < len(mutators)-1 {
  700. _, err = mutators[i+1].Mutate(root, prcb.builders[i+1].mutation)
  701. } else {
  702. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  703. spec.OnConflict = prcb.conflict
  704. // Invoke the actual operation on the latest mutation in the chain.
  705. if err = sqlgraph.BatchCreate(ctx, prcb.driver, spec); err != nil {
  706. if sqlgraph.IsConstraintError(err) {
  707. err = &ConstraintError{msg: err.Error(), wrap: err}
  708. }
  709. }
  710. }
  711. if err != nil {
  712. return nil, err
  713. }
  714. mutation.id = &nodes[i].ID
  715. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  716. id := specs[i].ID.Value.(int64)
  717. nodes[i].ID = uint64(id)
  718. }
  719. mutation.done = true
  720. return nodes[i], nil
  721. })
  722. for i := len(builder.hooks) - 1; i >= 0; i-- {
  723. mut = builder.hooks[i](mut)
  724. }
  725. mutators[i] = mut
  726. }(i, ctx)
  727. }
  728. if len(mutators) > 0 {
  729. if _, err := mutators[0].Mutate(ctx, prcb.builders[0].mutation); err != nil {
  730. return nil, err
  731. }
  732. }
  733. return nodes, nil
  734. }
  735. // SaveX is like Save, but panics if an error occurs.
  736. func (prcb *PayRechargeCreateBulk) SaveX(ctx context.Context) []*PayRecharge {
  737. v, err := prcb.Save(ctx)
  738. if err != nil {
  739. panic(err)
  740. }
  741. return v
  742. }
  743. // Exec executes the query.
  744. func (prcb *PayRechargeCreateBulk) Exec(ctx context.Context) error {
  745. _, err := prcb.Save(ctx)
  746. return err
  747. }
  748. // ExecX is like Exec, but panics if an error occurs.
  749. func (prcb *PayRechargeCreateBulk) ExecX(ctx context.Context) {
  750. if err := prcb.Exec(ctx); err != nil {
  751. panic(err)
  752. }
  753. }
  754. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  755. // of the `INSERT` statement. For example:
  756. //
  757. // client.PayRecharge.CreateBulk(builders...).
  758. // OnConflict(
  759. // // Update the row with the new values
  760. // // the was proposed for insertion.
  761. // sql.ResolveWithNewValues(),
  762. // ).
  763. // // Override some of the fields with custom
  764. // // update values.
  765. // Update(func(u *ent.PayRechargeUpsert) {
  766. // SetCreatedAt(v+v).
  767. // }).
  768. // Exec(ctx)
  769. func (prcb *PayRechargeCreateBulk) OnConflict(opts ...sql.ConflictOption) *PayRechargeUpsertBulk {
  770. prcb.conflict = opts
  771. return &PayRechargeUpsertBulk{
  772. create: prcb,
  773. }
  774. }
  775. // OnConflictColumns calls `OnConflict` and configures the columns
  776. // as conflict target. Using this option is equivalent to using:
  777. //
  778. // client.PayRecharge.Create().
  779. // OnConflict(sql.ConflictColumns(columns...)).
  780. // Exec(ctx)
  781. func (prcb *PayRechargeCreateBulk) OnConflictColumns(columns ...string) *PayRechargeUpsertBulk {
  782. prcb.conflict = append(prcb.conflict, sql.ConflictColumns(columns...))
  783. return &PayRechargeUpsertBulk{
  784. create: prcb,
  785. }
  786. }
  787. // PayRechargeUpsertBulk is the builder for "upsert"-ing
  788. // a bulk of PayRecharge nodes.
  789. type PayRechargeUpsertBulk struct {
  790. create *PayRechargeCreateBulk
  791. }
  792. // UpdateNewValues updates the mutable fields using the new values that
  793. // were set on create. Using this option is equivalent to using:
  794. //
  795. // client.PayRecharge.Create().
  796. // OnConflict(
  797. // sql.ResolveWithNewValues(),
  798. // sql.ResolveWith(func(u *sql.UpdateSet) {
  799. // u.SetIgnore(payrecharge.FieldID)
  800. // }),
  801. // ).
  802. // Exec(ctx)
  803. func (u *PayRechargeUpsertBulk) UpdateNewValues() *PayRechargeUpsertBulk {
  804. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  805. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  806. for _, b := range u.create.builders {
  807. if _, exists := b.mutation.ID(); exists {
  808. s.SetIgnore(payrecharge.FieldID)
  809. }
  810. if _, exists := b.mutation.CreatedAt(); exists {
  811. s.SetIgnore(payrecharge.FieldCreatedAt)
  812. }
  813. }
  814. }))
  815. return u
  816. }
  817. // Ignore sets each column to itself in case of conflict.
  818. // Using this option is equivalent to using:
  819. //
  820. // client.PayRecharge.Create().
  821. // OnConflict(sql.ResolveWithIgnore()).
  822. // Exec(ctx)
  823. func (u *PayRechargeUpsertBulk) Ignore() *PayRechargeUpsertBulk {
  824. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  825. return u
  826. }
  827. // DoNothing configures the conflict_action to `DO NOTHING`.
  828. // Supported only by SQLite and PostgreSQL.
  829. func (u *PayRechargeUpsertBulk) DoNothing() *PayRechargeUpsertBulk {
  830. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  831. return u
  832. }
  833. // Update allows overriding fields `UPDATE` values. See the PayRechargeCreateBulk.OnConflict
  834. // documentation for more info.
  835. func (u *PayRechargeUpsertBulk) Update(set func(*PayRechargeUpsert)) *PayRechargeUpsertBulk {
  836. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  837. set(&PayRechargeUpsert{UpdateSet: update})
  838. }))
  839. return u
  840. }
  841. // SetUpdatedAt sets the "updated_at" field.
  842. func (u *PayRechargeUpsertBulk) SetUpdatedAt(v time.Time) *PayRechargeUpsertBulk {
  843. return u.Update(func(s *PayRechargeUpsert) {
  844. s.SetUpdatedAt(v)
  845. })
  846. }
  847. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  848. func (u *PayRechargeUpsertBulk) UpdateUpdatedAt() *PayRechargeUpsertBulk {
  849. return u.Update(func(s *PayRechargeUpsert) {
  850. s.UpdateUpdatedAt()
  851. })
  852. }
  853. // SetDeletedAt sets the "deleted_at" field.
  854. func (u *PayRechargeUpsertBulk) SetDeletedAt(v time.Time) *PayRechargeUpsertBulk {
  855. return u.Update(func(s *PayRechargeUpsert) {
  856. s.SetDeletedAt(v)
  857. })
  858. }
  859. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  860. func (u *PayRechargeUpsertBulk) UpdateDeletedAt() *PayRechargeUpsertBulk {
  861. return u.Update(func(s *PayRechargeUpsert) {
  862. s.UpdateDeletedAt()
  863. })
  864. }
  865. // ClearDeletedAt clears the value of the "deleted_at" field.
  866. func (u *PayRechargeUpsertBulk) ClearDeletedAt() *PayRechargeUpsertBulk {
  867. return u.Update(func(s *PayRechargeUpsert) {
  868. s.ClearDeletedAt()
  869. })
  870. }
  871. // SetUserID sets the "user_id" field.
  872. func (u *PayRechargeUpsertBulk) SetUserID(v string) *PayRechargeUpsertBulk {
  873. return u.Update(func(s *PayRechargeUpsert) {
  874. s.SetUserID(v)
  875. })
  876. }
  877. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  878. func (u *PayRechargeUpsertBulk) UpdateUserID() *PayRechargeUpsertBulk {
  879. return u.Update(func(s *PayRechargeUpsert) {
  880. s.UpdateUserID()
  881. })
  882. }
  883. // SetNumber sets the "number" field.
  884. func (u *PayRechargeUpsertBulk) SetNumber(v float32) *PayRechargeUpsertBulk {
  885. return u.Update(func(s *PayRechargeUpsert) {
  886. s.SetNumber(v)
  887. })
  888. }
  889. // AddNumber adds v to the "number" field.
  890. func (u *PayRechargeUpsertBulk) AddNumber(v float32) *PayRechargeUpsertBulk {
  891. return u.Update(func(s *PayRechargeUpsert) {
  892. s.AddNumber(v)
  893. })
  894. }
  895. // UpdateNumber sets the "number" field to the value that was provided on create.
  896. func (u *PayRechargeUpsertBulk) UpdateNumber() *PayRechargeUpsertBulk {
  897. return u.Update(func(s *PayRechargeUpsert) {
  898. s.UpdateNumber()
  899. })
  900. }
  901. // SetStatus sets the "status" field.
  902. func (u *PayRechargeUpsertBulk) SetStatus(v int) *PayRechargeUpsertBulk {
  903. return u.Update(func(s *PayRechargeUpsert) {
  904. s.SetStatus(v)
  905. })
  906. }
  907. // AddStatus adds v to the "status" field.
  908. func (u *PayRechargeUpsertBulk) AddStatus(v int) *PayRechargeUpsertBulk {
  909. return u.Update(func(s *PayRechargeUpsert) {
  910. s.AddStatus(v)
  911. })
  912. }
  913. // UpdateStatus sets the "status" field to the value that was provided on create.
  914. func (u *PayRechargeUpsertBulk) UpdateStatus() *PayRechargeUpsertBulk {
  915. return u.Update(func(s *PayRechargeUpsert) {
  916. s.UpdateStatus()
  917. })
  918. }
  919. // ClearStatus clears the value of the "status" field.
  920. func (u *PayRechargeUpsertBulk) ClearStatus() *PayRechargeUpsertBulk {
  921. return u.Update(func(s *PayRechargeUpsert) {
  922. s.ClearStatus()
  923. })
  924. }
  925. // SetMoney sets the "money" field.
  926. func (u *PayRechargeUpsertBulk) SetMoney(v float32) *PayRechargeUpsertBulk {
  927. return u.Update(func(s *PayRechargeUpsert) {
  928. s.SetMoney(v)
  929. })
  930. }
  931. // AddMoney adds v to the "money" field.
  932. func (u *PayRechargeUpsertBulk) AddMoney(v float32) *PayRechargeUpsertBulk {
  933. return u.Update(func(s *PayRechargeUpsert) {
  934. s.AddMoney(v)
  935. })
  936. }
  937. // UpdateMoney sets the "money" field to the value that was provided on create.
  938. func (u *PayRechargeUpsertBulk) UpdateMoney() *PayRechargeUpsertBulk {
  939. return u.Update(func(s *PayRechargeUpsert) {
  940. s.UpdateMoney()
  941. })
  942. }
  943. // ClearMoney clears the value of the "money" field.
  944. func (u *PayRechargeUpsertBulk) ClearMoney() *PayRechargeUpsertBulk {
  945. return u.Update(func(s *PayRechargeUpsert) {
  946. s.ClearMoney()
  947. })
  948. }
  949. // SetOutTradeNo sets the "out_trade_no" field.
  950. func (u *PayRechargeUpsertBulk) SetOutTradeNo(v string) *PayRechargeUpsertBulk {
  951. return u.Update(func(s *PayRechargeUpsert) {
  952. s.SetOutTradeNo(v)
  953. })
  954. }
  955. // UpdateOutTradeNo sets the "out_trade_no" field to the value that was provided on create.
  956. func (u *PayRechargeUpsertBulk) UpdateOutTradeNo() *PayRechargeUpsertBulk {
  957. return u.Update(func(s *PayRechargeUpsert) {
  958. s.UpdateOutTradeNo()
  959. })
  960. }
  961. // ClearOutTradeNo clears the value of the "out_trade_no" field.
  962. func (u *PayRechargeUpsertBulk) ClearOutTradeNo() *PayRechargeUpsertBulk {
  963. return u.Update(func(s *PayRechargeUpsert) {
  964. s.ClearOutTradeNo()
  965. })
  966. }
  967. // SetOrganizationID sets the "organization_id" field.
  968. func (u *PayRechargeUpsertBulk) SetOrganizationID(v uint64) *PayRechargeUpsertBulk {
  969. return u.Update(func(s *PayRechargeUpsert) {
  970. s.SetOrganizationID(v)
  971. })
  972. }
  973. // AddOrganizationID adds v to the "organization_id" field.
  974. func (u *PayRechargeUpsertBulk) AddOrganizationID(v uint64) *PayRechargeUpsertBulk {
  975. return u.Update(func(s *PayRechargeUpsert) {
  976. s.AddOrganizationID(v)
  977. })
  978. }
  979. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  980. func (u *PayRechargeUpsertBulk) UpdateOrganizationID() *PayRechargeUpsertBulk {
  981. return u.Update(func(s *PayRechargeUpsert) {
  982. s.UpdateOrganizationID()
  983. })
  984. }
  985. // Exec executes the query.
  986. func (u *PayRechargeUpsertBulk) Exec(ctx context.Context) error {
  987. if u.create.err != nil {
  988. return u.create.err
  989. }
  990. for i, b := range u.create.builders {
  991. if len(b.conflict) != 0 {
  992. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the PayRechargeCreateBulk instead", i)
  993. }
  994. }
  995. if len(u.create.conflict) == 0 {
  996. return errors.New("ent: missing options for PayRechargeCreateBulk.OnConflict")
  997. }
  998. return u.create.Exec(ctx)
  999. }
  1000. // ExecX is like Exec, but panics if an error occurs.
  1001. func (u *PayRechargeUpsertBulk) ExecX(ctx context.Context) {
  1002. if err := u.create.Exec(ctx); err != nil {
  1003. panic(err)
  1004. }
  1005. }