creditbalance_create.go 28 KB

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