creditusage_update.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
  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/creditusage"
  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. // CreditUsageUpdate is the builder for updating CreditUsage entities.
  15. type CreditUsageUpdate struct {
  16. config
  17. hooks []Hook
  18. mutation *CreditUsageMutation
  19. }
  20. // Where appends a list predicates to the CreditUsageUpdate builder.
  21. func (cuu *CreditUsageUpdate) Where(ps ...predicate.CreditUsage) *CreditUsageUpdate {
  22. cuu.mutation.Where(ps...)
  23. return cuu
  24. }
  25. // SetUpdatedAt sets the "updated_at" field.
  26. func (cuu *CreditUsageUpdate) SetUpdatedAt(t time.Time) *CreditUsageUpdate {
  27. cuu.mutation.SetUpdatedAt(t)
  28. return cuu
  29. }
  30. // SetDeletedAt sets the "deleted_at" field.
  31. func (cuu *CreditUsageUpdate) SetDeletedAt(t time.Time) *CreditUsageUpdate {
  32. cuu.mutation.SetDeletedAt(t)
  33. return cuu
  34. }
  35. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  36. func (cuu *CreditUsageUpdate) SetNillableDeletedAt(t *time.Time) *CreditUsageUpdate {
  37. if t != nil {
  38. cuu.SetDeletedAt(*t)
  39. }
  40. return cuu
  41. }
  42. // ClearDeletedAt clears the value of the "deleted_at" field.
  43. func (cuu *CreditUsageUpdate) ClearDeletedAt() *CreditUsageUpdate {
  44. cuu.mutation.ClearDeletedAt()
  45. return cuu
  46. }
  47. // SetUserID sets the "user_id" field.
  48. func (cuu *CreditUsageUpdate) SetUserID(s string) *CreditUsageUpdate {
  49. cuu.mutation.SetUserID(s)
  50. return cuu
  51. }
  52. // SetNillableUserID sets the "user_id" field if the given value is not nil.
  53. func (cuu *CreditUsageUpdate) SetNillableUserID(s *string) *CreditUsageUpdate {
  54. if s != nil {
  55. cuu.SetUserID(*s)
  56. }
  57. return cuu
  58. }
  59. // SetNumber sets the "number" field.
  60. func (cuu *CreditUsageUpdate) SetNumber(f float32) *CreditUsageUpdate {
  61. cuu.mutation.ResetNumber()
  62. cuu.mutation.SetNumber(f)
  63. return cuu
  64. }
  65. // SetNillableNumber sets the "number" field if the given value is not nil.
  66. func (cuu *CreditUsageUpdate) SetNillableNumber(f *float32) *CreditUsageUpdate {
  67. if f != nil {
  68. cuu.SetNumber(*f)
  69. }
  70. return cuu
  71. }
  72. // AddNumber adds f to the "number" field.
  73. func (cuu *CreditUsageUpdate) AddNumber(f float32) *CreditUsageUpdate {
  74. cuu.mutation.AddNumber(f)
  75. return cuu
  76. }
  77. // SetStatus sets the "status" field.
  78. func (cuu *CreditUsageUpdate) SetStatus(i int) *CreditUsageUpdate {
  79. cuu.mutation.ResetStatus()
  80. cuu.mutation.SetStatus(i)
  81. return cuu
  82. }
  83. // SetNillableStatus sets the "status" field if the given value is not nil.
  84. func (cuu *CreditUsageUpdate) SetNillableStatus(i *int) *CreditUsageUpdate {
  85. if i != nil {
  86. cuu.SetStatus(*i)
  87. }
  88. return cuu
  89. }
  90. // AddStatus adds i to the "status" field.
  91. func (cuu *CreditUsageUpdate) AddStatus(i int) *CreditUsageUpdate {
  92. cuu.mutation.AddStatus(i)
  93. return cuu
  94. }
  95. // ClearStatus clears the value of the "status" field.
  96. func (cuu *CreditUsageUpdate) ClearStatus() *CreditUsageUpdate {
  97. cuu.mutation.ClearStatus()
  98. return cuu
  99. }
  100. // SetNtype sets the "ntype" field.
  101. func (cuu *CreditUsageUpdate) SetNtype(i int) *CreditUsageUpdate {
  102. cuu.mutation.ResetNtype()
  103. cuu.mutation.SetNtype(i)
  104. return cuu
  105. }
  106. // SetNillableNtype sets the "ntype" field if the given value is not nil.
  107. func (cuu *CreditUsageUpdate) SetNillableNtype(i *int) *CreditUsageUpdate {
  108. if i != nil {
  109. cuu.SetNtype(*i)
  110. }
  111. return cuu
  112. }
  113. // AddNtype adds i to the "ntype" field.
  114. func (cuu *CreditUsageUpdate) AddNtype(i int) *CreditUsageUpdate {
  115. cuu.mutation.AddNtype(i)
  116. return cuu
  117. }
  118. // SetTable sets the "table" field.
  119. func (cuu *CreditUsageUpdate) SetTable(s string) *CreditUsageUpdate {
  120. cuu.mutation.SetTable(s)
  121. return cuu
  122. }
  123. // SetNillableTable sets the "table" field if the given value is not nil.
  124. func (cuu *CreditUsageUpdate) SetNillableTable(s *string) *CreditUsageUpdate {
  125. if s != nil {
  126. cuu.SetTable(*s)
  127. }
  128. return cuu
  129. }
  130. // SetOrganizationID sets the "organization_id" field.
  131. func (cuu *CreditUsageUpdate) SetOrganizationID(u uint64) *CreditUsageUpdate {
  132. cuu.mutation.ResetOrganizationID()
  133. cuu.mutation.SetOrganizationID(u)
  134. return cuu
  135. }
  136. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  137. func (cuu *CreditUsageUpdate) SetNillableOrganizationID(u *uint64) *CreditUsageUpdate {
  138. if u != nil {
  139. cuu.SetOrganizationID(*u)
  140. }
  141. return cuu
  142. }
  143. // AddOrganizationID adds u to the "organization_id" field.
  144. func (cuu *CreditUsageUpdate) AddOrganizationID(u int64) *CreditUsageUpdate {
  145. cuu.mutation.AddOrganizationID(u)
  146. return cuu
  147. }
  148. // SetNid sets the "nid" field.
  149. func (cuu *CreditUsageUpdate) SetNid(u uint64) *CreditUsageUpdate {
  150. cuu.mutation.ResetNid()
  151. cuu.mutation.SetNid(u)
  152. return cuu
  153. }
  154. // SetNillableNid sets the "nid" field if the given value is not nil.
  155. func (cuu *CreditUsageUpdate) SetNillableNid(u *uint64) *CreditUsageUpdate {
  156. if u != nil {
  157. cuu.SetNid(*u)
  158. }
  159. return cuu
  160. }
  161. // AddNid adds u to the "nid" field.
  162. func (cuu *CreditUsageUpdate) AddNid(u int64) *CreditUsageUpdate {
  163. cuu.mutation.AddNid(u)
  164. return cuu
  165. }
  166. // SetReason sets the "reason" field.
  167. func (cuu *CreditUsageUpdate) SetReason(s string) *CreditUsageUpdate {
  168. cuu.mutation.SetReason(s)
  169. return cuu
  170. }
  171. // SetNillableReason sets the "reason" field if the given value is not nil.
  172. func (cuu *CreditUsageUpdate) SetNillableReason(s *string) *CreditUsageUpdate {
  173. if s != nil {
  174. cuu.SetReason(*s)
  175. }
  176. return cuu
  177. }
  178. // SetOperator sets the "operator" field.
  179. func (cuu *CreditUsageUpdate) SetOperator(s string) *CreditUsageUpdate {
  180. cuu.mutation.SetOperator(s)
  181. return cuu
  182. }
  183. // SetNillableOperator sets the "operator" field if the given value is not nil.
  184. func (cuu *CreditUsageUpdate) SetNillableOperator(s *string) *CreditUsageUpdate {
  185. if s != nil {
  186. cuu.SetOperator(*s)
  187. }
  188. return cuu
  189. }
  190. // Mutation returns the CreditUsageMutation object of the builder.
  191. func (cuu *CreditUsageUpdate) Mutation() *CreditUsageMutation {
  192. return cuu.mutation
  193. }
  194. // Save executes the query and returns the number of nodes affected by the update operation.
  195. func (cuu *CreditUsageUpdate) Save(ctx context.Context) (int, error) {
  196. if err := cuu.defaults(); err != nil {
  197. return 0, err
  198. }
  199. return withHooks(ctx, cuu.sqlSave, cuu.mutation, cuu.hooks)
  200. }
  201. // SaveX is like Save, but panics if an error occurs.
  202. func (cuu *CreditUsageUpdate) SaveX(ctx context.Context) int {
  203. affected, err := cuu.Save(ctx)
  204. if err != nil {
  205. panic(err)
  206. }
  207. return affected
  208. }
  209. // Exec executes the query.
  210. func (cuu *CreditUsageUpdate) Exec(ctx context.Context) error {
  211. _, err := cuu.Save(ctx)
  212. return err
  213. }
  214. // ExecX is like Exec, but panics if an error occurs.
  215. func (cuu *CreditUsageUpdate) ExecX(ctx context.Context) {
  216. if err := cuu.Exec(ctx); err != nil {
  217. panic(err)
  218. }
  219. }
  220. // defaults sets the default values of the builder before save.
  221. func (cuu *CreditUsageUpdate) defaults() error {
  222. if _, ok := cuu.mutation.UpdatedAt(); !ok {
  223. if creditusage.UpdateDefaultUpdatedAt == nil {
  224. return fmt.Errorf("ent: uninitialized creditusage.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  225. }
  226. v := creditusage.UpdateDefaultUpdatedAt()
  227. cuu.mutation.SetUpdatedAt(v)
  228. }
  229. return nil
  230. }
  231. // check runs all checks and user-defined validators on the builder.
  232. func (cuu *CreditUsageUpdate) check() error {
  233. if v, ok := cuu.mutation.UserID(); ok {
  234. if err := creditusage.UserIDValidator(v); err != nil {
  235. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.user_id": %w`, err)}
  236. }
  237. }
  238. if v, ok := cuu.mutation.Status(); ok {
  239. if err := creditusage.StatusValidator(v); err != nil {
  240. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.status": %w`, err)}
  241. }
  242. }
  243. if v, ok := cuu.mutation.OrganizationID(); ok {
  244. if err := creditusage.OrganizationIDValidator(v); err != nil {
  245. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.organization_id": %w`, err)}
  246. }
  247. }
  248. if v, ok := cuu.mutation.Reason(); ok {
  249. if err := creditusage.ReasonValidator(v); err != nil {
  250. return &ValidationError{Name: "reason", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.reason": %w`, err)}
  251. }
  252. }
  253. if v, ok := cuu.mutation.Operator(); ok {
  254. if err := creditusage.OperatorValidator(v); err != nil {
  255. return &ValidationError{Name: "operator", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.operator": %w`, err)}
  256. }
  257. }
  258. return nil
  259. }
  260. func (cuu *CreditUsageUpdate) sqlSave(ctx context.Context) (n int, err error) {
  261. if err := cuu.check(); err != nil {
  262. return n, err
  263. }
  264. _spec := sqlgraph.NewUpdateSpec(creditusage.Table, creditusage.Columns, sqlgraph.NewFieldSpec(creditusage.FieldID, field.TypeUint64))
  265. if ps := cuu.mutation.predicates; len(ps) > 0 {
  266. _spec.Predicate = func(selector *sql.Selector) {
  267. for i := range ps {
  268. ps[i](selector)
  269. }
  270. }
  271. }
  272. if value, ok := cuu.mutation.UpdatedAt(); ok {
  273. _spec.SetField(creditusage.FieldUpdatedAt, field.TypeTime, value)
  274. }
  275. if value, ok := cuu.mutation.DeletedAt(); ok {
  276. _spec.SetField(creditusage.FieldDeletedAt, field.TypeTime, value)
  277. }
  278. if cuu.mutation.DeletedAtCleared() {
  279. _spec.ClearField(creditusage.FieldDeletedAt, field.TypeTime)
  280. }
  281. if value, ok := cuu.mutation.UserID(); ok {
  282. _spec.SetField(creditusage.FieldUserID, field.TypeString, value)
  283. }
  284. if value, ok := cuu.mutation.Number(); ok {
  285. _spec.SetField(creditusage.FieldNumber, field.TypeFloat32, value)
  286. }
  287. if value, ok := cuu.mutation.AddedNumber(); ok {
  288. _spec.AddField(creditusage.FieldNumber, field.TypeFloat32, value)
  289. }
  290. if value, ok := cuu.mutation.Status(); ok {
  291. _spec.SetField(creditusage.FieldStatus, field.TypeInt, value)
  292. }
  293. if value, ok := cuu.mutation.AddedStatus(); ok {
  294. _spec.AddField(creditusage.FieldStatus, field.TypeInt, value)
  295. }
  296. if cuu.mutation.StatusCleared() {
  297. _spec.ClearField(creditusage.FieldStatus, field.TypeInt)
  298. }
  299. if value, ok := cuu.mutation.Ntype(); ok {
  300. _spec.SetField(creditusage.FieldNtype, field.TypeInt, value)
  301. }
  302. if value, ok := cuu.mutation.AddedNtype(); ok {
  303. _spec.AddField(creditusage.FieldNtype, field.TypeInt, value)
  304. }
  305. if value, ok := cuu.mutation.Table(); ok {
  306. _spec.SetField(creditusage.FieldTable, field.TypeString, value)
  307. }
  308. if value, ok := cuu.mutation.OrganizationID(); ok {
  309. _spec.SetField(creditusage.FieldOrganizationID, field.TypeUint64, value)
  310. }
  311. if value, ok := cuu.mutation.AddedOrganizationID(); ok {
  312. _spec.AddField(creditusage.FieldOrganizationID, field.TypeUint64, value)
  313. }
  314. if value, ok := cuu.mutation.Nid(); ok {
  315. _spec.SetField(creditusage.FieldNid, field.TypeUint64, value)
  316. }
  317. if value, ok := cuu.mutation.AddedNid(); ok {
  318. _spec.AddField(creditusage.FieldNid, field.TypeUint64, value)
  319. }
  320. if value, ok := cuu.mutation.Reason(); ok {
  321. _spec.SetField(creditusage.FieldReason, field.TypeString, value)
  322. }
  323. if value, ok := cuu.mutation.Operator(); ok {
  324. _spec.SetField(creditusage.FieldOperator, field.TypeString, value)
  325. }
  326. if n, err = sqlgraph.UpdateNodes(ctx, cuu.driver, _spec); err != nil {
  327. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  328. err = &NotFoundError{creditusage.Label}
  329. } else if sqlgraph.IsConstraintError(err) {
  330. err = &ConstraintError{msg: err.Error(), wrap: err}
  331. }
  332. return 0, err
  333. }
  334. cuu.mutation.done = true
  335. return n, nil
  336. }
  337. // CreditUsageUpdateOne is the builder for updating a single CreditUsage entity.
  338. type CreditUsageUpdateOne struct {
  339. config
  340. fields []string
  341. hooks []Hook
  342. mutation *CreditUsageMutation
  343. }
  344. // SetUpdatedAt sets the "updated_at" field.
  345. func (cuuo *CreditUsageUpdateOne) SetUpdatedAt(t time.Time) *CreditUsageUpdateOne {
  346. cuuo.mutation.SetUpdatedAt(t)
  347. return cuuo
  348. }
  349. // SetDeletedAt sets the "deleted_at" field.
  350. func (cuuo *CreditUsageUpdateOne) SetDeletedAt(t time.Time) *CreditUsageUpdateOne {
  351. cuuo.mutation.SetDeletedAt(t)
  352. return cuuo
  353. }
  354. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  355. func (cuuo *CreditUsageUpdateOne) SetNillableDeletedAt(t *time.Time) *CreditUsageUpdateOne {
  356. if t != nil {
  357. cuuo.SetDeletedAt(*t)
  358. }
  359. return cuuo
  360. }
  361. // ClearDeletedAt clears the value of the "deleted_at" field.
  362. func (cuuo *CreditUsageUpdateOne) ClearDeletedAt() *CreditUsageUpdateOne {
  363. cuuo.mutation.ClearDeletedAt()
  364. return cuuo
  365. }
  366. // SetUserID sets the "user_id" field.
  367. func (cuuo *CreditUsageUpdateOne) SetUserID(s string) *CreditUsageUpdateOne {
  368. cuuo.mutation.SetUserID(s)
  369. return cuuo
  370. }
  371. // SetNillableUserID sets the "user_id" field if the given value is not nil.
  372. func (cuuo *CreditUsageUpdateOne) SetNillableUserID(s *string) *CreditUsageUpdateOne {
  373. if s != nil {
  374. cuuo.SetUserID(*s)
  375. }
  376. return cuuo
  377. }
  378. // SetNumber sets the "number" field.
  379. func (cuuo *CreditUsageUpdateOne) SetNumber(f float32) *CreditUsageUpdateOne {
  380. cuuo.mutation.ResetNumber()
  381. cuuo.mutation.SetNumber(f)
  382. return cuuo
  383. }
  384. // SetNillableNumber sets the "number" field if the given value is not nil.
  385. func (cuuo *CreditUsageUpdateOne) SetNillableNumber(f *float32) *CreditUsageUpdateOne {
  386. if f != nil {
  387. cuuo.SetNumber(*f)
  388. }
  389. return cuuo
  390. }
  391. // AddNumber adds f to the "number" field.
  392. func (cuuo *CreditUsageUpdateOne) AddNumber(f float32) *CreditUsageUpdateOne {
  393. cuuo.mutation.AddNumber(f)
  394. return cuuo
  395. }
  396. // SetStatus sets the "status" field.
  397. func (cuuo *CreditUsageUpdateOne) SetStatus(i int) *CreditUsageUpdateOne {
  398. cuuo.mutation.ResetStatus()
  399. cuuo.mutation.SetStatus(i)
  400. return cuuo
  401. }
  402. // SetNillableStatus sets the "status" field if the given value is not nil.
  403. func (cuuo *CreditUsageUpdateOne) SetNillableStatus(i *int) *CreditUsageUpdateOne {
  404. if i != nil {
  405. cuuo.SetStatus(*i)
  406. }
  407. return cuuo
  408. }
  409. // AddStatus adds i to the "status" field.
  410. func (cuuo *CreditUsageUpdateOne) AddStatus(i int) *CreditUsageUpdateOne {
  411. cuuo.mutation.AddStatus(i)
  412. return cuuo
  413. }
  414. // ClearStatus clears the value of the "status" field.
  415. func (cuuo *CreditUsageUpdateOne) ClearStatus() *CreditUsageUpdateOne {
  416. cuuo.mutation.ClearStatus()
  417. return cuuo
  418. }
  419. // SetNtype sets the "ntype" field.
  420. func (cuuo *CreditUsageUpdateOne) SetNtype(i int) *CreditUsageUpdateOne {
  421. cuuo.mutation.ResetNtype()
  422. cuuo.mutation.SetNtype(i)
  423. return cuuo
  424. }
  425. // SetNillableNtype sets the "ntype" field if the given value is not nil.
  426. func (cuuo *CreditUsageUpdateOne) SetNillableNtype(i *int) *CreditUsageUpdateOne {
  427. if i != nil {
  428. cuuo.SetNtype(*i)
  429. }
  430. return cuuo
  431. }
  432. // AddNtype adds i to the "ntype" field.
  433. func (cuuo *CreditUsageUpdateOne) AddNtype(i int) *CreditUsageUpdateOne {
  434. cuuo.mutation.AddNtype(i)
  435. return cuuo
  436. }
  437. // SetTable sets the "table" field.
  438. func (cuuo *CreditUsageUpdateOne) SetTable(s string) *CreditUsageUpdateOne {
  439. cuuo.mutation.SetTable(s)
  440. return cuuo
  441. }
  442. // SetNillableTable sets the "table" field if the given value is not nil.
  443. func (cuuo *CreditUsageUpdateOne) SetNillableTable(s *string) *CreditUsageUpdateOne {
  444. if s != nil {
  445. cuuo.SetTable(*s)
  446. }
  447. return cuuo
  448. }
  449. // SetOrganizationID sets the "organization_id" field.
  450. func (cuuo *CreditUsageUpdateOne) SetOrganizationID(u uint64) *CreditUsageUpdateOne {
  451. cuuo.mutation.ResetOrganizationID()
  452. cuuo.mutation.SetOrganizationID(u)
  453. return cuuo
  454. }
  455. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  456. func (cuuo *CreditUsageUpdateOne) SetNillableOrganizationID(u *uint64) *CreditUsageUpdateOne {
  457. if u != nil {
  458. cuuo.SetOrganizationID(*u)
  459. }
  460. return cuuo
  461. }
  462. // AddOrganizationID adds u to the "organization_id" field.
  463. func (cuuo *CreditUsageUpdateOne) AddOrganizationID(u int64) *CreditUsageUpdateOne {
  464. cuuo.mutation.AddOrganizationID(u)
  465. return cuuo
  466. }
  467. // SetNid sets the "nid" field.
  468. func (cuuo *CreditUsageUpdateOne) SetNid(u uint64) *CreditUsageUpdateOne {
  469. cuuo.mutation.ResetNid()
  470. cuuo.mutation.SetNid(u)
  471. return cuuo
  472. }
  473. // SetNillableNid sets the "nid" field if the given value is not nil.
  474. func (cuuo *CreditUsageUpdateOne) SetNillableNid(u *uint64) *CreditUsageUpdateOne {
  475. if u != nil {
  476. cuuo.SetNid(*u)
  477. }
  478. return cuuo
  479. }
  480. // AddNid adds u to the "nid" field.
  481. func (cuuo *CreditUsageUpdateOne) AddNid(u int64) *CreditUsageUpdateOne {
  482. cuuo.mutation.AddNid(u)
  483. return cuuo
  484. }
  485. // SetReason sets the "reason" field.
  486. func (cuuo *CreditUsageUpdateOne) SetReason(s string) *CreditUsageUpdateOne {
  487. cuuo.mutation.SetReason(s)
  488. return cuuo
  489. }
  490. // SetNillableReason sets the "reason" field if the given value is not nil.
  491. func (cuuo *CreditUsageUpdateOne) SetNillableReason(s *string) *CreditUsageUpdateOne {
  492. if s != nil {
  493. cuuo.SetReason(*s)
  494. }
  495. return cuuo
  496. }
  497. // SetOperator sets the "operator" field.
  498. func (cuuo *CreditUsageUpdateOne) SetOperator(s string) *CreditUsageUpdateOne {
  499. cuuo.mutation.SetOperator(s)
  500. return cuuo
  501. }
  502. // SetNillableOperator sets the "operator" field if the given value is not nil.
  503. func (cuuo *CreditUsageUpdateOne) SetNillableOperator(s *string) *CreditUsageUpdateOne {
  504. if s != nil {
  505. cuuo.SetOperator(*s)
  506. }
  507. return cuuo
  508. }
  509. // Mutation returns the CreditUsageMutation object of the builder.
  510. func (cuuo *CreditUsageUpdateOne) Mutation() *CreditUsageMutation {
  511. return cuuo.mutation
  512. }
  513. // Where appends a list predicates to the CreditUsageUpdate builder.
  514. func (cuuo *CreditUsageUpdateOne) Where(ps ...predicate.CreditUsage) *CreditUsageUpdateOne {
  515. cuuo.mutation.Where(ps...)
  516. return cuuo
  517. }
  518. // Select allows selecting one or more fields (columns) of the returned entity.
  519. // The default is selecting all fields defined in the entity schema.
  520. func (cuuo *CreditUsageUpdateOne) Select(field string, fields ...string) *CreditUsageUpdateOne {
  521. cuuo.fields = append([]string{field}, fields...)
  522. return cuuo
  523. }
  524. // Save executes the query and returns the updated CreditUsage entity.
  525. func (cuuo *CreditUsageUpdateOne) Save(ctx context.Context) (*CreditUsage, error) {
  526. if err := cuuo.defaults(); err != nil {
  527. return nil, err
  528. }
  529. return withHooks(ctx, cuuo.sqlSave, cuuo.mutation, cuuo.hooks)
  530. }
  531. // SaveX is like Save, but panics if an error occurs.
  532. func (cuuo *CreditUsageUpdateOne) SaveX(ctx context.Context) *CreditUsage {
  533. node, err := cuuo.Save(ctx)
  534. if err != nil {
  535. panic(err)
  536. }
  537. return node
  538. }
  539. // Exec executes the query on the entity.
  540. func (cuuo *CreditUsageUpdateOne) Exec(ctx context.Context) error {
  541. _, err := cuuo.Save(ctx)
  542. return err
  543. }
  544. // ExecX is like Exec, but panics if an error occurs.
  545. func (cuuo *CreditUsageUpdateOne) ExecX(ctx context.Context) {
  546. if err := cuuo.Exec(ctx); err != nil {
  547. panic(err)
  548. }
  549. }
  550. // defaults sets the default values of the builder before save.
  551. func (cuuo *CreditUsageUpdateOne) defaults() error {
  552. if _, ok := cuuo.mutation.UpdatedAt(); !ok {
  553. if creditusage.UpdateDefaultUpdatedAt == nil {
  554. return fmt.Errorf("ent: uninitialized creditusage.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  555. }
  556. v := creditusage.UpdateDefaultUpdatedAt()
  557. cuuo.mutation.SetUpdatedAt(v)
  558. }
  559. return nil
  560. }
  561. // check runs all checks and user-defined validators on the builder.
  562. func (cuuo *CreditUsageUpdateOne) check() error {
  563. if v, ok := cuuo.mutation.UserID(); ok {
  564. if err := creditusage.UserIDValidator(v); err != nil {
  565. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.user_id": %w`, err)}
  566. }
  567. }
  568. if v, ok := cuuo.mutation.Status(); ok {
  569. if err := creditusage.StatusValidator(v); err != nil {
  570. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.status": %w`, err)}
  571. }
  572. }
  573. if v, ok := cuuo.mutation.OrganizationID(); ok {
  574. if err := creditusage.OrganizationIDValidator(v); err != nil {
  575. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.organization_id": %w`, err)}
  576. }
  577. }
  578. if v, ok := cuuo.mutation.Reason(); ok {
  579. if err := creditusage.ReasonValidator(v); err != nil {
  580. return &ValidationError{Name: "reason", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.reason": %w`, err)}
  581. }
  582. }
  583. if v, ok := cuuo.mutation.Operator(); ok {
  584. if err := creditusage.OperatorValidator(v); err != nil {
  585. return &ValidationError{Name: "operator", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.operator": %w`, err)}
  586. }
  587. }
  588. return nil
  589. }
  590. func (cuuo *CreditUsageUpdateOne) sqlSave(ctx context.Context) (_node *CreditUsage, err error) {
  591. if err := cuuo.check(); err != nil {
  592. return _node, err
  593. }
  594. _spec := sqlgraph.NewUpdateSpec(creditusage.Table, creditusage.Columns, sqlgraph.NewFieldSpec(creditusage.FieldID, field.TypeUint64))
  595. id, ok := cuuo.mutation.ID()
  596. if !ok {
  597. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "CreditUsage.id" for update`)}
  598. }
  599. _spec.Node.ID.Value = id
  600. if fields := cuuo.fields; len(fields) > 0 {
  601. _spec.Node.Columns = make([]string, 0, len(fields))
  602. _spec.Node.Columns = append(_spec.Node.Columns, creditusage.FieldID)
  603. for _, f := range fields {
  604. if !creditusage.ValidColumn(f) {
  605. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  606. }
  607. if f != creditusage.FieldID {
  608. _spec.Node.Columns = append(_spec.Node.Columns, f)
  609. }
  610. }
  611. }
  612. if ps := cuuo.mutation.predicates; len(ps) > 0 {
  613. _spec.Predicate = func(selector *sql.Selector) {
  614. for i := range ps {
  615. ps[i](selector)
  616. }
  617. }
  618. }
  619. if value, ok := cuuo.mutation.UpdatedAt(); ok {
  620. _spec.SetField(creditusage.FieldUpdatedAt, field.TypeTime, value)
  621. }
  622. if value, ok := cuuo.mutation.DeletedAt(); ok {
  623. _spec.SetField(creditusage.FieldDeletedAt, field.TypeTime, value)
  624. }
  625. if cuuo.mutation.DeletedAtCleared() {
  626. _spec.ClearField(creditusage.FieldDeletedAt, field.TypeTime)
  627. }
  628. if value, ok := cuuo.mutation.UserID(); ok {
  629. _spec.SetField(creditusage.FieldUserID, field.TypeString, value)
  630. }
  631. if value, ok := cuuo.mutation.Number(); ok {
  632. _spec.SetField(creditusage.FieldNumber, field.TypeFloat32, value)
  633. }
  634. if value, ok := cuuo.mutation.AddedNumber(); ok {
  635. _spec.AddField(creditusage.FieldNumber, field.TypeFloat32, value)
  636. }
  637. if value, ok := cuuo.mutation.Status(); ok {
  638. _spec.SetField(creditusage.FieldStatus, field.TypeInt, value)
  639. }
  640. if value, ok := cuuo.mutation.AddedStatus(); ok {
  641. _spec.AddField(creditusage.FieldStatus, field.TypeInt, value)
  642. }
  643. if cuuo.mutation.StatusCleared() {
  644. _spec.ClearField(creditusage.FieldStatus, field.TypeInt)
  645. }
  646. if value, ok := cuuo.mutation.Ntype(); ok {
  647. _spec.SetField(creditusage.FieldNtype, field.TypeInt, value)
  648. }
  649. if value, ok := cuuo.mutation.AddedNtype(); ok {
  650. _spec.AddField(creditusage.FieldNtype, field.TypeInt, value)
  651. }
  652. if value, ok := cuuo.mutation.Table(); ok {
  653. _spec.SetField(creditusage.FieldTable, field.TypeString, value)
  654. }
  655. if value, ok := cuuo.mutation.OrganizationID(); ok {
  656. _spec.SetField(creditusage.FieldOrganizationID, field.TypeUint64, value)
  657. }
  658. if value, ok := cuuo.mutation.AddedOrganizationID(); ok {
  659. _spec.AddField(creditusage.FieldOrganizationID, field.TypeUint64, value)
  660. }
  661. if value, ok := cuuo.mutation.Nid(); ok {
  662. _spec.SetField(creditusage.FieldNid, field.TypeUint64, value)
  663. }
  664. if value, ok := cuuo.mutation.AddedNid(); ok {
  665. _spec.AddField(creditusage.FieldNid, field.TypeUint64, value)
  666. }
  667. if value, ok := cuuo.mutation.Reason(); ok {
  668. _spec.SetField(creditusage.FieldReason, field.TypeString, value)
  669. }
  670. if value, ok := cuuo.mutation.Operator(); ok {
  671. _spec.SetField(creditusage.FieldOperator, field.TypeString, value)
  672. }
  673. _node = &CreditUsage{config: cuuo.config}
  674. _spec.Assign = _node.assignValues
  675. _spec.ScanValues = _node.scanValues
  676. if err = sqlgraph.UpdateNode(ctx, cuuo.driver, _spec); err != nil {
  677. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  678. err = &NotFoundError{creditusage.Label}
  679. } else if sqlgraph.IsConstraintError(err) {
  680. err = &ConstraintError{msg: err.Error(), wrap: err}
  681. }
  682. return nil, err
  683. }
  684. cuuo.mutation.done = true
  685. return _node, nil
  686. }