creditusage_create.go 39 KB

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