creditbalance_create.go 29 KB

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