creditbalance_update.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  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. // Mutation returns the CreditBalanceMutation object of the builder.
  119. func (cbu *CreditBalanceUpdate) Mutation() *CreditBalanceMutation {
  120. return cbu.mutation
  121. }
  122. // Save executes the query and returns the number of nodes affected by the update operation.
  123. func (cbu *CreditBalanceUpdate) Save(ctx context.Context) (int, error) {
  124. if err := cbu.defaults(); err != nil {
  125. return 0, err
  126. }
  127. return withHooks(ctx, cbu.sqlSave, cbu.mutation, cbu.hooks)
  128. }
  129. // SaveX is like Save, but panics if an error occurs.
  130. func (cbu *CreditBalanceUpdate) SaveX(ctx context.Context) int {
  131. affected, err := cbu.Save(ctx)
  132. if err != nil {
  133. panic(err)
  134. }
  135. return affected
  136. }
  137. // Exec executes the query.
  138. func (cbu *CreditBalanceUpdate) Exec(ctx context.Context) error {
  139. _, err := cbu.Save(ctx)
  140. return err
  141. }
  142. // ExecX is like Exec, but panics if an error occurs.
  143. func (cbu *CreditBalanceUpdate) ExecX(ctx context.Context) {
  144. if err := cbu.Exec(ctx); err != nil {
  145. panic(err)
  146. }
  147. }
  148. // defaults sets the default values of the builder before save.
  149. func (cbu *CreditBalanceUpdate) defaults() error {
  150. if _, ok := cbu.mutation.UpdatedAt(); !ok {
  151. if creditbalance.UpdateDefaultUpdatedAt == nil {
  152. return fmt.Errorf("ent: uninitialized creditbalance.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  153. }
  154. v := creditbalance.UpdateDefaultUpdatedAt()
  155. cbu.mutation.SetUpdatedAt(v)
  156. }
  157. return nil
  158. }
  159. // check runs all checks and user-defined validators on the builder.
  160. func (cbu *CreditBalanceUpdate) check() error {
  161. if v, ok := cbu.mutation.UserID(); ok {
  162. if err := creditbalance.UserIDValidator(v); err != nil {
  163. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.user_id": %w`, err)}
  164. }
  165. }
  166. if v, ok := cbu.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. if v, ok := cbu.mutation.OrganizationID(); ok {
  172. if err := creditbalance.OrganizationIDValidator(v); err != nil {
  173. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.organization_id": %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 n, err = sqlgraph.UpdateNodes(ctx, cbu.driver, _spec); err != nil {
  224. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  225. err = &NotFoundError{creditbalance.Label}
  226. } else if sqlgraph.IsConstraintError(err) {
  227. err = &ConstraintError{msg: err.Error(), wrap: err}
  228. }
  229. return 0, err
  230. }
  231. cbu.mutation.done = true
  232. return n, nil
  233. }
  234. // CreditBalanceUpdateOne is the builder for updating a single CreditBalance entity.
  235. type CreditBalanceUpdateOne struct {
  236. config
  237. fields []string
  238. hooks []Hook
  239. mutation *CreditBalanceMutation
  240. }
  241. // SetUpdatedAt sets the "updated_at" field.
  242. func (cbuo *CreditBalanceUpdateOne) SetUpdatedAt(t time.Time) *CreditBalanceUpdateOne {
  243. cbuo.mutation.SetUpdatedAt(t)
  244. return cbuo
  245. }
  246. // SetDeletedAt sets the "deleted_at" field.
  247. func (cbuo *CreditBalanceUpdateOne) SetDeletedAt(t time.Time) *CreditBalanceUpdateOne {
  248. cbuo.mutation.SetDeletedAt(t)
  249. return cbuo
  250. }
  251. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  252. func (cbuo *CreditBalanceUpdateOne) SetNillableDeletedAt(t *time.Time) *CreditBalanceUpdateOne {
  253. if t != nil {
  254. cbuo.SetDeletedAt(*t)
  255. }
  256. return cbuo
  257. }
  258. // ClearDeletedAt clears the value of the "deleted_at" field.
  259. func (cbuo *CreditBalanceUpdateOne) ClearDeletedAt() *CreditBalanceUpdateOne {
  260. cbuo.mutation.ClearDeletedAt()
  261. return cbuo
  262. }
  263. // SetUserID sets the "user_id" field.
  264. func (cbuo *CreditBalanceUpdateOne) SetUserID(s string) *CreditBalanceUpdateOne {
  265. cbuo.mutation.SetUserID(s)
  266. return cbuo
  267. }
  268. // SetNillableUserID sets the "user_id" field if the given value is not nil.
  269. func (cbuo *CreditBalanceUpdateOne) SetNillableUserID(s *string) *CreditBalanceUpdateOne {
  270. if s != nil {
  271. cbuo.SetUserID(*s)
  272. }
  273. return cbuo
  274. }
  275. // SetBalance sets the "balance" field.
  276. func (cbuo *CreditBalanceUpdateOne) SetBalance(f float32) *CreditBalanceUpdateOne {
  277. cbuo.mutation.ResetBalance()
  278. cbuo.mutation.SetBalance(f)
  279. return cbuo
  280. }
  281. // SetNillableBalance sets the "balance" field if the given value is not nil.
  282. func (cbuo *CreditBalanceUpdateOne) SetNillableBalance(f *float32) *CreditBalanceUpdateOne {
  283. if f != nil {
  284. cbuo.SetBalance(*f)
  285. }
  286. return cbuo
  287. }
  288. // AddBalance adds f to the "balance" field.
  289. func (cbuo *CreditBalanceUpdateOne) AddBalance(f float32) *CreditBalanceUpdateOne {
  290. cbuo.mutation.AddBalance(f)
  291. return cbuo
  292. }
  293. // SetStatus sets the "status" field.
  294. func (cbuo *CreditBalanceUpdateOne) SetStatus(i int) *CreditBalanceUpdateOne {
  295. cbuo.mutation.ResetStatus()
  296. cbuo.mutation.SetStatus(i)
  297. return cbuo
  298. }
  299. // SetNillableStatus sets the "status" field if the given value is not nil.
  300. func (cbuo *CreditBalanceUpdateOne) SetNillableStatus(i *int) *CreditBalanceUpdateOne {
  301. if i != nil {
  302. cbuo.SetStatus(*i)
  303. }
  304. return cbuo
  305. }
  306. // AddStatus adds i to the "status" field.
  307. func (cbuo *CreditBalanceUpdateOne) AddStatus(i int) *CreditBalanceUpdateOne {
  308. cbuo.mutation.AddStatus(i)
  309. return cbuo
  310. }
  311. // ClearStatus clears the value of the "status" field.
  312. func (cbuo *CreditBalanceUpdateOne) ClearStatus() *CreditBalanceUpdateOne {
  313. cbuo.mutation.ClearStatus()
  314. return cbuo
  315. }
  316. // SetOrganizationID sets the "organization_id" field.
  317. func (cbuo *CreditBalanceUpdateOne) SetOrganizationID(u uint64) *CreditBalanceUpdateOne {
  318. cbuo.mutation.ResetOrganizationID()
  319. cbuo.mutation.SetOrganizationID(u)
  320. return cbuo
  321. }
  322. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  323. func (cbuo *CreditBalanceUpdateOne) SetNillableOrganizationID(u *uint64) *CreditBalanceUpdateOne {
  324. if u != nil {
  325. cbuo.SetOrganizationID(*u)
  326. }
  327. return cbuo
  328. }
  329. // AddOrganizationID adds u to the "organization_id" field.
  330. func (cbuo *CreditBalanceUpdateOne) AddOrganizationID(u int64) *CreditBalanceUpdateOne {
  331. cbuo.mutation.AddOrganizationID(u)
  332. return cbuo
  333. }
  334. // Mutation returns the CreditBalanceMutation object of the builder.
  335. func (cbuo *CreditBalanceUpdateOne) Mutation() *CreditBalanceMutation {
  336. return cbuo.mutation
  337. }
  338. // Where appends a list predicates to the CreditBalanceUpdate builder.
  339. func (cbuo *CreditBalanceUpdateOne) Where(ps ...predicate.CreditBalance) *CreditBalanceUpdateOne {
  340. cbuo.mutation.Where(ps...)
  341. return cbuo
  342. }
  343. // Select allows selecting one or more fields (columns) of the returned entity.
  344. // The default is selecting all fields defined in the entity schema.
  345. func (cbuo *CreditBalanceUpdateOne) Select(field string, fields ...string) *CreditBalanceUpdateOne {
  346. cbuo.fields = append([]string{field}, fields...)
  347. return cbuo
  348. }
  349. // Save executes the query and returns the updated CreditBalance entity.
  350. func (cbuo *CreditBalanceUpdateOne) Save(ctx context.Context) (*CreditBalance, error) {
  351. if err := cbuo.defaults(); err != nil {
  352. return nil, err
  353. }
  354. return withHooks(ctx, cbuo.sqlSave, cbuo.mutation, cbuo.hooks)
  355. }
  356. // SaveX is like Save, but panics if an error occurs.
  357. func (cbuo *CreditBalanceUpdateOne) SaveX(ctx context.Context) *CreditBalance {
  358. node, err := cbuo.Save(ctx)
  359. if err != nil {
  360. panic(err)
  361. }
  362. return node
  363. }
  364. // Exec executes the query on the entity.
  365. func (cbuo *CreditBalanceUpdateOne) Exec(ctx context.Context) error {
  366. _, err := cbuo.Save(ctx)
  367. return err
  368. }
  369. // ExecX is like Exec, but panics if an error occurs.
  370. func (cbuo *CreditBalanceUpdateOne) ExecX(ctx context.Context) {
  371. if err := cbuo.Exec(ctx); err != nil {
  372. panic(err)
  373. }
  374. }
  375. // defaults sets the default values of the builder before save.
  376. func (cbuo *CreditBalanceUpdateOne) defaults() error {
  377. if _, ok := cbuo.mutation.UpdatedAt(); !ok {
  378. if creditbalance.UpdateDefaultUpdatedAt == nil {
  379. return fmt.Errorf("ent: uninitialized creditbalance.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  380. }
  381. v := creditbalance.UpdateDefaultUpdatedAt()
  382. cbuo.mutation.SetUpdatedAt(v)
  383. }
  384. return nil
  385. }
  386. // check runs all checks and user-defined validators on the builder.
  387. func (cbuo *CreditBalanceUpdateOne) check() error {
  388. if v, ok := cbuo.mutation.UserID(); ok {
  389. if err := creditbalance.UserIDValidator(v); err != nil {
  390. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.user_id": %w`, err)}
  391. }
  392. }
  393. if v, ok := cbuo.mutation.Status(); ok {
  394. if err := creditbalance.StatusValidator(v); err != nil {
  395. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.status": %w`, err)}
  396. }
  397. }
  398. if v, ok := cbuo.mutation.OrganizationID(); ok {
  399. if err := creditbalance.OrganizationIDValidator(v); err != nil {
  400. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "CreditBalance.organization_id": %w`, err)}
  401. }
  402. }
  403. return nil
  404. }
  405. func (cbuo *CreditBalanceUpdateOne) sqlSave(ctx context.Context) (_node *CreditBalance, err error) {
  406. if err := cbuo.check(); err != nil {
  407. return _node, err
  408. }
  409. _spec := sqlgraph.NewUpdateSpec(creditbalance.Table, creditbalance.Columns, sqlgraph.NewFieldSpec(creditbalance.FieldID, field.TypeUint64))
  410. id, ok := cbuo.mutation.ID()
  411. if !ok {
  412. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "CreditBalance.id" for update`)}
  413. }
  414. _spec.Node.ID.Value = id
  415. if fields := cbuo.fields; len(fields) > 0 {
  416. _spec.Node.Columns = make([]string, 0, len(fields))
  417. _spec.Node.Columns = append(_spec.Node.Columns, creditbalance.FieldID)
  418. for _, f := range fields {
  419. if !creditbalance.ValidColumn(f) {
  420. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  421. }
  422. if f != creditbalance.FieldID {
  423. _spec.Node.Columns = append(_spec.Node.Columns, f)
  424. }
  425. }
  426. }
  427. if ps := cbuo.mutation.predicates; len(ps) > 0 {
  428. _spec.Predicate = func(selector *sql.Selector) {
  429. for i := range ps {
  430. ps[i](selector)
  431. }
  432. }
  433. }
  434. if value, ok := cbuo.mutation.UpdatedAt(); ok {
  435. _spec.SetField(creditbalance.FieldUpdatedAt, field.TypeTime, value)
  436. }
  437. if value, ok := cbuo.mutation.DeletedAt(); ok {
  438. _spec.SetField(creditbalance.FieldDeletedAt, field.TypeTime, value)
  439. }
  440. if cbuo.mutation.DeletedAtCleared() {
  441. _spec.ClearField(creditbalance.FieldDeletedAt, field.TypeTime)
  442. }
  443. if value, ok := cbuo.mutation.UserID(); ok {
  444. _spec.SetField(creditbalance.FieldUserID, field.TypeString, value)
  445. }
  446. if value, ok := cbuo.mutation.Balance(); ok {
  447. _spec.SetField(creditbalance.FieldBalance, field.TypeFloat32, value)
  448. }
  449. if value, ok := cbuo.mutation.AddedBalance(); ok {
  450. _spec.AddField(creditbalance.FieldBalance, field.TypeFloat32, value)
  451. }
  452. if value, ok := cbuo.mutation.Status(); ok {
  453. _spec.SetField(creditbalance.FieldStatus, field.TypeInt, value)
  454. }
  455. if value, ok := cbuo.mutation.AddedStatus(); ok {
  456. _spec.AddField(creditbalance.FieldStatus, field.TypeInt, value)
  457. }
  458. if cbuo.mutation.StatusCleared() {
  459. _spec.ClearField(creditbalance.FieldStatus, field.TypeInt)
  460. }
  461. if value, ok := cbuo.mutation.OrganizationID(); ok {
  462. _spec.SetField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  463. }
  464. if value, ok := cbuo.mutation.AddedOrganizationID(); ok {
  465. _spec.AddField(creditbalance.FieldOrganizationID, field.TypeUint64, value)
  466. }
  467. _node = &CreditBalance{config: cbuo.config}
  468. _spec.Assign = _node.assignValues
  469. _spec.ScanValues = _node.scanValues
  470. if err = sqlgraph.UpdateNode(ctx, cbuo.driver, _spec); err != nil {
  471. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  472. err = &NotFoundError{creditbalance.Label}
  473. } else if sqlgraph.IsConstraintError(err) {
  474. err = &ConstraintError{msg: err.Error(), wrap: err}
  475. }
  476. return nil, err
  477. }
  478. cbuo.mutation.done = true
  479. return _node, nil
  480. }