creditbalance_create.go 29 KB

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