creditusage_create.go 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312
  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. "entgo.io/ent/dialect/sql"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // CreditUsageCreate is the builder for creating a CreditUsage entity.
  14. type CreditUsageCreate struct {
  15. config
  16. mutation *CreditUsageMutation
  17. hooks []Hook
  18. conflict []sql.ConflictOption
  19. }
  20. // SetCreatedAt sets the "created_at" field.
  21. func (cuc *CreditUsageCreate) SetCreatedAt(t time.Time) *CreditUsageCreate {
  22. cuc.mutation.SetCreatedAt(t)
  23. return cuc
  24. }
  25. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  26. func (cuc *CreditUsageCreate) SetNillableCreatedAt(t *time.Time) *CreditUsageCreate {
  27. if t != nil {
  28. cuc.SetCreatedAt(*t)
  29. }
  30. return cuc
  31. }
  32. // SetUpdatedAt sets the "updated_at" field.
  33. func (cuc *CreditUsageCreate) SetUpdatedAt(t time.Time) *CreditUsageCreate {
  34. cuc.mutation.SetUpdatedAt(t)
  35. return cuc
  36. }
  37. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  38. func (cuc *CreditUsageCreate) SetNillableUpdatedAt(t *time.Time) *CreditUsageCreate {
  39. if t != nil {
  40. cuc.SetUpdatedAt(*t)
  41. }
  42. return cuc
  43. }
  44. // SetDeletedAt sets the "deleted_at" field.
  45. func (cuc *CreditUsageCreate) SetDeletedAt(t time.Time) *CreditUsageCreate {
  46. cuc.mutation.SetDeletedAt(t)
  47. return cuc
  48. }
  49. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  50. func (cuc *CreditUsageCreate) SetNillableDeletedAt(t *time.Time) *CreditUsageCreate {
  51. if t != nil {
  52. cuc.SetDeletedAt(*t)
  53. }
  54. return cuc
  55. }
  56. // SetUserID sets the "user_id" field.
  57. func (cuc *CreditUsageCreate) SetUserID(s string) *CreditUsageCreate {
  58. cuc.mutation.SetUserID(s)
  59. return cuc
  60. }
  61. // SetNumber sets the "number" field.
  62. func (cuc *CreditUsageCreate) SetNumber(f float32) *CreditUsageCreate {
  63. cuc.mutation.SetNumber(f)
  64. return cuc
  65. }
  66. // SetStatus sets the "status" field.
  67. func (cuc *CreditUsageCreate) SetStatus(i int) *CreditUsageCreate {
  68. cuc.mutation.SetStatus(i)
  69. return cuc
  70. }
  71. // SetNillableStatus sets the "status" field if the given value is not nil.
  72. func (cuc *CreditUsageCreate) SetNillableStatus(i *int) *CreditUsageCreate {
  73. if i != nil {
  74. cuc.SetStatus(*i)
  75. }
  76. return cuc
  77. }
  78. // SetNtype sets the "ntype" field.
  79. func (cuc *CreditUsageCreate) SetNtype(i int) *CreditUsageCreate {
  80. cuc.mutation.SetNtype(i)
  81. return cuc
  82. }
  83. // SetNillableNtype sets the "ntype" field if the given value is not nil.
  84. func (cuc *CreditUsageCreate) SetNillableNtype(i *int) *CreditUsageCreate {
  85. if i != nil {
  86. cuc.SetNtype(*i)
  87. }
  88. return cuc
  89. }
  90. // SetTable sets the "table" field.
  91. func (cuc *CreditUsageCreate) SetTable(s string) *CreditUsageCreate {
  92. cuc.mutation.SetTable(s)
  93. return cuc
  94. }
  95. // SetNillableTable sets the "table" field if the given value is not nil.
  96. func (cuc *CreditUsageCreate) SetNillableTable(s *string) *CreditUsageCreate {
  97. if s != nil {
  98. cuc.SetTable(*s)
  99. }
  100. return cuc
  101. }
  102. // SetOrganizationID sets the "organization_id" field.
  103. func (cuc *CreditUsageCreate) SetOrganizationID(u uint64) *CreditUsageCreate {
  104. cuc.mutation.SetOrganizationID(u)
  105. return cuc
  106. }
  107. // SetNid sets the "nid" field.
  108. func (cuc *CreditUsageCreate) SetNid(u uint64) *CreditUsageCreate {
  109. cuc.mutation.SetNid(u)
  110. return cuc
  111. }
  112. // SetNillableNid sets the "nid" field if the given value is not nil.
  113. func (cuc *CreditUsageCreate) SetNillableNid(u *uint64) *CreditUsageCreate {
  114. if u != nil {
  115. cuc.SetNid(*u)
  116. }
  117. return cuc
  118. }
  119. // SetReason sets the "reason" field.
  120. func (cuc *CreditUsageCreate) SetReason(s string) *CreditUsageCreate {
  121. cuc.mutation.SetReason(s)
  122. return cuc
  123. }
  124. // SetNillableReason sets the "reason" field if the given value is not nil.
  125. func (cuc *CreditUsageCreate) SetNillableReason(s *string) *CreditUsageCreate {
  126. if s != nil {
  127. cuc.SetReason(*s)
  128. }
  129. return cuc
  130. }
  131. // SetOperator sets the "operator" field.
  132. func (cuc *CreditUsageCreate) SetOperator(s string) *CreditUsageCreate {
  133. cuc.mutation.SetOperator(s)
  134. return cuc
  135. }
  136. // SetNillableOperator sets the "operator" field if the given value is not nil.
  137. func (cuc *CreditUsageCreate) SetNillableOperator(s *string) *CreditUsageCreate {
  138. if s != nil {
  139. cuc.SetOperator(*s)
  140. }
  141. return cuc
  142. }
  143. // SetID sets the "id" field.
  144. func (cuc *CreditUsageCreate) SetID(u uint64) *CreditUsageCreate {
  145. cuc.mutation.SetID(u)
  146. return cuc
  147. }
  148. // Mutation returns the CreditUsageMutation object of the builder.
  149. func (cuc *CreditUsageCreate) Mutation() *CreditUsageMutation {
  150. return cuc.mutation
  151. }
  152. // Save creates the CreditUsage in the database.
  153. func (cuc *CreditUsageCreate) Save(ctx context.Context) (*CreditUsage, error) {
  154. if err := cuc.defaults(); err != nil {
  155. return nil, err
  156. }
  157. return withHooks(ctx, cuc.sqlSave, cuc.mutation, cuc.hooks)
  158. }
  159. // SaveX calls Save and panics if Save returns an error.
  160. func (cuc *CreditUsageCreate) SaveX(ctx context.Context) *CreditUsage {
  161. v, err := cuc.Save(ctx)
  162. if err != nil {
  163. panic(err)
  164. }
  165. return v
  166. }
  167. // Exec executes the query.
  168. func (cuc *CreditUsageCreate) Exec(ctx context.Context) error {
  169. _, err := cuc.Save(ctx)
  170. return err
  171. }
  172. // ExecX is like Exec, but panics if an error occurs.
  173. func (cuc *CreditUsageCreate) ExecX(ctx context.Context) {
  174. if err := cuc.Exec(ctx); err != nil {
  175. panic(err)
  176. }
  177. }
  178. // defaults sets the default values of the builder before save.
  179. func (cuc *CreditUsageCreate) defaults() error {
  180. if _, ok := cuc.mutation.CreatedAt(); !ok {
  181. if creditusage.DefaultCreatedAt == nil {
  182. return fmt.Errorf("ent: uninitialized creditusage.DefaultCreatedAt (forgotten import ent/runtime?)")
  183. }
  184. v := creditusage.DefaultCreatedAt()
  185. cuc.mutation.SetCreatedAt(v)
  186. }
  187. if _, ok := cuc.mutation.UpdatedAt(); !ok {
  188. if creditusage.DefaultUpdatedAt == nil {
  189. return fmt.Errorf("ent: uninitialized creditusage.DefaultUpdatedAt (forgotten import ent/runtime?)")
  190. }
  191. v := creditusage.DefaultUpdatedAt()
  192. cuc.mutation.SetUpdatedAt(v)
  193. }
  194. if _, ok := cuc.mutation.Status(); !ok {
  195. v := creditusage.DefaultStatus
  196. cuc.mutation.SetStatus(v)
  197. }
  198. if _, ok := cuc.mutation.Ntype(); !ok {
  199. v := creditusage.DefaultNtype
  200. cuc.mutation.SetNtype(v)
  201. }
  202. if _, ok := cuc.mutation.Table(); !ok {
  203. v := creditusage.DefaultTable
  204. cuc.mutation.SetTable(v)
  205. }
  206. if _, ok := cuc.mutation.Nid(); !ok {
  207. v := creditusage.DefaultNid
  208. cuc.mutation.SetNid(v)
  209. }
  210. if _, ok := cuc.mutation.Reason(); !ok {
  211. v := creditusage.DefaultReason
  212. cuc.mutation.SetReason(v)
  213. }
  214. if _, ok := cuc.mutation.Operator(); !ok {
  215. v := creditusage.DefaultOperator
  216. cuc.mutation.SetOperator(v)
  217. }
  218. return nil
  219. }
  220. // check runs all checks and user-defined validators on the builder.
  221. func (cuc *CreditUsageCreate) check() error {
  222. if _, ok := cuc.mutation.CreatedAt(); !ok {
  223. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "CreditUsage.created_at"`)}
  224. }
  225. if _, ok := cuc.mutation.UpdatedAt(); !ok {
  226. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "CreditUsage.updated_at"`)}
  227. }
  228. if _, ok := cuc.mutation.UserID(); !ok {
  229. return &ValidationError{Name: "user_id", err: errors.New(`ent: missing required field "CreditUsage.user_id"`)}
  230. }
  231. if v, ok := cuc.mutation.UserID(); ok {
  232. if err := creditusage.UserIDValidator(v); err != nil {
  233. return &ValidationError{Name: "user_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.user_id": %w`, err)}
  234. }
  235. }
  236. if _, ok := cuc.mutation.Number(); !ok {
  237. return &ValidationError{Name: "number", err: errors.New(`ent: missing required field "CreditUsage.number"`)}
  238. }
  239. if v, ok := cuc.mutation.Status(); ok {
  240. if err := creditusage.StatusValidator(v); err != nil {
  241. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.status": %w`, err)}
  242. }
  243. }
  244. if _, ok := cuc.mutation.Ntype(); !ok {
  245. return &ValidationError{Name: "ntype", err: errors.New(`ent: missing required field "CreditUsage.ntype"`)}
  246. }
  247. if _, ok := cuc.mutation.Table(); !ok {
  248. return &ValidationError{Name: "table", err: errors.New(`ent: missing required field "CreditUsage.table"`)}
  249. }
  250. if _, ok := cuc.mutation.OrganizationID(); !ok {
  251. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "CreditUsage.organization_id"`)}
  252. }
  253. if v, ok := cuc.mutation.OrganizationID(); ok {
  254. if err := creditusage.OrganizationIDValidator(v); err != nil {
  255. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.organization_id": %w`, err)}
  256. }
  257. }
  258. if _, ok := cuc.mutation.Nid(); !ok {
  259. return &ValidationError{Name: "nid", err: errors.New(`ent: missing required field "CreditUsage.nid"`)}
  260. }
  261. if _, ok := cuc.mutation.Reason(); !ok {
  262. return &ValidationError{Name: "reason", err: errors.New(`ent: missing required field "CreditUsage.reason"`)}
  263. }
  264. if v, ok := cuc.mutation.Reason(); ok {
  265. if err := creditusage.ReasonValidator(v); err != nil {
  266. return &ValidationError{Name: "reason", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.reason": %w`, err)}
  267. }
  268. }
  269. if _, ok := cuc.mutation.Operator(); !ok {
  270. return &ValidationError{Name: "operator", err: errors.New(`ent: missing required field "CreditUsage.operator"`)}
  271. }
  272. if v, ok := cuc.mutation.Operator(); ok {
  273. if err := creditusage.OperatorValidator(v); err != nil {
  274. return &ValidationError{Name: "operator", err: fmt.Errorf(`ent: validator failed for field "CreditUsage.operator": %w`, err)}
  275. }
  276. }
  277. return nil
  278. }
  279. func (cuc *CreditUsageCreate) sqlSave(ctx context.Context) (*CreditUsage, error) {
  280. if err := cuc.check(); err != nil {
  281. return nil, err
  282. }
  283. _node, _spec := cuc.createSpec()
  284. if err := sqlgraph.CreateNode(ctx, cuc.driver, _spec); err != nil {
  285. if sqlgraph.IsConstraintError(err) {
  286. err = &ConstraintError{msg: err.Error(), wrap: err}
  287. }
  288. return nil, err
  289. }
  290. if _spec.ID.Value != _node.ID {
  291. id := _spec.ID.Value.(int64)
  292. _node.ID = uint64(id)
  293. }
  294. cuc.mutation.id = &_node.ID
  295. cuc.mutation.done = true
  296. return _node, nil
  297. }
  298. func (cuc *CreditUsageCreate) createSpec() (*CreditUsage, *sqlgraph.CreateSpec) {
  299. var (
  300. _node = &CreditUsage{config: cuc.config}
  301. _spec = sqlgraph.NewCreateSpec(creditusage.Table, sqlgraph.NewFieldSpec(creditusage.FieldID, field.TypeUint64))
  302. )
  303. _spec.OnConflict = cuc.conflict
  304. if id, ok := cuc.mutation.ID(); ok {
  305. _node.ID = id
  306. _spec.ID.Value = id
  307. }
  308. if value, ok := cuc.mutation.CreatedAt(); ok {
  309. _spec.SetField(creditusage.FieldCreatedAt, field.TypeTime, value)
  310. _node.CreatedAt = value
  311. }
  312. if value, ok := cuc.mutation.UpdatedAt(); ok {
  313. _spec.SetField(creditusage.FieldUpdatedAt, field.TypeTime, value)
  314. _node.UpdatedAt = value
  315. }
  316. if value, ok := cuc.mutation.DeletedAt(); ok {
  317. _spec.SetField(creditusage.FieldDeletedAt, field.TypeTime, value)
  318. _node.DeletedAt = value
  319. }
  320. if value, ok := cuc.mutation.UserID(); ok {
  321. _spec.SetField(creditusage.FieldUserID, field.TypeString, value)
  322. _node.UserID = value
  323. }
  324. if value, ok := cuc.mutation.Number(); ok {
  325. _spec.SetField(creditusage.FieldNumber, field.TypeFloat32, value)
  326. _node.Number = value
  327. }
  328. if value, ok := cuc.mutation.Status(); ok {
  329. _spec.SetField(creditusage.FieldStatus, field.TypeInt, value)
  330. _node.Status = value
  331. }
  332. if value, ok := cuc.mutation.Ntype(); ok {
  333. _spec.SetField(creditusage.FieldNtype, field.TypeInt, value)
  334. _node.Ntype = value
  335. }
  336. if value, ok := cuc.mutation.Table(); ok {
  337. _spec.SetField(creditusage.FieldTable, field.TypeString, value)
  338. _node.Table = value
  339. }
  340. if value, ok := cuc.mutation.OrganizationID(); ok {
  341. _spec.SetField(creditusage.FieldOrganizationID, field.TypeUint64, value)
  342. _node.OrganizationID = value
  343. }
  344. if value, ok := cuc.mutation.Nid(); ok {
  345. _spec.SetField(creditusage.FieldNid, field.TypeUint64, value)
  346. _node.Nid = value
  347. }
  348. if value, ok := cuc.mutation.Reason(); ok {
  349. _spec.SetField(creditusage.FieldReason, field.TypeString, value)
  350. _node.Reason = value
  351. }
  352. if value, ok := cuc.mutation.Operator(); ok {
  353. _spec.SetField(creditusage.FieldOperator, field.TypeString, value)
  354. _node.Operator = value
  355. }
  356. return _node, _spec
  357. }
  358. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  359. // of the `INSERT` statement. For example:
  360. //
  361. // client.CreditUsage.Create().
  362. // SetCreatedAt(v).
  363. // OnConflict(
  364. // // Update the row with the new values
  365. // // the was proposed for insertion.
  366. // sql.ResolveWithNewValues(),
  367. // ).
  368. // // Override some of the fields with custom
  369. // // update values.
  370. // Update(func(u *ent.CreditUsageUpsert) {
  371. // SetCreatedAt(v+v).
  372. // }).
  373. // Exec(ctx)
  374. func (cuc *CreditUsageCreate) OnConflict(opts ...sql.ConflictOption) *CreditUsageUpsertOne {
  375. cuc.conflict = opts
  376. return &CreditUsageUpsertOne{
  377. create: cuc,
  378. }
  379. }
  380. // OnConflictColumns calls `OnConflict` and configures the columns
  381. // as conflict target. Using this option is equivalent to using:
  382. //
  383. // client.CreditUsage.Create().
  384. // OnConflict(sql.ConflictColumns(columns...)).
  385. // Exec(ctx)
  386. func (cuc *CreditUsageCreate) OnConflictColumns(columns ...string) *CreditUsageUpsertOne {
  387. cuc.conflict = append(cuc.conflict, sql.ConflictColumns(columns...))
  388. return &CreditUsageUpsertOne{
  389. create: cuc,
  390. }
  391. }
  392. type (
  393. // CreditUsageUpsertOne is the builder for "upsert"-ing
  394. // one CreditUsage node.
  395. CreditUsageUpsertOne struct {
  396. create *CreditUsageCreate
  397. }
  398. // CreditUsageUpsert is the "OnConflict" setter.
  399. CreditUsageUpsert struct {
  400. *sql.UpdateSet
  401. }
  402. )
  403. // SetUpdatedAt sets the "updated_at" field.
  404. func (u *CreditUsageUpsert) SetUpdatedAt(v time.Time) *CreditUsageUpsert {
  405. u.Set(creditusage.FieldUpdatedAt, v)
  406. return u
  407. }
  408. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  409. func (u *CreditUsageUpsert) UpdateUpdatedAt() *CreditUsageUpsert {
  410. u.SetExcluded(creditusage.FieldUpdatedAt)
  411. return u
  412. }
  413. // SetDeletedAt sets the "deleted_at" field.
  414. func (u *CreditUsageUpsert) SetDeletedAt(v time.Time) *CreditUsageUpsert {
  415. u.Set(creditusage.FieldDeletedAt, v)
  416. return u
  417. }
  418. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  419. func (u *CreditUsageUpsert) UpdateDeletedAt() *CreditUsageUpsert {
  420. u.SetExcluded(creditusage.FieldDeletedAt)
  421. return u
  422. }
  423. // ClearDeletedAt clears the value of the "deleted_at" field.
  424. func (u *CreditUsageUpsert) ClearDeletedAt() *CreditUsageUpsert {
  425. u.SetNull(creditusage.FieldDeletedAt)
  426. return u
  427. }
  428. // SetUserID sets the "user_id" field.
  429. func (u *CreditUsageUpsert) SetUserID(v string) *CreditUsageUpsert {
  430. u.Set(creditusage.FieldUserID, v)
  431. return u
  432. }
  433. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  434. func (u *CreditUsageUpsert) UpdateUserID() *CreditUsageUpsert {
  435. u.SetExcluded(creditusage.FieldUserID)
  436. return u
  437. }
  438. // SetNumber sets the "number" field.
  439. func (u *CreditUsageUpsert) SetNumber(v float32) *CreditUsageUpsert {
  440. u.Set(creditusage.FieldNumber, v)
  441. return u
  442. }
  443. // UpdateNumber sets the "number" field to the value that was provided on create.
  444. func (u *CreditUsageUpsert) UpdateNumber() *CreditUsageUpsert {
  445. u.SetExcluded(creditusage.FieldNumber)
  446. return u
  447. }
  448. // AddNumber adds v to the "number" field.
  449. func (u *CreditUsageUpsert) AddNumber(v float32) *CreditUsageUpsert {
  450. u.Add(creditusage.FieldNumber, v)
  451. return u
  452. }
  453. // SetStatus sets the "status" field.
  454. func (u *CreditUsageUpsert) SetStatus(v int) *CreditUsageUpsert {
  455. u.Set(creditusage.FieldStatus, v)
  456. return u
  457. }
  458. // UpdateStatus sets the "status" field to the value that was provided on create.
  459. func (u *CreditUsageUpsert) UpdateStatus() *CreditUsageUpsert {
  460. u.SetExcluded(creditusage.FieldStatus)
  461. return u
  462. }
  463. // AddStatus adds v to the "status" field.
  464. func (u *CreditUsageUpsert) AddStatus(v int) *CreditUsageUpsert {
  465. u.Add(creditusage.FieldStatus, v)
  466. return u
  467. }
  468. // ClearStatus clears the value of the "status" field.
  469. func (u *CreditUsageUpsert) ClearStatus() *CreditUsageUpsert {
  470. u.SetNull(creditusage.FieldStatus)
  471. return u
  472. }
  473. // SetNtype sets the "ntype" field.
  474. func (u *CreditUsageUpsert) SetNtype(v int) *CreditUsageUpsert {
  475. u.Set(creditusage.FieldNtype, v)
  476. return u
  477. }
  478. // UpdateNtype sets the "ntype" field to the value that was provided on create.
  479. func (u *CreditUsageUpsert) UpdateNtype() *CreditUsageUpsert {
  480. u.SetExcluded(creditusage.FieldNtype)
  481. return u
  482. }
  483. // AddNtype adds v to the "ntype" field.
  484. func (u *CreditUsageUpsert) AddNtype(v int) *CreditUsageUpsert {
  485. u.Add(creditusage.FieldNtype, v)
  486. return u
  487. }
  488. // SetTable sets the "table" field.
  489. func (u *CreditUsageUpsert) SetTable(v string) *CreditUsageUpsert {
  490. u.Set(creditusage.FieldTable, v)
  491. return u
  492. }
  493. // UpdateTable sets the "table" field to the value that was provided on create.
  494. func (u *CreditUsageUpsert) UpdateTable() *CreditUsageUpsert {
  495. u.SetExcluded(creditusage.FieldTable)
  496. return u
  497. }
  498. // SetOrganizationID sets the "organization_id" field.
  499. func (u *CreditUsageUpsert) SetOrganizationID(v uint64) *CreditUsageUpsert {
  500. u.Set(creditusage.FieldOrganizationID, v)
  501. return u
  502. }
  503. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  504. func (u *CreditUsageUpsert) UpdateOrganizationID() *CreditUsageUpsert {
  505. u.SetExcluded(creditusage.FieldOrganizationID)
  506. return u
  507. }
  508. // AddOrganizationID adds v to the "organization_id" field.
  509. func (u *CreditUsageUpsert) AddOrganizationID(v uint64) *CreditUsageUpsert {
  510. u.Add(creditusage.FieldOrganizationID, v)
  511. return u
  512. }
  513. // SetNid sets the "nid" field.
  514. func (u *CreditUsageUpsert) SetNid(v uint64) *CreditUsageUpsert {
  515. u.Set(creditusage.FieldNid, v)
  516. return u
  517. }
  518. // UpdateNid sets the "nid" field to the value that was provided on create.
  519. func (u *CreditUsageUpsert) UpdateNid() *CreditUsageUpsert {
  520. u.SetExcluded(creditusage.FieldNid)
  521. return u
  522. }
  523. // AddNid adds v to the "nid" field.
  524. func (u *CreditUsageUpsert) AddNid(v uint64) *CreditUsageUpsert {
  525. u.Add(creditusage.FieldNid, v)
  526. return u
  527. }
  528. // SetReason sets the "reason" field.
  529. func (u *CreditUsageUpsert) SetReason(v string) *CreditUsageUpsert {
  530. u.Set(creditusage.FieldReason, v)
  531. return u
  532. }
  533. // UpdateReason sets the "reason" field to the value that was provided on create.
  534. func (u *CreditUsageUpsert) UpdateReason() *CreditUsageUpsert {
  535. u.SetExcluded(creditusage.FieldReason)
  536. return u
  537. }
  538. // SetOperator sets the "operator" field.
  539. func (u *CreditUsageUpsert) SetOperator(v string) *CreditUsageUpsert {
  540. u.Set(creditusage.FieldOperator, v)
  541. return u
  542. }
  543. // UpdateOperator sets the "operator" field to the value that was provided on create.
  544. func (u *CreditUsageUpsert) UpdateOperator() *CreditUsageUpsert {
  545. u.SetExcluded(creditusage.FieldOperator)
  546. return u
  547. }
  548. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  549. // Using this option is equivalent to using:
  550. //
  551. // client.CreditUsage.Create().
  552. // OnConflict(
  553. // sql.ResolveWithNewValues(),
  554. // sql.ResolveWith(func(u *sql.UpdateSet) {
  555. // u.SetIgnore(creditusage.FieldID)
  556. // }),
  557. // ).
  558. // Exec(ctx)
  559. func (u *CreditUsageUpsertOne) UpdateNewValues() *CreditUsageUpsertOne {
  560. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  561. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  562. if _, exists := u.create.mutation.ID(); exists {
  563. s.SetIgnore(creditusage.FieldID)
  564. }
  565. if _, exists := u.create.mutation.CreatedAt(); exists {
  566. s.SetIgnore(creditusage.FieldCreatedAt)
  567. }
  568. }))
  569. return u
  570. }
  571. // Ignore sets each column to itself in case of conflict.
  572. // Using this option is equivalent to using:
  573. //
  574. // client.CreditUsage.Create().
  575. // OnConflict(sql.ResolveWithIgnore()).
  576. // Exec(ctx)
  577. func (u *CreditUsageUpsertOne) Ignore() *CreditUsageUpsertOne {
  578. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  579. return u
  580. }
  581. // DoNothing configures the conflict_action to `DO NOTHING`.
  582. // Supported only by SQLite and PostgreSQL.
  583. func (u *CreditUsageUpsertOne) DoNothing() *CreditUsageUpsertOne {
  584. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  585. return u
  586. }
  587. // Update allows overriding fields `UPDATE` values. See the CreditUsageCreate.OnConflict
  588. // documentation for more info.
  589. func (u *CreditUsageUpsertOne) Update(set func(*CreditUsageUpsert)) *CreditUsageUpsertOne {
  590. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  591. set(&CreditUsageUpsert{UpdateSet: update})
  592. }))
  593. return u
  594. }
  595. // SetUpdatedAt sets the "updated_at" field.
  596. func (u *CreditUsageUpsertOne) SetUpdatedAt(v time.Time) *CreditUsageUpsertOne {
  597. return u.Update(func(s *CreditUsageUpsert) {
  598. s.SetUpdatedAt(v)
  599. })
  600. }
  601. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  602. func (u *CreditUsageUpsertOne) UpdateUpdatedAt() *CreditUsageUpsertOne {
  603. return u.Update(func(s *CreditUsageUpsert) {
  604. s.UpdateUpdatedAt()
  605. })
  606. }
  607. // SetDeletedAt sets the "deleted_at" field.
  608. func (u *CreditUsageUpsertOne) SetDeletedAt(v time.Time) *CreditUsageUpsertOne {
  609. return u.Update(func(s *CreditUsageUpsert) {
  610. s.SetDeletedAt(v)
  611. })
  612. }
  613. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  614. func (u *CreditUsageUpsertOne) UpdateDeletedAt() *CreditUsageUpsertOne {
  615. return u.Update(func(s *CreditUsageUpsert) {
  616. s.UpdateDeletedAt()
  617. })
  618. }
  619. // ClearDeletedAt clears the value of the "deleted_at" field.
  620. func (u *CreditUsageUpsertOne) ClearDeletedAt() *CreditUsageUpsertOne {
  621. return u.Update(func(s *CreditUsageUpsert) {
  622. s.ClearDeletedAt()
  623. })
  624. }
  625. // SetUserID sets the "user_id" field.
  626. func (u *CreditUsageUpsertOne) SetUserID(v string) *CreditUsageUpsertOne {
  627. return u.Update(func(s *CreditUsageUpsert) {
  628. s.SetUserID(v)
  629. })
  630. }
  631. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  632. func (u *CreditUsageUpsertOne) UpdateUserID() *CreditUsageUpsertOne {
  633. return u.Update(func(s *CreditUsageUpsert) {
  634. s.UpdateUserID()
  635. })
  636. }
  637. // SetNumber sets the "number" field.
  638. func (u *CreditUsageUpsertOne) SetNumber(v float32) *CreditUsageUpsertOne {
  639. return u.Update(func(s *CreditUsageUpsert) {
  640. s.SetNumber(v)
  641. })
  642. }
  643. // AddNumber adds v to the "number" field.
  644. func (u *CreditUsageUpsertOne) AddNumber(v float32) *CreditUsageUpsertOne {
  645. return u.Update(func(s *CreditUsageUpsert) {
  646. s.AddNumber(v)
  647. })
  648. }
  649. // UpdateNumber sets the "number" field to the value that was provided on create.
  650. func (u *CreditUsageUpsertOne) UpdateNumber() *CreditUsageUpsertOne {
  651. return u.Update(func(s *CreditUsageUpsert) {
  652. s.UpdateNumber()
  653. })
  654. }
  655. // SetStatus sets the "status" field.
  656. func (u *CreditUsageUpsertOne) SetStatus(v int) *CreditUsageUpsertOne {
  657. return u.Update(func(s *CreditUsageUpsert) {
  658. s.SetStatus(v)
  659. })
  660. }
  661. // AddStatus adds v to the "status" field.
  662. func (u *CreditUsageUpsertOne) AddStatus(v int) *CreditUsageUpsertOne {
  663. return u.Update(func(s *CreditUsageUpsert) {
  664. s.AddStatus(v)
  665. })
  666. }
  667. // UpdateStatus sets the "status" field to the value that was provided on create.
  668. func (u *CreditUsageUpsertOne) UpdateStatus() *CreditUsageUpsertOne {
  669. return u.Update(func(s *CreditUsageUpsert) {
  670. s.UpdateStatus()
  671. })
  672. }
  673. // ClearStatus clears the value of the "status" field.
  674. func (u *CreditUsageUpsertOne) ClearStatus() *CreditUsageUpsertOne {
  675. return u.Update(func(s *CreditUsageUpsert) {
  676. s.ClearStatus()
  677. })
  678. }
  679. // SetNtype sets the "ntype" field.
  680. func (u *CreditUsageUpsertOne) SetNtype(v int) *CreditUsageUpsertOne {
  681. return u.Update(func(s *CreditUsageUpsert) {
  682. s.SetNtype(v)
  683. })
  684. }
  685. // AddNtype adds v to the "ntype" field.
  686. func (u *CreditUsageUpsertOne) AddNtype(v int) *CreditUsageUpsertOne {
  687. return u.Update(func(s *CreditUsageUpsert) {
  688. s.AddNtype(v)
  689. })
  690. }
  691. // UpdateNtype sets the "ntype" field to the value that was provided on create.
  692. func (u *CreditUsageUpsertOne) UpdateNtype() *CreditUsageUpsertOne {
  693. return u.Update(func(s *CreditUsageUpsert) {
  694. s.UpdateNtype()
  695. })
  696. }
  697. // SetTable sets the "table" field.
  698. func (u *CreditUsageUpsertOne) SetTable(v string) *CreditUsageUpsertOne {
  699. return u.Update(func(s *CreditUsageUpsert) {
  700. s.SetTable(v)
  701. })
  702. }
  703. // UpdateTable sets the "table" field to the value that was provided on create.
  704. func (u *CreditUsageUpsertOne) UpdateTable() *CreditUsageUpsertOne {
  705. return u.Update(func(s *CreditUsageUpsert) {
  706. s.UpdateTable()
  707. })
  708. }
  709. // SetOrganizationID sets the "organization_id" field.
  710. func (u *CreditUsageUpsertOne) SetOrganizationID(v uint64) *CreditUsageUpsertOne {
  711. return u.Update(func(s *CreditUsageUpsert) {
  712. s.SetOrganizationID(v)
  713. })
  714. }
  715. // AddOrganizationID adds v to the "organization_id" field.
  716. func (u *CreditUsageUpsertOne) AddOrganizationID(v uint64) *CreditUsageUpsertOne {
  717. return u.Update(func(s *CreditUsageUpsert) {
  718. s.AddOrganizationID(v)
  719. })
  720. }
  721. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  722. func (u *CreditUsageUpsertOne) UpdateOrganizationID() *CreditUsageUpsertOne {
  723. return u.Update(func(s *CreditUsageUpsert) {
  724. s.UpdateOrganizationID()
  725. })
  726. }
  727. // SetNid sets the "nid" field.
  728. func (u *CreditUsageUpsertOne) SetNid(v uint64) *CreditUsageUpsertOne {
  729. return u.Update(func(s *CreditUsageUpsert) {
  730. s.SetNid(v)
  731. })
  732. }
  733. // AddNid adds v to the "nid" field.
  734. func (u *CreditUsageUpsertOne) AddNid(v uint64) *CreditUsageUpsertOne {
  735. return u.Update(func(s *CreditUsageUpsert) {
  736. s.AddNid(v)
  737. })
  738. }
  739. // UpdateNid sets the "nid" field to the value that was provided on create.
  740. func (u *CreditUsageUpsertOne) UpdateNid() *CreditUsageUpsertOne {
  741. return u.Update(func(s *CreditUsageUpsert) {
  742. s.UpdateNid()
  743. })
  744. }
  745. // SetReason sets the "reason" field.
  746. func (u *CreditUsageUpsertOne) SetReason(v string) *CreditUsageUpsertOne {
  747. return u.Update(func(s *CreditUsageUpsert) {
  748. s.SetReason(v)
  749. })
  750. }
  751. // UpdateReason sets the "reason" field to the value that was provided on create.
  752. func (u *CreditUsageUpsertOne) UpdateReason() *CreditUsageUpsertOne {
  753. return u.Update(func(s *CreditUsageUpsert) {
  754. s.UpdateReason()
  755. })
  756. }
  757. // SetOperator sets the "operator" field.
  758. func (u *CreditUsageUpsertOne) SetOperator(v string) *CreditUsageUpsertOne {
  759. return u.Update(func(s *CreditUsageUpsert) {
  760. s.SetOperator(v)
  761. })
  762. }
  763. // UpdateOperator sets the "operator" field to the value that was provided on create.
  764. func (u *CreditUsageUpsertOne) UpdateOperator() *CreditUsageUpsertOne {
  765. return u.Update(func(s *CreditUsageUpsert) {
  766. s.UpdateOperator()
  767. })
  768. }
  769. // Exec executes the query.
  770. func (u *CreditUsageUpsertOne) Exec(ctx context.Context) error {
  771. if len(u.create.conflict) == 0 {
  772. return errors.New("ent: missing options for CreditUsageCreate.OnConflict")
  773. }
  774. return u.create.Exec(ctx)
  775. }
  776. // ExecX is like Exec, but panics if an error occurs.
  777. func (u *CreditUsageUpsertOne) ExecX(ctx context.Context) {
  778. if err := u.create.Exec(ctx); err != nil {
  779. panic(err)
  780. }
  781. }
  782. // Exec executes the UPSERT query and returns the inserted/updated ID.
  783. func (u *CreditUsageUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  784. node, err := u.create.Save(ctx)
  785. if err != nil {
  786. return id, err
  787. }
  788. return node.ID, nil
  789. }
  790. // IDX is like ID, but panics if an error occurs.
  791. func (u *CreditUsageUpsertOne) IDX(ctx context.Context) uint64 {
  792. id, err := u.ID(ctx)
  793. if err != nil {
  794. panic(err)
  795. }
  796. return id
  797. }
  798. // CreditUsageCreateBulk is the builder for creating many CreditUsage entities in bulk.
  799. type CreditUsageCreateBulk struct {
  800. config
  801. err error
  802. builders []*CreditUsageCreate
  803. conflict []sql.ConflictOption
  804. }
  805. // Save creates the CreditUsage entities in the database.
  806. func (cucb *CreditUsageCreateBulk) Save(ctx context.Context) ([]*CreditUsage, error) {
  807. if cucb.err != nil {
  808. return nil, cucb.err
  809. }
  810. specs := make([]*sqlgraph.CreateSpec, len(cucb.builders))
  811. nodes := make([]*CreditUsage, len(cucb.builders))
  812. mutators := make([]Mutator, len(cucb.builders))
  813. for i := range cucb.builders {
  814. func(i int, root context.Context) {
  815. builder := cucb.builders[i]
  816. builder.defaults()
  817. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  818. mutation, ok := m.(*CreditUsageMutation)
  819. if !ok {
  820. return nil, fmt.Errorf("unexpected mutation type %T", m)
  821. }
  822. if err := builder.check(); err != nil {
  823. return nil, err
  824. }
  825. builder.mutation = mutation
  826. var err error
  827. nodes[i], specs[i] = builder.createSpec()
  828. if i < len(mutators)-1 {
  829. _, err = mutators[i+1].Mutate(root, cucb.builders[i+1].mutation)
  830. } else {
  831. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  832. spec.OnConflict = cucb.conflict
  833. // Invoke the actual operation on the latest mutation in the chain.
  834. if err = sqlgraph.BatchCreate(ctx, cucb.driver, spec); err != nil {
  835. if sqlgraph.IsConstraintError(err) {
  836. err = &ConstraintError{msg: err.Error(), wrap: err}
  837. }
  838. }
  839. }
  840. if err != nil {
  841. return nil, err
  842. }
  843. mutation.id = &nodes[i].ID
  844. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  845. id := specs[i].ID.Value.(int64)
  846. nodes[i].ID = uint64(id)
  847. }
  848. mutation.done = true
  849. return nodes[i], nil
  850. })
  851. for i := len(builder.hooks) - 1; i >= 0; i-- {
  852. mut = builder.hooks[i](mut)
  853. }
  854. mutators[i] = mut
  855. }(i, ctx)
  856. }
  857. if len(mutators) > 0 {
  858. if _, err := mutators[0].Mutate(ctx, cucb.builders[0].mutation); err != nil {
  859. return nil, err
  860. }
  861. }
  862. return nodes, nil
  863. }
  864. // SaveX is like Save, but panics if an error occurs.
  865. func (cucb *CreditUsageCreateBulk) SaveX(ctx context.Context) []*CreditUsage {
  866. v, err := cucb.Save(ctx)
  867. if err != nil {
  868. panic(err)
  869. }
  870. return v
  871. }
  872. // Exec executes the query.
  873. func (cucb *CreditUsageCreateBulk) Exec(ctx context.Context) error {
  874. _, err := cucb.Save(ctx)
  875. return err
  876. }
  877. // ExecX is like Exec, but panics if an error occurs.
  878. func (cucb *CreditUsageCreateBulk) ExecX(ctx context.Context) {
  879. if err := cucb.Exec(ctx); err != nil {
  880. panic(err)
  881. }
  882. }
  883. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  884. // of the `INSERT` statement. For example:
  885. //
  886. // client.CreditUsage.CreateBulk(builders...).
  887. // OnConflict(
  888. // // Update the row with the new values
  889. // // the was proposed for insertion.
  890. // sql.ResolveWithNewValues(),
  891. // ).
  892. // // Override some of the fields with custom
  893. // // update values.
  894. // Update(func(u *ent.CreditUsageUpsert) {
  895. // SetCreatedAt(v+v).
  896. // }).
  897. // Exec(ctx)
  898. func (cucb *CreditUsageCreateBulk) OnConflict(opts ...sql.ConflictOption) *CreditUsageUpsertBulk {
  899. cucb.conflict = opts
  900. return &CreditUsageUpsertBulk{
  901. create: cucb,
  902. }
  903. }
  904. // OnConflictColumns calls `OnConflict` and configures the columns
  905. // as conflict target. Using this option is equivalent to using:
  906. //
  907. // client.CreditUsage.Create().
  908. // OnConflict(sql.ConflictColumns(columns...)).
  909. // Exec(ctx)
  910. func (cucb *CreditUsageCreateBulk) OnConflictColumns(columns ...string) *CreditUsageUpsertBulk {
  911. cucb.conflict = append(cucb.conflict, sql.ConflictColumns(columns...))
  912. return &CreditUsageUpsertBulk{
  913. create: cucb,
  914. }
  915. }
  916. // CreditUsageUpsertBulk is the builder for "upsert"-ing
  917. // a bulk of CreditUsage nodes.
  918. type CreditUsageUpsertBulk struct {
  919. create *CreditUsageCreateBulk
  920. }
  921. // UpdateNewValues updates the mutable fields using the new values that
  922. // were set on create. Using this option is equivalent to using:
  923. //
  924. // client.CreditUsage.Create().
  925. // OnConflict(
  926. // sql.ResolveWithNewValues(),
  927. // sql.ResolveWith(func(u *sql.UpdateSet) {
  928. // u.SetIgnore(creditusage.FieldID)
  929. // }),
  930. // ).
  931. // Exec(ctx)
  932. func (u *CreditUsageUpsertBulk) UpdateNewValues() *CreditUsageUpsertBulk {
  933. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  934. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  935. for _, b := range u.create.builders {
  936. if _, exists := b.mutation.ID(); exists {
  937. s.SetIgnore(creditusage.FieldID)
  938. }
  939. if _, exists := b.mutation.CreatedAt(); exists {
  940. s.SetIgnore(creditusage.FieldCreatedAt)
  941. }
  942. }
  943. }))
  944. return u
  945. }
  946. // Ignore sets each column to itself in case of conflict.
  947. // Using this option is equivalent to using:
  948. //
  949. // client.CreditUsage.Create().
  950. // OnConflict(sql.ResolveWithIgnore()).
  951. // Exec(ctx)
  952. func (u *CreditUsageUpsertBulk) Ignore() *CreditUsageUpsertBulk {
  953. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  954. return u
  955. }
  956. // DoNothing configures the conflict_action to `DO NOTHING`.
  957. // Supported only by SQLite and PostgreSQL.
  958. func (u *CreditUsageUpsertBulk) DoNothing() *CreditUsageUpsertBulk {
  959. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  960. return u
  961. }
  962. // Update allows overriding fields `UPDATE` values. See the CreditUsageCreateBulk.OnConflict
  963. // documentation for more info.
  964. func (u *CreditUsageUpsertBulk) Update(set func(*CreditUsageUpsert)) *CreditUsageUpsertBulk {
  965. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  966. set(&CreditUsageUpsert{UpdateSet: update})
  967. }))
  968. return u
  969. }
  970. // SetUpdatedAt sets the "updated_at" field.
  971. func (u *CreditUsageUpsertBulk) SetUpdatedAt(v time.Time) *CreditUsageUpsertBulk {
  972. return u.Update(func(s *CreditUsageUpsert) {
  973. s.SetUpdatedAt(v)
  974. })
  975. }
  976. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  977. func (u *CreditUsageUpsertBulk) UpdateUpdatedAt() *CreditUsageUpsertBulk {
  978. return u.Update(func(s *CreditUsageUpsert) {
  979. s.UpdateUpdatedAt()
  980. })
  981. }
  982. // SetDeletedAt sets the "deleted_at" field.
  983. func (u *CreditUsageUpsertBulk) SetDeletedAt(v time.Time) *CreditUsageUpsertBulk {
  984. return u.Update(func(s *CreditUsageUpsert) {
  985. s.SetDeletedAt(v)
  986. })
  987. }
  988. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  989. func (u *CreditUsageUpsertBulk) UpdateDeletedAt() *CreditUsageUpsertBulk {
  990. return u.Update(func(s *CreditUsageUpsert) {
  991. s.UpdateDeletedAt()
  992. })
  993. }
  994. // ClearDeletedAt clears the value of the "deleted_at" field.
  995. func (u *CreditUsageUpsertBulk) ClearDeletedAt() *CreditUsageUpsertBulk {
  996. return u.Update(func(s *CreditUsageUpsert) {
  997. s.ClearDeletedAt()
  998. })
  999. }
  1000. // SetUserID sets the "user_id" field.
  1001. func (u *CreditUsageUpsertBulk) SetUserID(v string) *CreditUsageUpsertBulk {
  1002. return u.Update(func(s *CreditUsageUpsert) {
  1003. s.SetUserID(v)
  1004. })
  1005. }
  1006. // UpdateUserID sets the "user_id" field to the value that was provided on create.
  1007. func (u *CreditUsageUpsertBulk) UpdateUserID() *CreditUsageUpsertBulk {
  1008. return u.Update(func(s *CreditUsageUpsert) {
  1009. s.UpdateUserID()
  1010. })
  1011. }
  1012. // SetNumber sets the "number" field.
  1013. func (u *CreditUsageUpsertBulk) SetNumber(v float32) *CreditUsageUpsertBulk {
  1014. return u.Update(func(s *CreditUsageUpsert) {
  1015. s.SetNumber(v)
  1016. })
  1017. }
  1018. // AddNumber adds v to the "number" field.
  1019. func (u *CreditUsageUpsertBulk) AddNumber(v float32) *CreditUsageUpsertBulk {
  1020. return u.Update(func(s *CreditUsageUpsert) {
  1021. s.AddNumber(v)
  1022. })
  1023. }
  1024. // UpdateNumber sets the "number" field to the value that was provided on create.
  1025. func (u *CreditUsageUpsertBulk) UpdateNumber() *CreditUsageUpsertBulk {
  1026. return u.Update(func(s *CreditUsageUpsert) {
  1027. s.UpdateNumber()
  1028. })
  1029. }
  1030. // SetStatus sets the "status" field.
  1031. func (u *CreditUsageUpsertBulk) SetStatus(v int) *CreditUsageUpsertBulk {
  1032. return u.Update(func(s *CreditUsageUpsert) {
  1033. s.SetStatus(v)
  1034. })
  1035. }
  1036. // AddStatus adds v to the "status" field.
  1037. func (u *CreditUsageUpsertBulk) AddStatus(v int) *CreditUsageUpsertBulk {
  1038. return u.Update(func(s *CreditUsageUpsert) {
  1039. s.AddStatus(v)
  1040. })
  1041. }
  1042. // UpdateStatus sets the "status" field to the value that was provided on create.
  1043. func (u *CreditUsageUpsertBulk) UpdateStatus() *CreditUsageUpsertBulk {
  1044. return u.Update(func(s *CreditUsageUpsert) {
  1045. s.UpdateStatus()
  1046. })
  1047. }
  1048. // ClearStatus clears the value of the "status" field.
  1049. func (u *CreditUsageUpsertBulk) ClearStatus() *CreditUsageUpsertBulk {
  1050. return u.Update(func(s *CreditUsageUpsert) {
  1051. s.ClearStatus()
  1052. })
  1053. }
  1054. // SetNtype sets the "ntype" field.
  1055. func (u *CreditUsageUpsertBulk) SetNtype(v int) *CreditUsageUpsertBulk {
  1056. return u.Update(func(s *CreditUsageUpsert) {
  1057. s.SetNtype(v)
  1058. })
  1059. }
  1060. // AddNtype adds v to the "ntype" field.
  1061. func (u *CreditUsageUpsertBulk) AddNtype(v int) *CreditUsageUpsertBulk {
  1062. return u.Update(func(s *CreditUsageUpsert) {
  1063. s.AddNtype(v)
  1064. })
  1065. }
  1066. // UpdateNtype sets the "ntype" field to the value that was provided on create.
  1067. func (u *CreditUsageUpsertBulk) UpdateNtype() *CreditUsageUpsertBulk {
  1068. return u.Update(func(s *CreditUsageUpsert) {
  1069. s.UpdateNtype()
  1070. })
  1071. }
  1072. // SetTable sets the "table" field.
  1073. func (u *CreditUsageUpsertBulk) SetTable(v string) *CreditUsageUpsertBulk {
  1074. return u.Update(func(s *CreditUsageUpsert) {
  1075. s.SetTable(v)
  1076. })
  1077. }
  1078. // UpdateTable sets the "table" field to the value that was provided on create.
  1079. func (u *CreditUsageUpsertBulk) UpdateTable() *CreditUsageUpsertBulk {
  1080. return u.Update(func(s *CreditUsageUpsert) {
  1081. s.UpdateTable()
  1082. })
  1083. }
  1084. // SetOrganizationID sets the "organization_id" field.
  1085. func (u *CreditUsageUpsertBulk) SetOrganizationID(v uint64) *CreditUsageUpsertBulk {
  1086. return u.Update(func(s *CreditUsageUpsert) {
  1087. s.SetOrganizationID(v)
  1088. })
  1089. }
  1090. // AddOrganizationID adds v to the "organization_id" field.
  1091. func (u *CreditUsageUpsertBulk) AddOrganizationID(v uint64) *CreditUsageUpsertBulk {
  1092. return u.Update(func(s *CreditUsageUpsert) {
  1093. s.AddOrganizationID(v)
  1094. })
  1095. }
  1096. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1097. func (u *CreditUsageUpsertBulk) UpdateOrganizationID() *CreditUsageUpsertBulk {
  1098. return u.Update(func(s *CreditUsageUpsert) {
  1099. s.UpdateOrganizationID()
  1100. })
  1101. }
  1102. // SetNid sets the "nid" field.
  1103. func (u *CreditUsageUpsertBulk) SetNid(v uint64) *CreditUsageUpsertBulk {
  1104. return u.Update(func(s *CreditUsageUpsert) {
  1105. s.SetNid(v)
  1106. })
  1107. }
  1108. // AddNid adds v to the "nid" field.
  1109. func (u *CreditUsageUpsertBulk) AddNid(v uint64) *CreditUsageUpsertBulk {
  1110. return u.Update(func(s *CreditUsageUpsert) {
  1111. s.AddNid(v)
  1112. })
  1113. }
  1114. // UpdateNid sets the "nid" field to the value that was provided on create.
  1115. func (u *CreditUsageUpsertBulk) UpdateNid() *CreditUsageUpsertBulk {
  1116. return u.Update(func(s *CreditUsageUpsert) {
  1117. s.UpdateNid()
  1118. })
  1119. }
  1120. // SetReason sets the "reason" field.
  1121. func (u *CreditUsageUpsertBulk) SetReason(v string) *CreditUsageUpsertBulk {
  1122. return u.Update(func(s *CreditUsageUpsert) {
  1123. s.SetReason(v)
  1124. })
  1125. }
  1126. // UpdateReason sets the "reason" field to the value that was provided on create.
  1127. func (u *CreditUsageUpsertBulk) UpdateReason() *CreditUsageUpsertBulk {
  1128. return u.Update(func(s *CreditUsageUpsert) {
  1129. s.UpdateReason()
  1130. })
  1131. }
  1132. // SetOperator sets the "operator" field.
  1133. func (u *CreditUsageUpsertBulk) SetOperator(v string) *CreditUsageUpsertBulk {
  1134. return u.Update(func(s *CreditUsageUpsert) {
  1135. s.SetOperator(v)
  1136. })
  1137. }
  1138. // UpdateOperator sets the "operator" field to the value that was provided on create.
  1139. func (u *CreditUsageUpsertBulk) UpdateOperator() *CreditUsageUpsertBulk {
  1140. return u.Update(func(s *CreditUsageUpsert) {
  1141. s.UpdateOperator()
  1142. })
  1143. }
  1144. // Exec executes the query.
  1145. func (u *CreditUsageUpsertBulk) Exec(ctx context.Context) error {
  1146. if u.create.err != nil {
  1147. return u.create.err
  1148. }
  1149. for i, b := range u.create.builders {
  1150. if len(b.conflict) != 0 {
  1151. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the CreditUsageCreateBulk instead", i)
  1152. }
  1153. }
  1154. if len(u.create.conflict) == 0 {
  1155. return errors.New("ent: missing options for CreditUsageCreateBulk.OnConflict")
  1156. }
  1157. return u.create.Exec(ctx)
  1158. }
  1159. // ExecX is like Exec, but panics if an error occurs.
  1160. func (u *CreditUsageUpsertBulk) ExecX(ctx context.Context) {
  1161. if err := u.create.Exec(ctx); err != nil {
  1162. panic(err)
  1163. }
  1164. }