creditbalance_update.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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. "wechat-api/ent/predicate"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/schema/field"
  13. )
  14. // CreditBalanceUpdate is the builder for updating CreditBalance entities.
  15. type CreditBalanceUpdate struct {
  16. config
  17. hooks []Hook
  18. mutation *CreditBalanceMutation
  19. }
  20. // Where appends a list predicates to the CreditBalanceUpdate builder.
  21. func (cbu *CreditBalanceUpdate) Where(ps ...predicate.CreditBalance) *CreditBalanceUpdate {
  22. cbu.mutation.Where(ps...)
  23. return cbu
  24. }
  25. // SetUpdatedAt sets the "updated_at" field.
  26. func (cbu *CreditBalanceUpdate) SetUpdatedAt(t time.Time) *CreditBalanceUpdate {
  27. cbu.mutation.SetUpdatedAt(t)
  28. return cbu
  29. }
  30. // SetDeletedAt sets the "deleted_at" field.
  31. func (cbu *CreditBalanceUpdate) SetDeletedAt(t time.Time) *CreditBalanceUpdate {
  32. cbu.mutation.SetDeletedAt(t)
  33. return cbu
  34. }
  35. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  36. func (cbu *CreditBalanceUpdate) SetNillableDeletedAt(t *time.Time) *CreditBalanceUpdate {
  37. if t != nil {
  38. cbu.SetDeletedAt(*t)
  39. }
  40. return cbu
  41. }
  42. // ClearDeletedAt clears the value of the "deleted_at" field.
  43. func (cbu *CreditBalanceUpdate) ClearDeletedAt() *CreditBalanceUpdate {
  44. cbu.mutation.ClearDeletedAt()
  45. return cbu
  46. }
  47. // SetUserID sets the "user_id" field.
  48. func (cbu *CreditBalanceUpdate) SetUserID(s string) *CreditBalanceUpdate {
  49. cbu.mutation.SetUserID(s)
  50. return cbu
  51. }
  52. // SetNillableUserID sets the "user_id" field if the given value is not nil.
  53. func (cbu *CreditBalanceUpdate) SetNillableUserID(s *string) *CreditBalanceUpdate {
  54. if s != nil {
  55. cbu.SetUserID(*s)
  56. }
  57. return cbu
  58. }
  59. // SetBalance sets the "balance" field.
  60. func (cbu *CreditBalanceUpdate) SetBalance(f float32) *CreditBalanceUpdate {
  61. cbu.mutation.ResetBalance()
  62. cbu.mutation.SetBalance(f)
  63. return cbu
  64. }
  65. // SetNillableBalance sets the "balance" field if the given value is not nil.
  66. func (cbu *CreditBalanceUpdate) SetNillableBalance(f *float32) *CreditBalanceUpdate {
  67. if f != nil {
  68. cbu.SetBalance(*f)
  69. }
  70. return cbu
  71. }
  72. // AddBalance adds f to the "balance" field.
  73. func (cbu *CreditBalanceUpdate) AddBalance(f float32) *CreditBalanceUpdate {
  74. cbu.mutation.AddBalance(f)
  75. return cbu
  76. }
  77. // SetStatus sets the "status" field.
  78. func (cbu *CreditBalanceUpdate) SetStatus(i int) *CreditBalanceUpdate {
  79. cbu.mutation.ResetStatus()
  80. cbu.mutation.SetStatus(i)
  81. return cbu
  82. }
  83. // SetNillableStatus sets the "status" field if the given value is not nil.
  84. func (cbu *CreditBalanceUpdate) SetNillableStatus(i *int) *CreditBalanceUpdate {
  85. if i != nil {
  86. cbu.SetStatus(*i)
  87. }
  88. return cbu
  89. }
  90. // AddStatus adds i to the "status" field.
  91. func (cbu *CreditBalanceUpdate) AddStatus(i int) *CreditBalanceUpdate {
  92. cbu.mutation.AddStatus(i)
  93. return cbu
  94. }
  95. // ClearStatus clears the value of the "status" field.
  96. func (cbu *CreditBalanceUpdate) ClearStatus() *CreditBalanceUpdate {
  97. cbu.mutation.ClearStatus()
  98. return cbu
  99. }
  100. // SetOrganizationID sets the "organization_id" field.
  101. func (cbu *CreditBalanceUpdate) SetOrganizationID(u uint64) *CreditBalanceUpdate {
  102. cbu.mutation.ResetOrganizationID()
  103. cbu.mutation.SetOrganizationID(u)
  104. return cbu
  105. }
  106. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  107. func (cbu *CreditBalanceUpdate) SetNillableOrganizationID(u *uint64) *CreditBalanceUpdate {
  108. if u != nil {
  109. cbu.SetOrganizationID(*u)
  110. }
  111. return cbu
  112. }
  113. // AddOrganizationID adds u to the "organization_id" field.
  114. func (cbu *CreditBalanceUpdate) AddOrganizationID(u int64) *CreditBalanceUpdate {
  115. cbu.mutation.AddOrganizationID(u)
  116. return cbu
  117. }
  118. // ClearOrganizationID clears the value of the "organization_id" field.
  119. func (cbu *CreditBalanceUpdate) ClearOrganizationID() *CreditBalanceUpdate {
  120. cbu.mutation.ClearOrganizationID()
  121. return cbu
  122. }
  123. // Mutation returns the CreditBalanceMutation object of the builder.
  124. func (cbu *CreditBalanceUpdate) Mutation() *CreditBalanceMutation {
  125. return cbu.mutation
  126. }
  127. // Save executes the query and returns the number of nodes affected by the update operation.
  128. func (cbu *CreditBalanceUpdate) Save(ctx context.Context) (int, error) {
  129. if err := cbu.defaults(); err != nil {
  130. return 0, err
  131. }
  132. return withHooks(ctx, cbu.sqlSave, cbu.mutation, cbu.hooks)
  133. }
  134. // SaveX is like Save, but panics if an error occurs.
  135. func (cbu *CreditBalanceUpdate) SaveX(ctx context.Context) int {
  136. affected, err := cbu.Save(ctx)
  137. if err != nil {
  138. panic(err)
  139. }
  140. return affected
  141. }
  142. // Exec executes the query.
  143. func (cbu *CreditBalanceUpdate) Exec(ctx context.Context) error {
  144. _, err := cbu.Save(ctx)
  145. return err
  146. }
  147. // ExecX is like Exec, but panics if an error occurs.
  148. func (cbu *CreditBalanceUpdate) ExecX(ctx context.Context) {
  149. if err := cbu.Exec(ctx); err != nil {
  150. panic(err)
  151. }
  152. }
  153. // defaults sets the default values of the builder before save.
  154. func (cbu *CreditBalanceUpdate) defaults() error {
  155. if _, ok := cbu.mutation.UpdatedAt(); !ok {
  156. if creditbalance.UpdateDefaultUpdatedAt == nil {
  157. return fmt.Errorf("ent: uninitialized creditbalance.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  158. }
  159. v := creditbalance.UpdateDefaultUpdatedAt()
  160. cbu.mutation.SetUpdatedAt(v)
  161. }
  162. return nil
  163. }
  164. // check runs all checks and user-defined validators on the builder.
  165. func (cbu *CreditBalanceUpdate) check() error {
  166. if v, ok := cbu.mutation.UserID(); ok {
  167. if err := creditbalance.UserIDValidator(v); err != nil {
  168. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.user_id": %w`, err)}
  169. }
  170. }
  171. if v, ok := cbu.mutation.Status(); ok {
  172. if err := creditbalance.StatusValidator(v); err != nil {
  173. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.status": %w`, err)}
  174. }
  175. }
  176. return nil
  177. }
  178. func (cbu *CreditBalanceUpdate) sqlSave(ctx context.Context) (n int, err error) {
  179. if err := cbu.check(); err != nil {
  180. return n, err
  181. }
  182. _spec := sqlgraph.NewUpdateSpec(creditbalance.Table, creditbalance.Columns, sqlgraph.NewFieldSpec(creditbalance.FieldID, field.TypeUint64))
  183. if ps := cbu.mutation.predicates; len(ps) > 0 {
  184. _spec.Predicate = func(selector *sql.Selector) {
  185. for i := range ps {
  186. ps[i](selector)
  187. }
  188. }
  189. }
  190. if value, ok := cbu.mutation.UpdatedAt(); ok {
  191. _spec.SetField(creditbalance.FieldUpdatedAt, field.TypeTime, value)
  192. }
  193. if value, ok := cbu.mutation.DeletedAt(); ok {
  194. _spec.SetField(creditbalance.FieldDeletedAt, field.TypeTime, value)
  195. }
  196. if cbu.mutation.DeletedAtCleared() {
  197. _spec.ClearField(creditbalance.FieldDeletedAt, field.TypeTime)
  198. }
  199. if value, ok := cbu.mutation.UserID(); ok {
  200. _spec.SetField(creditbalance.FieldUserID, field.TypeString, value)
  201. }
  202. if value, ok := cbu.mutation.Balance(); ok {
  203. _spec.SetField(creditbalance.FieldBalance, field.TypeFloat32, value)
  204. }
  205. if value, ok := cbu.mutation.AddedBalance(); ok {
  206. _spec.AddField(creditbalance.FieldBalance, field.TypeFloat32, value)
  207. }
  208. if value, ok := cbu.mutation.Status(); ok {
  209. _spec.SetField(creditbalance.FieldStatus, field.TypeInt, value)
  210. }
  211. if value, ok := cbu.mutation.AddedStatus(); ok {
  212. _spec.AddField(creditbalance.FieldStatus, field.TypeInt, value)
  213. }
  214. if cbu.mutation.StatusCleared() {
  215. _spec.ClearField(creditbalance.FieldStatus, field.TypeInt)
  216. }
  217. if value, ok := cbu.mutation.OrganizationID(); ok {
  218. _spec.SetField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  219. }
  220. if value, ok := cbu.mutation.AddedOrganizationID(); ok {
  221. _spec.AddField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  222. }
  223. if cbu.mutation.OrganizationIDCleared() {
  224. _spec.ClearField(creditbalance.FieldOrganizationID, field.TypeUint64)
  225. }
  226. if n, err = sqlgraph.UpdateNodes(ctx, cbu.driver, _spec); err != nil {
  227. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  228. err = &NotFoundError{creditbalance.Label}
  229. } else if sqlgraph.IsConstraintError(err) {
  230. err = &ConstraintError{msg: err.Error(), wrap: err}
  231. }
  232. return 0, err
  233. }
  234. cbu.mutation.done = true
  235. return n, nil
  236. }
  237. // CreditBalanceUpdateOne is the builder for updating a single CreditBalance entity.
  238. type CreditBalanceUpdateOne struct {
  239. config
  240. fields []string
  241. hooks []Hook
  242. mutation *CreditBalanceMutation
  243. }
  244. // SetUpdatedAt sets the "updated_at" field.
  245. func (cbuo *CreditBalanceUpdateOne) SetUpdatedAt(t time.Time) *CreditBalanceUpdateOne {
  246. cbuo.mutation.SetUpdatedAt(t)
  247. return cbuo
  248. }
  249. // SetDeletedAt sets the "deleted_at" field.
  250. func (cbuo *CreditBalanceUpdateOne) SetDeletedAt(t time.Time) *CreditBalanceUpdateOne {
  251. cbuo.mutation.SetDeletedAt(t)
  252. return cbuo
  253. }
  254. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  255. func (cbuo *CreditBalanceUpdateOne) SetNillableDeletedAt(t *time.Time) *CreditBalanceUpdateOne {
  256. if t != nil {
  257. cbuo.SetDeletedAt(*t)
  258. }
  259. return cbuo
  260. }
  261. // ClearDeletedAt clears the value of the "deleted_at" field.
  262. func (cbuo *CreditBalanceUpdateOne) ClearDeletedAt() *CreditBalanceUpdateOne {
  263. cbuo.mutation.ClearDeletedAt()
  264. return cbuo
  265. }
  266. // SetUserID sets the "user_id" field.
  267. func (cbuo *CreditBalanceUpdateOne) SetUserID(s string) *CreditBalanceUpdateOne {
  268. cbuo.mutation.SetUserID(s)
  269. return cbuo
  270. }
  271. // SetNillableUserID sets the "user_id" field if the given value is not nil.
  272. func (cbuo *CreditBalanceUpdateOne) SetNillableUserID(s *string) *CreditBalanceUpdateOne {
  273. if s != nil {
  274. cbuo.SetUserID(*s)
  275. }
  276. return cbuo
  277. }
  278. // SetBalance sets the "balance" field.
  279. func (cbuo *CreditBalanceUpdateOne) SetBalance(f float32) *CreditBalanceUpdateOne {
  280. cbuo.mutation.ResetBalance()
  281. cbuo.mutation.SetBalance(f)
  282. return cbuo
  283. }
  284. // SetNillableBalance sets the "balance" field if the given value is not nil.
  285. func (cbuo *CreditBalanceUpdateOne) SetNillableBalance(f *float32) *CreditBalanceUpdateOne {
  286. if f != nil {
  287. cbuo.SetBalance(*f)
  288. }
  289. return cbuo
  290. }
  291. // AddBalance adds f to the "balance" field.
  292. func (cbuo *CreditBalanceUpdateOne) AddBalance(f float32) *CreditBalanceUpdateOne {
  293. cbuo.mutation.AddBalance(f)
  294. return cbuo
  295. }
  296. // SetStatus sets the "status" field.
  297. func (cbuo *CreditBalanceUpdateOne) SetStatus(i int) *CreditBalanceUpdateOne {
  298. cbuo.mutation.ResetStatus()
  299. cbuo.mutation.SetStatus(i)
  300. return cbuo
  301. }
  302. // SetNillableStatus sets the "status" field if the given value is not nil.
  303. func (cbuo *CreditBalanceUpdateOne) SetNillableStatus(i *int) *CreditBalanceUpdateOne {
  304. if i != nil {
  305. cbuo.SetStatus(*i)
  306. }
  307. return cbuo
  308. }
  309. // AddStatus adds i to the "status" field.
  310. func (cbuo *CreditBalanceUpdateOne) AddStatus(i int) *CreditBalanceUpdateOne {
  311. cbuo.mutation.AddStatus(i)
  312. return cbuo
  313. }
  314. // ClearStatus clears the value of the "status" field.
  315. func (cbuo *CreditBalanceUpdateOne) ClearStatus() *CreditBalanceUpdateOne {
  316. cbuo.mutation.ClearStatus()
  317. return cbuo
  318. }
  319. // SetOrganizationID sets the "organization_id" field.
  320. func (cbuo *CreditBalanceUpdateOne) SetOrganizationID(u uint64) *CreditBalanceUpdateOne {
  321. cbuo.mutation.ResetOrganizationID()
  322. cbuo.mutation.SetOrganizationID(u)
  323. return cbuo
  324. }
  325. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  326. func (cbuo *CreditBalanceUpdateOne) SetNillableOrganizationID(u *uint64) *CreditBalanceUpdateOne {
  327. if u != nil {
  328. cbuo.SetOrganizationID(*u)
  329. }
  330. return cbuo
  331. }
  332. // AddOrganizationID adds u to the "organization_id" field.
  333. func (cbuo *CreditBalanceUpdateOne) AddOrganizationID(u int64) *CreditBalanceUpdateOne {
  334. cbuo.mutation.AddOrganizationID(u)
  335. return cbuo
  336. }
  337. // ClearOrganizationID clears the value of the "organization_id" field.
  338. func (cbuo *CreditBalanceUpdateOne) ClearOrganizationID() *CreditBalanceUpdateOne {
  339. cbuo.mutation.ClearOrganizationID()
  340. return cbuo
  341. }
  342. // Mutation returns the CreditBalanceMutation object of the builder.
  343. func (cbuo *CreditBalanceUpdateOne) Mutation() *CreditBalanceMutation {
  344. return cbuo.mutation
  345. }
  346. // Where appends a list predicates to the CreditBalanceUpdate builder.
  347. func (cbuo *CreditBalanceUpdateOne) Where(ps ...predicate.CreditBalance) *CreditBalanceUpdateOne {
  348. cbuo.mutation.Where(ps...)
  349. return cbuo
  350. }
  351. // Select allows selecting one or more fields (columns) of the returned entity.
  352. // The default is selecting all fields defined in the entity schema.
  353. func (cbuo *CreditBalanceUpdateOne) Select(field string, fields ...string) *CreditBalanceUpdateOne {
  354. cbuo.fields = append([]string{field}, fields...)
  355. return cbuo
  356. }
  357. // Save executes the query and returns the updated CreditBalance entity.
  358. func (cbuo *CreditBalanceUpdateOne) Save(ctx context.Context) (*CreditBalance, error) {
  359. if err := cbuo.defaults(); err != nil {
  360. return nil, err
  361. }
  362. return withHooks(ctx, cbuo.sqlSave, cbuo.mutation, cbuo.hooks)
  363. }
  364. // SaveX is like Save, but panics if an error occurs.
  365. func (cbuo *CreditBalanceUpdateOne) SaveX(ctx context.Context) *CreditBalance {
  366. node, err := cbuo.Save(ctx)
  367. if err != nil {
  368. panic(err)
  369. }
  370. return node
  371. }
  372. // Exec executes the query on the entity.
  373. func (cbuo *CreditBalanceUpdateOne) Exec(ctx context.Context) error {
  374. _, err := cbuo.Save(ctx)
  375. return err
  376. }
  377. // ExecX is like Exec, but panics if an error occurs.
  378. func (cbuo *CreditBalanceUpdateOne) ExecX(ctx context.Context) {
  379. if err := cbuo.Exec(ctx); err != nil {
  380. panic(err)
  381. }
  382. }
  383. // defaults sets the default values of the builder before save.
  384. func (cbuo *CreditBalanceUpdateOne) defaults() error {
  385. if _, ok := cbuo.mutation.UpdatedAt(); !ok {
  386. if creditbalance.UpdateDefaultUpdatedAt == nil {
  387. return fmt.Errorf("ent: uninitialized creditbalance.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  388. }
  389. v := creditbalance.UpdateDefaultUpdatedAt()
  390. cbuo.mutation.SetUpdatedAt(v)
  391. }
  392. return nil
  393. }
  394. // check runs all checks and user-defined validators on the builder.
  395. func (cbuo *CreditBalanceUpdateOne) check() error {
  396. if v, ok := cbuo.mutation.UserID(); ok {
  397. if err := creditbalance.UserIDValidator(v); err != nil {
  398. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.user_id": %w`, err)}
  399. }
  400. }
  401. if v, ok := cbuo.mutation.Status(); ok {
  402. if err := creditbalance.StatusValidator(v); err != nil {
  403. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.status": %w`, err)}
  404. }
  405. }
  406. return nil
  407. }
  408. func (cbuo *CreditBalanceUpdateOne) sqlSave(ctx context.Context) (_node *CreditBalance, err error) {
  409. if err := cbuo.check(); err != nil {
  410. return _node, err
  411. }
  412. _spec := sqlgraph.NewUpdateSpec(creditbalance.Table, creditbalance.Columns, sqlgraph.NewFieldSpec(creditbalance.FieldID, field.TypeUint64))
  413. id, ok := cbuo.mutation.ID()
  414. if !ok {
  415. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "CreditBalance.id" for update`)}
  416. }
  417. _spec.Node.ID.Value = id
  418. if fields := cbuo.fields; len(fields) > 0 {
  419. _spec.Node.Columns = make([]string, 0, len(fields))
  420. _spec.Node.Columns = append(_spec.Node.Columns, creditbalance.FieldID)
  421. for _, f := range fields {
  422. if !creditbalance.ValidColumn(f) {
  423. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  424. }
  425. if f != creditbalance.FieldID {
  426. _spec.Node.Columns = append(_spec.Node.Columns, f)
  427. }
  428. }
  429. }
  430. if ps := cbuo.mutation.predicates; len(ps) > 0 {
  431. _spec.Predicate = func(selector *sql.Selector) {
  432. for i := range ps {
  433. ps[i](selector)
  434. }
  435. }
  436. }
  437. if value, ok := cbuo.mutation.UpdatedAt(); ok {
  438. _spec.SetField(creditbalance.FieldUpdatedAt, field.TypeTime, value)
  439. }
  440. if value, ok := cbuo.mutation.DeletedAt(); ok {
  441. _spec.SetField(creditbalance.FieldDeletedAt, field.TypeTime, value)
  442. }
  443. if cbuo.mutation.DeletedAtCleared() {
  444. _spec.ClearField(creditbalance.FieldDeletedAt, field.TypeTime)
  445. }
  446. if value, ok := cbuo.mutation.UserID(); ok {
  447. _spec.SetField(creditbalance.FieldUserID, field.TypeString, value)
  448. }
  449. if value, ok := cbuo.mutation.Balance(); ok {
  450. _spec.SetField(creditbalance.FieldBalance, field.TypeFloat32, value)
  451. }
  452. if value, ok := cbuo.mutation.AddedBalance(); ok {
  453. _spec.AddField(creditbalance.FieldBalance, field.TypeFloat32, value)
  454. }
  455. if value, ok := cbuo.mutation.Status(); ok {
  456. _spec.SetField(creditbalance.FieldStatus, field.TypeInt, value)
  457. }
  458. if value, ok := cbuo.mutation.AddedStatus(); ok {
  459. _spec.AddField(creditbalance.FieldStatus, field.TypeInt, value)
  460. }
  461. if cbuo.mutation.StatusCleared() {
  462. _spec.ClearField(creditbalance.FieldStatus, field.TypeInt)
  463. }
  464. if value, ok := cbuo.mutation.OrganizationID(); ok {
  465. _spec.SetField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  466. }
  467. if value, ok := cbuo.mutation.AddedOrganizationID(); ok {
  468. _spec.AddField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  469. }
  470. if cbuo.mutation.OrganizationIDCleared() {
  471. _spec.ClearField(creditbalance.FieldOrganizationID, field.TypeUint64)
  472. }
  473. _node = &CreditBalance{config: cbuo.config}
  474. _spec.Assign = _node.assignValues
  475. _spec.ScanValues = _node.scanValues
  476. if err = sqlgraph.UpdateNode(ctx, cbuo.driver, _spec); err != nil {
  477. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  478. err = &NotFoundError{creditbalance.Label}
  479. } else if sqlgraph.IsConstraintError(err) {
  480. err = &ConstraintError{msg: err.Error(), wrap: err}
  481. }
  482. return nil, err
  483. }
  484. cbuo.mutation.done = true
  485. return _node, nil
  486. }