usagestatistichour_create.go 52 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604
  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/usagestatistichour"
  9. "entgo.io/ent/dialect/sql"
  10. "entgo.io/ent/dialect/sql/sqlgraph"
  11. "entgo.io/ent/schema/field"
  12. )
  13. // UsageStatisticHourCreate is the builder for creating a UsageStatisticHour entity.
  14. type UsageStatisticHourCreate struct {
  15. config
  16. mutation *UsageStatisticHourMutation
  17. hooks []Hook
  18. conflict []sql.ConflictOption
  19. }
  20. // SetCreatedAt sets the "created_at" field.
  21. func (ushc *UsageStatisticHourCreate) SetCreatedAt(t time.Time) *UsageStatisticHourCreate {
  22. ushc.mutation.SetCreatedAt(t)
  23. return ushc
  24. }
  25. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  26. func (ushc *UsageStatisticHourCreate) SetNillableCreatedAt(t *time.Time) *UsageStatisticHourCreate {
  27. if t != nil {
  28. ushc.SetCreatedAt(*t)
  29. }
  30. return ushc
  31. }
  32. // SetUpdatedAt sets the "updated_at" field.
  33. func (ushc *UsageStatisticHourCreate) SetUpdatedAt(t time.Time) *UsageStatisticHourCreate {
  34. ushc.mutation.SetUpdatedAt(t)
  35. return ushc
  36. }
  37. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  38. func (ushc *UsageStatisticHourCreate) SetNillableUpdatedAt(t *time.Time) *UsageStatisticHourCreate {
  39. if t != nil {
  40. ushc.SetUpdatedAt(*t)
  41. }
  42. return ushc
  43. }
  44. // SetStatus sets the "status" field.
  45. func (ushc *UsageStatisticHourCreate) SetStatus(u uint8) *UsageStatisticHourCreate {
  46. ushc.mutation.SetStatus(u)
  47. return ushc
  48. }
  49. // SetNillableStatus sets the "status" field if the given value is not nil.
  50. func (ushc *UsageStatisticHourCreate) SetNillableStatus(u *uint8) *UsageStatisticHourCreate {
  51. if u != nil {
  52. ushc.SetStatus(*u)
  53. }
  54. return ushc
  55. }
  56. // SetDeletedAt sets the "deleted_at" field.
  57. func (ushc *UsageStatisticHourCreate) SetDeletedAt(t time.Time) *UsageStatisticHourCreate {
  58. ushc.mutation.SetDeletedAt(t)
  59. return ushc
  60. }
  61. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  62. func (ushc *UsageStatisticHourCreate) SetNillableDeletedAt(t *time.Time) *UsageStatisticHourCreate {
  63. if t != nil {
  64. ushc.SetDeletedAt(*t)
  65. }
  66. return ushc
  67. }
  68. // SetAddtime sets the "addtime" field.
  69. func (ushc *UsageStatisticHourCreate) SetAddtime(u uint64) *UsageStatisticHourCreate {
  70. ushc.mutation.SetAddtime(u)
  71. return ushc
  72. }
  73. // SetType sets the "type" field.
  74. func (ushc *UsageStatisticHourCreate) SetType(i int) *UsageStatisticHourCreate {
  75. ushc.mutation.SetType(i)
  76. return ushc
  77. }
  78. // SetBotID sets the "bot_id" field.
  79. func (ushc *UsageStatisticHourCreate) SetBotID(s string) *UsageStatisticHourCreate {
  80. ushc.mutation.SetBotID(s)
  81. return ushc
  82. }
  83. // SetOrganizationID sets the "organization_id" field.
  84. func (ushc *UsageStatisticHourCreate) SetOrganizationID(u uint64) *UsageStatisticHourCreate {
  85. ushc.mutation.SetOrganizationID(u)
  86. return ushc
  87. }
  88. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  89. func (ushc *UsageStatisticHourCreate) SetNillableOrganizationID(u *uint64) *UsageStatisticHourCreate {
  90. if u != nil {
  91. ushc.SetOrganizationID(*u)
  92. }
  93. return ushc
  94. }
  95. // SetAiResponse sets the "ai_response" field.
  96. func (ushc *UsageStatisticHourCreate) SetAiResponse(u uint64) *UsageStatisticHourCreate {
  97. ushc.mutation.SetAiResponse(u)
  98. return ushc
  99. }
  100. // SetSopRun sets the "sop_run" field.
  101. func (ushc *UsageStatisticHourCreate) SetSopRun(u uint64) *UsageStatisticHourCreate {
  102. ushc.mutation.SetSopRun(u)
  103. return ushc
  104. }
  105. // SetTotalFriend sets the "total_friend" field.
  106. func (ushc *UsageStatisticHourCreate) SetTotalFriend(u uint64) *UsageStatisticHourCreate {
  107. ushc.mutation.SetTotalFriend(u)
  108. return ushc
  109. }
  110. // SetTotalGroup sets the "total_group" field.
  111. func (ushc *UsageStatisticHourCreate) SetTotalGroup(u uint64) *UsageStatisticHourCreate {
  112. ushc.mutation.SetTotalGroup(u)
  113. return ushc
  114. }
  115. // SetAccountBalance sets the "account_balance" field.
  116. func (ushc *UsageStatisticHourCreate) SetAccountBalance(u uint64) *UsageStatisticHourCreate {
  117. ushc.mutation.SetAccountBalance(u)
  118. return ushc
  119. }
  120. // SetConsumeToken sets the "consume_token" field.
  121. func (ushc *UsageStatisticHourCreate) SetConsumeToken(u uint64) *UsageStatisticHourCreate {
  122. ushc.mutation.SetConsumeToken(u)
  123. return ushc
  124. }
  125. // SetActiveUser sets the "active_user" field.
  126. func (ushc *UsageStatisticHourCreate) SetActiveUser(u uint64) *UsageStatisticHourCreate {
  127. ushc.mutation.SetActiveUser(u)
  128. return ushc
  129. }
  130. // SetNewUser sets the "new_user" field.
  131. func (ushc *UsageStatisticHourCreate) SetNewUser(i int64) *UsageStatisticHourCreate {
  132. ushc.mutation.SetNewUser(i)
  133. return ushc
  134. }
  135. // SetID sets the "id" field.
  136. func (ushc *UsageStatisticHourCreate) SetID(u uint64) *UsageStatisticHourCreate {
  137. ushc.mutation.SetID(u)
  138. return ushc
  139. }
  140. // Mutation returns the UsageStatisticHourMutation object of the builder.
  141. func (ushc *UsageStatisticHourCreate) Mutation() *UsageStatisticHourMutation {
  142. return ushc.mutation
  143. }
  144. // Save creates the UsageStatisticHour in the database.
  145. func (ushc *UsageStatisticHourCreate) Save(ctx context.Context) (*UsageStatisticHour, error) {
  146. if err := ushc.defaults(); err != nil {
  147. return nil, err
  148. }
  149. return withHooks(ctx, ushc.sqlSave, ushc.mutation, ushc.hooks)
  150. }
  151. // SaveX calls Save and panics if Save returns an error.
  152. func (ushc *UsageStatisticHourCreate) SaveX(ctx context.Context) *UsageStatisticHour {
  153. v, err := ushc.Save(ctx)
  154. if err != nil {
  155. panic(err)
  156. }
  157. return v
  158. }
  159. // Exec executes the query.
  160. func (ushc *UsageStatisticHourCreate) Exec(ctx context.Context) error {
  161. _, err := ushc.Save(ctx)
  162. return err
  163. }
  164. // ExecX is like Exec, but panics if an error occurs.
  165. func (ushc *UsageStatisticHourCreate) ExecX(ctx context.Context) {
  166. if err := ushc.Exec(ctx); err != nil {
  167. panic(err)
  168. }
  169. }
  170. // defaults sets the default values of the builder before save.
  171. func (ushc *UsageStatisticHourCreate) defaults() error {
  172. if _, ok := ushc.mutation.CreatedAt(); !ok {
  173. if usagestatistichour.DefaultCreatedAt == nil {
  174. return fmt.Errorf("ent: uninitialized usagestatistichour.DefaultCreatedAt (forgotten import ent/runtime?)")
  175. }
  176. v := usagestatistichour.DefaultCreatedAt()
  177. ushc.mutation.SetCreatedAt(v)
  178. }
  179. if _, ok := ushc.mutation.UpdatedAt(); !ok {
  180. if usagestatistichour.DefaultUpdatedAt == nil {
  181. return fmt.Errorf("ent: uninitialized usagestatistichour.DefaultUpdatedAt (forgotten import ent/runtime?)")
  182. }
  183. v := usagestatistichour.DefaultUpdatedAt()
  184. ushc.mutation.SetUpdatedAt(v)
  185. }
  186. if _, ok := ushc.mutation.Status(); !ok {
  187. v := usagestatistichour.DefaultStatus
  188. ushc.mutation.SetStatus(v)
  189. }
  190. return nil
  191. }
  192. // check runs all checks and user-defined validators on the builder.
  193. func (ushc *UsageStatisticHourCreate) check() error {
  194. if _, ok := ushc.mutation.CreatedAt(); !ok {
  195. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "UsageStatisticHour.created_at"`)}
  196. }
  197. if _, ok := ushc.mutation.UpdatedAt(); !ok {
  198. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "UsageStatisticHour.updated_at"`)}
  199. }
  200. if _, ok := ushc.mutation.Addtime(); !ok {
  201. return &ValidationError{Name: "addtime", err: errors.New(`ent: missing required field "UsageStatisticHour.addtime"`)}
  202. }
  203. if _, ok := ushc.mutation.GetType(); !ok {
  204. return &ValidationError{Name: "type", err: errors.New(`ent: missing required field "UsageStatisticHour.type"`)}
  205. }
  206. if _, ok := ushc.mutation.BotID(); !ok {
  207. return &ValidationError{Name: "bot_id", err: errors.New(`ent: missing required field "UsageStatisticHour.bot_id"`)}
  208. }
  209. if _, ok := ushc.mutation.AiResponse(); !ok {
  210. return &ValidationError{Name: "ai_response", err: errors.New(`ent: missing required field "UsageStatisticHour.ai_response"`)}
  211. }
  212. if _, ok := ushc.mutation.SopRun(); !ok {
  213. return &ValidationError{Name: "sop_run", err: errors.New(`ent: missing required field "UsageStatisticHour.sop_run"`)}
  214. }
  215. if _, ok := ushc.mutation.TotalFriend(); !ok {
  216. return &ValidationError{Name: "total_friend", err: errors.New(`ent: missing required field "UsageStatisticHour.total_friend"`)}
  217. }
  218. if _, ok := ushc.mutation.TotalGroup(); !ok {
  219. return &ValidationError{Name: "total_group", err: errors.New(`ent: missing required field "UsageStatisticHour.total_group"`)}
  220. }
  221. if _, ok := ushc.mutation.AccountBalance(); !ok {
  222. return &ValidationError{Name: "account_balance", err: errors.New(`ent: missing required field "UsageStatisticHour.account_balance"`)}
  223. }
  224. if _, ok := ushc.mutation.ConsumeToken(); !ok {
  225. return &ValidationError{Name: "consume_token", err: errors.New(`ent: missing required field "UsageStatisticHour.consume_token"`)}
  226. }
  227. if _, ok := ushc.mutation.ActiveUser(); !ok {
  228. return &ValidationError{Name: "active_user", err: errors.New(`ent: missing required field "UsageStatisticHour.active_user"`)}
  229. }
  230. if _, ok := ushc.mutation.NewUser(); !ok {
  231. return &ValidationError{Name: "new_user", err: errors.New(`ent: missing required field "UsageStatisticHour.new_user"`)}
  232. }
  233. return nil
  234. }
  235. func (ushc *UsageStatisticHourCreate) sqlSave(ctx context.Context) (*UsageStatisticHour, error) {
  236. if err := ushc.check(); err != nil {
  237. return nil, err
  238. }
  239. _node, _spec := ushc.createSpec()
  240. if err := sqlgraph.CreateNode(ctx, ushc.driver, _spec); err != nil {
  241. if sqlgraph.IsConstraintError(err) {
  242. err = &ConstraintError{msg: err.Error(), wrap: err}
  243. }
  244. return nil, err
  245. }
  246. if _spec.ID.Value != _node.ID {
  247. id := _spec.ID.Value.(int64)
  248. _node.ID = uint64(id)
  249. }
  250. ushc.mutation.id = &_node.ID
  251. ushc.mutation.done = true
  252. return _node, nil
  253. }
  254. func (ushc *UsageStatisticHourCreate) createSpec() (*UsageStatisticHour, *sqlgraph.CreateSpec) {
  255. var (
  256. _node = &UsageStatisticHour{config: ushc.config}
  257. _spec = sqlgraph.NewCreateSpec(usagestatistichour.Table, sqlgraph.NewFieldSpec(usagestatistichour.FieldID, field.TypeUint64))
  258. )
  259. _spec.OnConflict = ushc.conflict
  260. if id, ok := ushc.mutation.ID(); ok {
  261. _node.ID = id
  262. _spec.ID.Value = id
  263. }
  264. if value, ok := ushc.mutation.CreatedAt(); ok {
  265. _spec.SetField(usagestatistichour.FieldCreatedAt, field.TypeTime, value)
  266. _node.CreatedAt = value
  267. }
  268. if value, ok := ushc.mutation.UpdatedAt(); ok {
  269. _spec.SetField(usagestatistichour.FieldUpdatedAt, field.TypeTime, value)
  270. _node.UpdatedAt = value
  271. }
  272. if value, ok := ushc.mutation.Status(); ok {
  273. _spec.SetField(usagestatistichour.FieldStatus, field.TypeUint8, value)
  274. _node.Status = value
  275. }
  276. if value, ok := ushc.mutation.DeletedAt(); ok {
  277. _spec.SetField(usagestatistichour.FieldDeletedAt, field.TypeTime, value)
  278. _node.DeletedAt = value
  279. }
  280. if value, ok := ushc.mutation.Addtime(); ok {
  281. _spec.SetField(usagestatistichour.FieldAddtime, field.TypeUint64, value)
  282. _node.Addtime = value
  283. }
  284. if value, ok := ushc.mutation.GetType(); ok {
  285. _spec.SetField(usagestatistichour.FieldType, field.TypeInt, value)
  286. _node.Type = value
  287. }
  288. if value, ok := ushc.mutation.BotID(); ok {
  289. _spec.SetField(usagestatistichour.FieldBotID, field.TypeString, value)
  290. _node.BotID = value
  291. }
  292. if value, ok := ushc.mutation.OrganizationID(); ok {
  293. _spec.SetField(usagestatistichour.FieldOrganizationID, field.TypeUint64, value)
  294. _node.OrganizationID = value
  295. }
  296. if value, ok := ushc.mutation.AiResponse(); ok {
  297. _spec.SetField(usagestatistichour.FieldAiResponse, field.TypeUint64, value)
  298. _node.AiResponse = value
  299. }
  300. if value, ok := ushc.mutation.SopRun(); ok {
  301. _spec.SetField(usagestatistichour.FieldSopRun, field.TypeUint64, value)
  302. _node.SopRun = value
  303. }
  304. if value, ok := ushc.mutation.TotalFriend(); ok {
  305. _spec.SetField(usagestatistichour.FieldTotalFriend, field.TypeUint64, value)
  306. _node.TotalFriend = value
  307. }
  308. if value, ok := ushc.mutation.TotalGroup(); ok {
  309. _spec.SetField(usagestatistichour.FieldTotalGroup, field.TypeUint64, value)
  310. _node.TotalGroup = value
  311. }
  312. if value, ok := ushc.mutation.AccountBalance(); ok {
  313. _spec.SetField(usagestatistichour.FieldAccountBalance, field.TypeUint64, value)
  314. _node.AccountBalance = value
  315. }
  316. if value, ok := ushc.mutation.ConsumeToken(); ok {
  317. _spec.SetField(usagestatistichour.FieldConsumeToken, field.TypeUint64, value)
  318. _node.ConsumeToken = value
  319. }
  320. if value, ok := ushc.mutation.ActiveUser(); ok {
  321. _spec.SetField(usagestatistichour.FieldActiveUser, field.TypeUint64, value)
  322. _node.ActiveUser = value
  323. }
  324. if value, ok := ushc.mutation.NewUser(); ok {
  325. _spec.SetField(usagestatistichour.FieldNewUser, field.TypeInt64, value)
  326. _node.NewUser = value
  327. }
  328. return _node, _spec
  329. }
  330. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  331. // of the `INSERT` statement. For example:
  332. //
  333. // client.UsageStatisticHour.Create().
  334. // SetCreatedAt(v).
  335. // OnConflict(
  336. // // Update the row with the new values
  337. // // the was proposed for insertion.
  338. // sql.ResolveWithNewValues(),
  339. // ).
  340. // // Override some of the fields with custom
  341. // // update values.
  342. // Update(func(u *ent.UsageStatisticHourUpsert) {
  343. // SetCreatedAt(v+v).
  344. // }).
  345. // Exec(ctx)
  346. func (ushc *UsageStatisticHourCreate) OnConflict(opts ...sql.ConflictOption) *UsageStatisticHourUpsertOne {
  347. ushc.conflict = opts
  348. return &UsageStatisticHourUpsertOne{
  349. create: ushc,
  350. }
  351. }
  352. // OnConflictColumns calls `OnConflict` and configures the columns
  353. // as conflict target. Using this option is equivalent to using:
  354. //
  355. // client.UsageStatisticHour.Create().
  356. // OnConflict(sql.ConflictColumns(columns...)).
  357. // Exec(ctx)
  358. func (ushc *UsageStatisticHourCreate) OnConflictColumns(columns ...string) *UsageStatisticHourUpsertOne {
  359. ushc.conflict = append(ushc.conflict, sql.ConflictColumns(columns...))
  360. return &UsageStatisticHourUpsertOne{
  361. create: ushc,
  362. }
  363. }
  364. type (
  365. // UsageStatisticHourUpsertOne is the builder for "upsert"-ing
  366. // one UsageStatisticHour node.
  367. UsageStatisticHourUpsertOne struct {
  368. create *UsageStatisticHourCreate
  369. }
  370. // UsageStatisticHourUpsert is the "OnConflict" setter.
  371. UsageStatisticHourUpsert struct {
  372. *sql.UpdateSet
  373. }
  374. )
  375. // SetUpdatedAt sets the "updated_at" field.
  376. func (u *UsageStatisticHourUpsert) SetUpdatedAt(v time.Time) *UsageStatisticHourUpsert {
  377. u.Set(usagestatistichour.FieldUpdatedAt, v)
  378. return u
  379. }
  380. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  381. func (u *UsageStatisticHourUpsert) UpdateUpdatedAt() *UsageStatisticHourUpsert {
  382. u.SetExcluded(usagestatistichour.FieldUpdatedAt)
  383. return u
  384. }
  385. // SetStatus sets the "status" field.
  386. func (u *UsageStatisticHourUpsert) SetStatus(v uint8) *UsageStatisticHourUpsert {
  387. u.Set(usagestatistichour.FieldStatus, v)
  388. return u
  389. }
  390. // UpdateStatus sets the "status" field to the value that was provided on create.
  391. func (u *UsageStatisticHourUpsert) UpdateStatus() *UsageStatisticHourUpsert {
  392. u.SetExcluded(usagestatistichour.FieldStatus)
  393. return u
  394. }
  395. // AddStatus adds v to the "status" field.
  396. func (u *UsageStatisticHourUpsert) AddStatus(v uint8) *UsageStatisticHourUpsert {
  397. u.Add(usagestatistichour.FieldStatus, v)
  398. return u
  399. }
  400. // ClearStatus clears the value of the "status" field.
  401. func (u *UsageStatisticHourUpsert) ClearStatus() *UsageStatisticHourUpsert {
  402. u.SetNull(usagestatistichour.FieldStatus)
  403. return u
  404. }
  405. // SetDeletedAt sets the "deleted_at" field.
  406. func (u *UsageStatisticHourUpsert) SetDeletedAt(v time.Time) *UsageStatisticHourUpsert {
  407. u.Set(usagestatistichour.FieldDeletedAt, v)
  408. return u
  409. }
  410. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  411. func (u *UsageStatisticHourUpsert) UpdateDeletedAt() *UsageStatisticHourUpsert {
  412. u.SetExcluded(usagestatistichour.FieldDeletedAt)
  413. return u
  414. }
  415. // ClearDeletedAt clears the value of the "deleted_at" field.
  416. func (u *UsageStatisticHourUpsert) ClearDeletedAt() *UsageStatisticHourUpsert {
  417. u.SetNull(usagestatistichour.FieldDeletedAt)
  418. return u
  419. }
  420. // SetAddtime sets the "addtime" field.
  421. func (u *UsageStatisticHourUpsert) SetAddtime(v uint64) *UsageStatisticHourUpsert {
  422. u.Set(usagestatistichour.FieldAddtime, v)
  423. return u
  424. }
  425. // UpdateAddtime sets the "addtime" field to the value that was provided on create.
  426. func (u *UsageStatisticHourUpsert) UpdateAddtime() *UsageStatisticHourUpsert {
  427. u.SetExcluded(usagestatistichour.FieldAddtime)
  428. return u
  429. }
  430. // AddAddtime adds v to the "addtime" field.
  431. func (u *UsageStatisticHourUpsert) AddAddtime(v uint64) *UsageStatisticHourUpsert {
  432. u.Add(usagestatistichour.FieldAddtime, v)
  433. return u
  434. }
  435. // SetType sets the "type" field.
  436. func (u *UsageStatisticHourUpsert) SetType(v int) *UsageStatisticHourUpsert {
  437. u.Set(usagestatistichour.FieldType, v)
  438. return u
  439. }
  440. // UpdateType sets the "type" field to the value that was provided on create.
  441. func (u *UsageStatisticHourUpsert) UpdateType() *UsageStatisticHourUpsert {
  442. u.SetExcluded(usagestatistichour.FieldType)
  443. return u
  444. }
  445. // AddType adds v to the "type" field.
  446. func (u *UsageStatisticHourUpsert) AddType(v int) *UsageStatisticHourUpsert {
  447. u.Add(usagestatistichour.FieldType, v)
  448. return u
  449. }
  450. // SetBotID sets the "bot_id" field.
  451. func (u *UsageStatisticHourUpsert) SetBotID(v string) *UsageStatisticHourUpsert {
  452. u.Set(usagestatistichour.FieldBotID, v)
  453. return u
  454. }
  455. // UpdateBotID sets the "bot_id" field to the value that was provided on create.
  456. func (u *UsageStatisticHourUpsert) UpdateBotID() *UsageStatisticHourUpsert {
  457. u.SetExcluded(usagestatistichour.FieldBotID)
  458. return u
  459. }
  460. // SetOrganizationID sets the "organization_id" field.
  461. func (u *UsageStatisticHourUpsert) SetOrganizationID(v uint64) *UsageStatisticHourUpsert {
  462. u.Set(usagestatistichour.FieldOrganizationID, v)
  463. return u
  464. }
  465. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  466. func (u *UsageStatisticHourUpsert) UpdateOrganizationID() *UsageStatisticHourUpsert {
  467. u.SetExcluded(usagestatistichour.FieldOrganizationID)
  468. return u
  469. }
  470. // AddOrganizationID adds v to the "organization_id" field.
  471. func (u *UsageStatisticHourUpsert) AddOrganizationID(v uint64) *UsageStatisticHourUpsert {
  472. u.Add(usagestatistichour.FieldOrganizationID, v)
  473. return u
  474. }
  475. // ClearOrganizationID clears the value of the "organization_id" field.
  476. func (u *UsageStatisticHourUpsert) ClearOrganizationID() *UsageStatisticHourUpsert {
  477. u.SetNull(usagestatistichour.FieldOrganizationID)
  478. return u
  479. }
  480. // SetAiResponse sets the "ai_response" field.
  481. func (u *UsageStatisticHourUpsert) SetAiResponse(v uint64) *UsageStatisticHourUpsert {
  482. u.Set(usagestatistichour.FieldAiResponse, v)
  483. return u
  484. }
  485. // UpdateAiResponse sets the "ai_response" field to the value that was provided on create.
  486. func (u *UsageStatisticHourUpsert) UpdateAiResponse() *UsageStatisticHourUpsert {
  487. u.SetExcluded(usagestatistichour.FieldAiResponse)
  488. return u
  489. }
  490. // AddAiResponse adds v to the "ai_response" field.
  491. func (u *UsageStatisticHourUpsert) AddAiResponse(v uint64) *UsageStatisticHourUpsert {
  492. u.Add(usagestatistichour.FieldAiResponse, v)
  493. return u
  494. }
  495. // SetSopRun sets the "sop_run" field.
  496. func (u *UsageStatisticHourUpsert) SetSopRun(v uint64) *UsageStatisticHourUpsert {
  497. u.Set(usagestatistichour.FieldSopRun, v)
  498. return u
  499. }
  500. // UpdateSopRun sets the "sop_run" field to the value that was provided on create.
  501. func (u *UsageStatisticHourUpsert) UpdateSopRun() *UsageStatisticHourUpsert {
  502. u.SetExcluded(usagestatistichour.FieldSopRun)
  503. return u
  504. }
  505. // AddSopRun adds v to the "sop_run" field.
  506. func (u *UsageStatisticHourUpsert) AddSopRun(v uint64) *UsageStatisticHourUpsert {
  507. u.Add(usagestatistichour.FieldSopRun, v)
  508. return u
  509. }
  510. // SetTotalFriend sets the "total_friend" field.
  511. func (u *UsageStatisticHourUpsert) SetTotalFriend(v uint64) *UsageStatisticHourUpsert {
  512. u.Set(usagestatistichour.FieldTotalFriend, v)
  513. return u
  514. }
  515. // UpdateTotalFriend sets the "total_friend" field to the value that was provided on create.
  516. func (u *UsageStatisticHourUpsert) UpdateTotalFriend() *UsageStatisticHourUpsert {
  517. u.SetExcluded(usagestatistichour.FieldTotalFriend)
  518. return u
  519. }
  520. // AddTotalFriend adds v to the "total_friend" field.
  521. func (u *UsageStatisticHourUpsert) AddTotalFriend(v uint64) *UsageStatisticHourUpsert {
  522. u.Add(usagestatistichour.FieldTotalFriend, v)
  523. return u
  524. }
  525. // SetTotalGroup sets the "total_group" field.
  526. func (u *UsageStatisticHourUpsert) SetTotalGroup(v uint64) *UsageStatisticHourUpsert {
  527. u.Set(usagestatistichour.FieldTotalGroup, v)
  528. return u
  529. }
  530. // UpdateTotalGroup sets the "total_group" field to the value that was provided on create.
  531. func (u *UsageStatisticHourUpsert) UpdateTotalGroup() *UsageStatisticHourUpsert {
  532. u.SetExcluded(usagestatistichour.FieldTotalGroup)
  533. return u
  534. }
  535. // AddTotalGroup adds v to the "total_group" field.
  536. func (u *UsageStatisticHourUpsert) AddTotalGroup(v uint64) *UsageStatisticHourUpsert {
  537. u.Add(usagestatistichour.FieldTotalGroup, v)
  538. return u
  539. }
  540. // SetAccountBalance sets the "account_balance" field.
  541. func (u *UsageStatisticHourUpsert) SetAccountBalance(v uint64) *UsageStatisticHourUpsert {
  542. u.Set(usagestatistichour.FieldAccountBalance, v)
  543. return u
  544. }
  545. // UpdateAccountBalance sets the "account_balance" field to the value that was provided on create.
  546. func (u *UsageStatisticHourUpsert) UpdateAccountBalance() *UsageStatisticHourUpsert {
  547. u.SetExcluded(usagestatistichour.FieldAccountBalance)
  548. return u
  549. }
  550. // AddAccountBalance adds v to the "account_balance" field.
  551. func (u *UsageStatisticHourUpsert) AddAccountBalance(v uint64) *UsageStatisticHourUpsert {
  552. u.Add(usagestatistichour.FieldAccountBalance, v)
  553. return u
  554. }
  555. // SetConsumeToken sets the "consume_token" field.
  556. func (u *UsageStatisticHourUpsert) SetConsumeToken(v uint64) *UsageStatisticHourUpsert {
  557. u.Set(usagestatistichour.FieldConsumeToken, v)
  558. return u
  559. }
  560. // UpdateConsumeToken sets the "consume_token" field to the value that was provided on create.
  561. func (u *UsageStatisticHourUpsert) UpdateConsumeToken() *UsageStatisticHourUpsert {
  562. u.SetExcluded(usagestatistichour.FieldConsumeToken)
  563. return u
  564. }
  565. // AddConsumeToken adds v to the "consume_token" field.
  566. func (u *UsageStatisticHourUpsert) AddConsumeToken(v uint64) *UsageStatisticHourUpsert {
  567. u.Add(usagestatistichour.FieldConsumeToken, v)
  568. return u
  569. }
  570. // SetActiveUser sets the "active_user" field.
  571. func (u *UsageStatisticHourUpsert) SetActiveUser(v uint64) *UsageStatisticHourUpsert {
  572. u.Set(usagestatistichour.FieldActiveUser, v)
  573. return u
  574. }
  575. // UpdateActiveUser sets the "active_user" field to the value that was provided on create.
  576. func (u *UsageStatisticHourUpsert) UpdateActiveUser() *UsageStatisticHourUpsert {
  577. u.SetExcluded(usagestatistichour.FieldActiveUser)
  578. return u
  579. }
  580. // AddActiveUser adds v to the "active_user" field.
  581. func (u *UsageStatisticHourUpsert) AddActiveUser(v uint64) *UsageStatisticHourUpsert {
  582. u.Add(usagestatistichour.FieldActiveUser, v)
  583. return u
  584. }
  585. // SetNewUser sets the "new_user" field.
  586. func (u *UsageStatisticHourUpsert) SetNewUser(v int64) *UsageStatisticHourUpsert {
  587. u.Set(usagestatistichour.FieldNewUser, v)
  588. return u
  589. }
  590. // UpdateNewUser sets the "new_user" field to the value that was provided on create.
  591. func (u *UsageStatisticHourUpsert) UpdateNewUser() *UsageStatisticHourUpsert {
  592. u.SetExcluded(usagestatistichour.FieldNewUser)
  593. return u
  594. }
  595. // AddNewUser adds v to the "new_user" field.
  596. func (u *UsageStatisticHourUpsert) AddNewUser(v int64) *UsageStatisticHourUpsert {
  597. u.Add(usagestatistichour.FieldNewUser, v)
  598. return u
  599. }
  600. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  601. // Using this option is equivalent to using:
  602. //
  603. // client.UsageStatisticHour.Create().
  604. // OnConflict(
  605. // sql.ResolveWithNewValues(),
  606. // sql.ResolveWith(func(u *sql.UpdateSet) {
  607. // u.SetIgnore(usagestatistichour.FieldID)
  608. // }),
  609. // ).
  610. // Exec(ctx)
  611. func (u *UsageStatisticHourUpsertOne) UpdateNewValues() *UsageStatisticHourUpsertOne {
  612. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  613. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  614. if _, exists := u.create.mutation.ID(); exists {
  615. s.SetIgnore(usagestatistichour.FieldID)
  616. }
  617. if _, exists := u.create.mutation.CreatedAt(); exists {
  618. s.SetIgnore(usagestatistichour.FieldCreatedAt)
  619. }
  620. }))
  621. return u
  622. }
  623. // Ignore sets each column to itself in case of conflict.
  624. // Using this option is equivalent to using:
  625. //
  626. // client.UsageStatisticHour.Create().
  627. // OnConflict(sql.ResolveWithIgnore()).
  628. // Exec(ctx)
  629. func (u *UsageStatisticHourUpsertOne) Ignore() *UsageStatisticHourUpsertOne {
  630. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  631. return u
  632. }
  633. // DoNothing configures the conflict_action to `DO NOTHING`.
  634. // Supported only by SQLite and PostgreSQL.
  635. func (u *UsageStatisticHourUpsertOne) DoNothing() *UsageStatisticHourUpsertOne {
  636. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  637. return u
  638. }
  639. // Update allows overriding fields `UPDATE` values. See the UsageStatisticHourCreate.OnConflict
  640. // documentation for more info.
  641. func (u *UsageStatisticHourUpsertOne) Update(set func(*UsageStatisticHourUpsert)) *UsageStatisticHourUpsertOne {
  642. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  643. set(&UsageStatisticHourUpsert{UpdateSet: update})
  644. }))
  645. return u
  646. }
  647. // SetUpdatedAt sets the "updated_at" field.
  648. func (u *UsageStatisticHourUpsertOne) SetUpdatedAt(v time.Time) *UsageStatisticHourUpsertOne {
  649. return u.Update(func(s *UsageStatisticHourUpsert) {
  650. s.SetUpdatedAt(v)
  651. })
  652. }
  653. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  654. func (u *UsageStatisticHourUpsertOne) UpdateUpdatedAt() *UsageStatisticHourUpsertOne {
  655. return u.Update(func(s *UsageStatisticHourUpsert) {
  656. s.UpdateUpdatedAt()
  657. })
  658. }
  659. // SetStatus sets the "status" field.
  660. func (u *UsageStatisticHourUpsertOne) SetStatus(v uint8) *UsageStatisticHourUpsertOne {
  661. return u.Update(func(s *UsageStatisticHourUpsert) {
  662. s.SetStatus(v)
  663. })
  664. }
  665. // AddStatus adds v to the "status" field.
  666. func (u *UsageStatisticHourUpsertOne) AddStatus(v uint8) *UsageStatisticHourUpsertOne {
  667. return u.Update(func(s *UsageStatisticHourUpsert) {
  668. s.AddStatus(v)
  669. })
  670. }
  671. // UpdateStatus sets the "status" field to the value that was provided on create.
  672. func (u *UsageStatisticHourUpsertOne) UpdateStatus() *UsageStatisticHourUpsertOne {
  673. return u.Update(func(s *UsageStatisticHourUpsert) {
  674. s.UpdateStatus()
  675. })
  676. }
  677. // ClearStatus clears the value of the "status" field.
  678. func (u *UsageStatisticHourUpsertOne) ClearStatus() *UsageStatisticHourUpsertOne {
  679. return u.Update(func(s *UsageStatisticHourUpsert) {
  680. s.ClearStatus()
  681. })
  682. }
  683. // SetDeletedAt sets the "deleted_at" field.
  684. func (u *UsageStatisticHourUpsertOne) SetDeletedAt(v time.Time) *UsageStatisticHourUpsertOne {
  685. return u.Update(func(s *UsageStatisticHourUpsert) {
  686. s.SetDeletedAt(v)
  687. })
  688. }
  689. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  690. func (u *UsageStatisticHourUpsertOne) UpdateDeletedAt() *UsageStatisticHourUpsertOne {
  691. return u.Update(func(s *UsageStatisticHourUpsert) {
  692. s.UpdateDeletedAt()
  693. })
  694. }
  695. // ClearDeletedAt clears the value of the "deleted_at" field.
  696. func (u *UsageStatisticHourUpsertOne) ClearDeletedAt() *UsageStatisticHourUpsertOne {
  697. return u.Update(func(s *UsageStatisticHourUpsert) {
  698. s.ClearDeletedAt()
  699. })
  700. }
  701. // SetAddtime sets the "addtime" field.
  702. func (u *UsageStatisticHourUpsertOne) SetAddtime(v uint64) *UsageStatisticHourUpsertOne {
  703. return u.Update(func(s *UsageStatisticHourUpsert) {
  704. s.SetAddtime(v)
  705. })
  706. }
  707. // AddAddtime adds v to the "addtime" field.
  708. func (u *UsageStatisticHourUpsertOne) AddAddtime(v uint64) *UsageStatisticHourUpsertOne {
  709. return u.Update(func(s *UsageStatisticHourUpsert) {
  710. s.AddAddtime(v)
  711. })
  712. }
  713. // UpdateAddtime sets the "addtime" field to the value that was provided on create.
  714. func (u *UsageStatisticHourUpsertOne) UpdateAddtime() *UsageStatisticHourUpsertOne {
  715. return u.Update(func(s *UsageStatisticHourUpsert) {
  716. s.UpdateAddtime()
  717. })
  718. }
  719. // SetType sets the "type" field.
  720. func (u *UsageStatisticHourUpsertOne) SetType(v int) *UsageStatisticHourUpsertOne {
  721. return u.Update(func(s *UsageStatisticHourUpsert) {
  722. s.SetType(v)
  723. })
  724. }
  725. // AddType adds v to the "type" field.
  726. func (u *UsageStatisticHourUpsertOne) AddType(v int) *UsageStatisticHourUpsertOne {
  727. return u.Update(func(s *UsageStatisticHourUpsert) {
  728. s.AddType(v)
  729. })
  730. }
  731. // UpdateType sets the "type" field to the value that was provided on create.
  732. func (u *UsageStatisticHourUpsertOne) UpdateType() *UsageStatisticHourUpsertOne {
  733. return u.Update(func(s *UsageStatisticHourUpsert) {
  734. s.UpdateType()
  735. })
  736. }
  737. // SetBotID sets the "bot_id" field.
  738. func (u *UsageStatisticHourUpsertOne) SetBotID(v string) *UsageStatisticHourUpsertOne {
  739. return u.Update(func(s *UsageStatisticHourUpsert) {
  740. s.SetBotID(v)
  741. })
  742. }
  743. // UpdateBotID sets the "bot_id" field to the value that was provided on create.
  744. func (u *UsageStatisticHourUpsertOne) UpdateBotID() *UsageStatisticHourUpsertOne {
  745. return u.Update(func(s *UsageStatisticHourUpsert) {
  746. s.UpdateBotID()
  747. })
  748. }
  749. // SetOrganizationID sets the "organization_id" field.
  750. func (u *UsageStatisticHourUpsertOne) SetOrganizationID(v uint64) *UsageStatisticHourUpsertOne {
  751. return u.Update(func(s *UsageStatisticHourUpsert) {
  752. s.SetOrganizationID(v)
  753. })
  754. }
  755. // AddOrganizationID adds v to the "organization_id" field.
  756. func (u *UsageStatisticHourUpsertOne) AddOrganizationID(v uint64) *UsageStatisticHourUpsertOne {
  757. return u.Update(func(s *UsageStatisticHourUpsert) {
  758. s.AddOrganizationID(v)
  759. })
  760. }
  761. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  762. func (u *UsageStatisticHourUpsertOne) UpdateOrganizationID() *UsageStatisticHourUpsertOne {
  763. return u.Update(func(s *UsageStatisticHourUpsert) {
  764. s.UpdateOrganizationID()
  765. })
  766. }
  767. // ClearOrganizationID clears the value of the "organization_id" field.
  768. func (u *UsageStatisticHourUpsertOne) ClearOrganizationID() *UsageStatisticHourUpsertOne {
  769. return u.Update(func(s *UsageStatisticHourUpsert) {
  770. s.ClearOrganizationID()
  771. })
  772. }
  773. // SetAiResponse sets the "ai_response" field.
  774. func (u *UsageStatisticHourUpsertOne) SetAiResponse(v uint64) *UsageStatisticHourUpsertOne {
  775. return u.Update(func(s *UsageStatisticHourUpsert) {
  776. s.SetAiResponse(v)
  777. })
  778. }
  779. // AddAiResponse adds v to the "ai_response" field.
  780. func (u *UsageStatisticHourUpsertOne) AddAiResponse(v uint64) *UsageStatisticHourUpsertOne {
  781. return u.Update(func(s *UsageStatisticHourUpsert) {
  782. s.AddAiResponse(v)
  783. })
  784. }
  785. // UpdateAiResponse sets the "ai_response" field to the value that was provided on create.
  786. func (u *UsageStatisticHourUpsertOne) UpdateAiResponse() *UsageStatisticHourUpsertOne {
  787. return u.Update(func(s *UsageStatisticHourUpsert) {
  788. s.UpdateAiResponse()
  789. })
  790. }
  791. // SetSopRun sets the "sop_run" field.
  792. func (u *UsageStatisticHourUpsertOne) SetSopRun(v uint64) *UsageStatisticHourUpsertOne {
  793. return u.Update(func(s *UsageStatisticHourUpsert) {
  794. s.SetSopRun(v)
  795. })
  796. }
  797. // AddSopRun adds v to the "sop_run" field.
  798. func (u *UsageStatisticHourUpsertOne) AddSopRun(v uint64) *UsageStatisticHourUpsertOne {
  799. return u.Update(func(s *UsageStatisticHourUpsert) {
  800. s.AddSopRun(v)
  801. })
  802. }
  803. // UpdateSopRun sets the "sop_run" field to the value that was provided on create.
  804. func (u *UsageStatisticHourUpsertOne) UpdateSopRun() *UsageStatisticHourUpsertOne {
  805. return u.Update(func(s *UsageStatisticHourUpsert) {
  806. s.UpdateSopRun()
  807. })
  808. }
  809. // SetTotalFriend sets the "total_friend" field.
  810. func (u *UsageStatisticHourUpsertOne) SetTotalFriend(v uint64) *UsageStatisticHourUpsertOne {
  811. return u.Update(func(s *UsageStatisticHourUpsert) {
  812. s.SetTotalFriend(v)
  813. })
  814. }
  815. // AddTotalFriend adds v to the "total_friend" field.
  816. func (u *UsageStatisticHourUpsertOne) AddTotalFriend(v uint64) *UsageStatisticHourUpsertOne {
  817. return u.Update(func(s *UsageStatisticHourUpsert) {
  818. s.AddTotalFriend(v)
  819. })
  820. }
  821. // UpdateTotalFriend sets the "total_friend" field to the value that was provided on create.
  822. func (u *UsageStatisticHourUpsertOne) UpdateTotalFriend() *UsageStatisticHourUpsertOne {
  823. return u.Update(func(s *UsageStatisticHourUpsert) {
  824. s.UpdateTotalFriend()
  825. })
  826. }
  827. // SetTotalGroup sets the "total_group" field.
  828. func (u *UsageStatisticHourUpsertOne) SetTotalGroup(v uint64) *UsageStatisticHourUpsertOne {
  829. return u.Update(func(s *UsageStatisticHourUpsert) {
  830. s.SetTotalGroup(v)
  831. })
  832. }
  833. // AddTotalGroup adds v to the "total_group" field.
  834. func (u *UsageStatisticHourUpsertOne) AddTotalGroup(v uint64) *UsageStatisticHourUpsertOne {
  835. return u.Update(func(s *UsageStatisticHourUpsert) {
  836. s.AddTotalGroup(v)
  837. })
  838. }
  839. // UpdateTotalGroup sets the "total_group" field to the value that was provided on create.
  840. func (u *UsageStatisticHourUpsertOne) UpdateTotalGroup() *UsageStatisticHourUpsertOne {
  841. return u.Update(func(s *UsageStatisticHourUpsert) {
  842. s.UpdateTotalGroup()
  843. })
  844. }
  845. // SetAccountBalance sets the "account_balance" field.
  846. func (u *UsageStatisticHourUpsertOne) SetAccountBalance(v uint64) *UsageStatisticHourUpsertOne {
  847. return u.Update(func(s *UsageStatisticHourUpsert) {
  848. s.SetAccountBalance(v)
  849. })
  850. }
  851. // AddAccountBalance adds v to the "account_balance" field.
  852. func (u *UsageStatisticHourUpsertOne) AddAccountBalance(v uint64) *UsageStatisticHourUpsertOne {
  853. return u.Update(func(s *UsageStatisticHourUpsert) {
  854. s.AddAccountBalance(v)
  855. })
  856. }
  857. // UpdateAccountBalance sets the "account_balance" field to the value that was provided on create.
  858. func (u *UsageStatisticHourUpsertOne) UpdateAccountBalance() *UsageStatisticHourUpsertOne {
  859. return u.Update(func(s *UsageStatisticHourUpsert) {
  860. s.UpdateAccountBalance()
  861. })
  862. }
  863. // SetConsumeToken sets the "consume_token" field.
  864. func (u *UsageStatisticHourUpsertOne) SetConsumeToken(v uint64) *UsageStatisticHourUpsertOne {
  865. return u.Update(func(s *UsageStatisticHourUpsert) {
  866. s.SetConsumeToken(v)
  867. })
  868. }
  869. // AddConsumeToken adds v to the "consume_token" field.
  870. func (u *UsageStatisticHourUpsertOne) AddConsumeToken(v uint64) *UsageStatisticHourUpsertOne {
  871. return u.Update(func(s *UsageStatisticHourUpsert) {
  872. s.AddConsumeToken(v)
  873. })
  874. }
  875. // UpdateConsumeToken sets the "consume_token" field to the value that was provided on create.
  876. func (u *UsageStatisticHourUpsertOne) UpdateConsumeToken() *UsageStatisticHourUpsertOne {
  877. return u.Update(func(s *UsageStatisticHourUpsert) {
  878. s.UpdateConsumeToken()
  879. })
  880. }
  881. // SetActiveUser sets the "active_user" field.
  882. func (u *UsageStatisticHourUpsertOne) SetActiveUser(v uint64) *UsageStatisticHourUpsertOne {
  883. return u.Update(func(s *UsageStatisticHourUpsert) {
  884. s.SetActiveUser(v)
  885. })
  886. }
  887. // AddActiveUser adds v to the "active_user" field.
  888. func (u *UsageStatisticHourUpsertOne) AddActiveUser(v uint64) *UsageStatisticHourUpsertOne {
  889. return u.Update(func(s *UsageStatisticHourUpsert) {
  890. s.AddActiveUser(v)
  891. })
  892. }
  893. // UpdateActiveUser sets the "active_user" field to the value that was provided on create.
  894. func (u *UsageStatisticHourUpsertOne) UpdateActiveUser() *UsageStatisticHourUpsertOne {
  895. return u.Update(func(s *UsageStatisticHourUpsert) {
  896. s.UpdateActiveUser()
  897. })
  898. }
  899. // SetNewUser sets the "new_user" field.
  900. func (u *UsageStatisticHourUpsertOne) SetNewUser(v int64) *UsageStatisticHourUpsertOne {
  901. return u.Update(func(s *UsageStatisticHourUpsert) {
  902. s.SetNewUser(v)
  903. })
  904. }
  905. // AddNewUser adds v to the "new_user" field.
  906. func (u *UsageStatisticHourUpsertOne) AddNewUser(v int64) *UsageStatisticHourUpsertOne {
  907. return u.Update(func(s *UsageStatisticHourUpsert) {
  908. s.AddNewUser(v)
  909. })
  910. }
  911. // UpdateNewUser sets the "new_user" field to the value that was provided on create.
  912. func (u *UsageStatisticHourUpsertOne) UpdateNewUser() *UsageStatisticHourUpsertOne {
  913. return u.Update(func(s *UsageStatisticHourUpsert) {
  914. s.UpdateNewUser()
  915. })
  916. }
  917. // Exec executes the query.
  918. func (u *UsageStatisticHourUpsertOne) Exec(ctx context.Context) error {
  919. if len(u.create.conflict) == 0 {
  920. return errors.New("ent: missing options for UsageStatisticHourCreate.OnConflict")
  921. }
  922. return u.create.Exec(ctx)
  923. }
  924. // ExecX is like Exec, but panics if an error occurs.
  925. func (u *UsageStatisticHourUpsertOne) ExecX(ctx context.Context) {
  926. if err := u.create.Exec(ctx); err != nil {
  927. panic(err)
  928. }
  929. }
  930. // Exec executes the UPSERT query and returns the inserted/updated ID.
  931. func (u *UsageStatisticHourUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  932. node, err := u.create.Save(ctx)
  933. if err != nil {
  934. return id, err
  935. }
  936. return node.ID, nil
  937. }
  938. // IDX is like ID, but panics if an error occurs.
  939. func (u *UsageStatisticHourUpsertOne) IDX(ctx context.Context) uint64 {
  940. id, err := u.ID(ctx)
  941. if err != nil {
  942. panic(err)
  943. }
  944. return id
  945. }
  946. // UsageStatisticHourCreateBulk is the builder for creating many UsageStatisticHour entities in bulk.
  947. type UsageStatisticHourCreateBulk struct {
  948. config
  949. err error
  950. builders []*UsageStatisticHourCreate
  951. conflict []sql.ConflictOption
  952. }
  953. // Save creates the UsageStatisticHour entities in the database.
  954. func (ushcb *UsageStatisticHourCreateBulk) Save(ctx context.Context) ([]*UsageStatisticHour, error) {
  955. if ushcb.err != nil {
  956. return nil, ushcb.err
  957. }
  958. specs := make([]*sqlgraph.CreateSpec, len(ushcb.builders))
  959. nodes := make([]*UsageStatisticHour, len(ushcb.builders))
  960. mutators := make([]Mutator, len(ushcb.builders))
  961. for i := range ushcb.builders {
  962. func(i int, root context.Context) {
  963. builder := ushcb.builders[i]
  964. builder.defaults()
  965. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  966. mutation, ok := m.(*UsageStatisticHourMutation)
  967. if !ok {
  968. return nil, fmt.Errorf("unexpected mutation type %T", m)
  969. }
  970. if err := builder.check(); err != nil {
  971. return nil, err
  972. }
  973. builder.mutation = mutation
  974. var err error
  975. nodes[i], specs[i] = builder.createSpec()
  976. if i < len(mutators)-1 {
  977. _, err = mutators[i+1].Mutate(root, ushcb.builders[i+1].mutation)
  978. } else {
  979. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  980. spec.OnConflict = ushcb.conflict
  981. // Invoke the actual operation on the latest mutation in the chain.
  982. if err = sqlgraph.BatchCreate(ctx, ushcb.driver, spec); err != nil {
  983. if sqlgraph.IsConstraintError(err) {
  984. err = &ConstraintError{msg: err.Error(), wrap: err}
  985. }
  986. }
  987. }
  988. if err != nil {
  989. return nil, err
  990. }
  991. mutation.id = &nodes[i].ID
  992. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  993. id := specs[i].ID.Value.(int64)
  994. nodes[i].ID = uint64(id)
  995. }
  996. mutation.done = true
  997. return nodes[i], nil
  998. })
  999. for i := len(builder.hooks) - 1; i >= 0; i-- {
  1000. mut = builder.hooks[i](mut)
  1001. }
  1002. mutators[i] = mut
  1003. }(i, ctx)
  1004. }
  1005. if len(mutators) > 0 {
  1006. if _, err := mutators[0].Mutate(ctx, ushcb.builders[0].mutation); err != nil {
  1007. return nil, err
  1008. }
  1009. }
  1010. return nodes, nil
  1011. }
  1012. // SaveX is like Save, but panics if an error occurs.
  1013. func (ushcb *UsageStatisticHourCreateBulk) SaveX(ctx context.Context) []*UsageStatisticHour {
  1014. v, err := ushcb.Save(ctx)
  1015. if err != nil {
  1016. panic(err)
  1017. }
  1018. return v
  1019. }
  1020. // Exec executes the query.
  1021. func (ushcb *UsageStatisticHourCreateBulk) Exec(ctx context.Context) error {
  1022. _, err := ushcb.Save(ctx)
  1023. return err
  1024. }
  1025. // ExecX is like Exec, but panics if an error occurs.
  1026. func (ushcb *UsageStatisticHourCreateBulk) ExecX(ctx context.Context) {
  1027. if err := ushcb.Exec(ctx); err != nil {
  1028. panic(err)
  1029. }
  1030. }
  1031. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  1032. // of the `INSERT` statement. For example:
  1033. //
  1034. // client.UsageStatisticHour.CreateBulk(builders...).
  1035. // OnConflict(
  1036. // // Update the row with the new values
  1037. // // the was proposed for insertion.
  1038. // sql.ResolveWithNewValues(),
  1039. // ).
  1040. // // Override some of the fields with custom
  1041. // // update values.
  1042. // Update(func(u *ent.UsageStatisticHourUpsert) {
  1043. // SetCreatedAt(v+v).
  1044. // }).
  1045. // Exec(ctx)
  1046. func (ushcb *UsageStatisticHourCreateBulk) OnConflict(opts ...sql.ConflictOption) *UsageStatisticHourUpsertBulk {
  1047. ushcb.conflict = opts
  1048. return &UsageStatisticHourUpsertBulk{
  1049. create: ushcb,
  1050. }
  1051. }
  1052. // OnConflictColumns calls `OnConflict` and configures the columns
  1053. // as conflict target. Using this option is equivalent to using:
  1054. //
  1055. // client.UsageStatisticHour.Create().
  1056. // OnConflict(sql.ConflictColumns(columns...)).
  1057. // Exec(ctx)
  1058. func (ushcb *UsageStatisticHourCreateBulk) OnConflictColumns(columns ...string) *UsageStatisticHourUpsertBulk {
  1059. ushcb.conflict = append(ushcb.conflict, sql.ConflictColumns(columns...))
  1060. return &UsageStatisticHourUpsertBulk{
  1061. create: ushcb,
  1062. }
  1063. }
  1064. // UsageStatisticHourUpsertBulk is the builder for "upsert"-ing
  1065. // a bulk of UsageStatisticHour nodes.
  1066. type UsageStatisticHourUpsertBulk struct {
  1067. create *UsageStatisticHourCreateBulk
  1068. }
  1069. // UpdateNewValues updates the mutable fields using the new values that
  1070. // were set on create. Using this option is equivalent to using:
  1071. //
  1072. // client.UsageStatisticHour.Create().
  1073. // OnConflict(
  1074. // sql.ResolveWithNewValues(),
  1075. // sql.ResolveWith(func(u *sql.UpdateSet) {
  1076. // u.SetIgnore(usagestatistichour.FieldID)
  1077. // }),
  1078. // ).
  1079. // Exec(ctx)
  1080. func (u *UsageStatisticHourUpsertBulk) UpdateNewValues() *UsageStatisticHourUpsertBulk {
  1081. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  1082. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  1083. for _, b := range u.create.builders {
  1084. if _, exists := b.mutation.ID(); exists {
  1085. s.SetIgnore(usagestatistichour.FieldID)
  1086. }
  1087. if _, exists := b.mutation.CreatedAt(); exists {
  1088. s.SetIgnore(usagestatistichour.FieldCreatedAt)
  1089. }
  1090. }
  1091. }))
  1092. return u
  1093. }
  1094. // Ignore sets each column to itself in case of conflict.
  1095. // Using this option is equivalent to using:
  1096. //
  1097. // client.UsageStatisticHour.Create().
  1098. // OnConflict(sql.ResolveWithIgnore()).
  1099. // Exec(ctx)
  1100. func (u *UsageStatisticHourUpsertBulk) Ignore() *UsageStatisticHourUpsertBulk {
  1101. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  1102. return u
  1103. }
  1104. // DoNothing configures the conflict_action to `DO NOTHING`.
  1105. // Supported only by SQLite and PostgreSQL.
  1106. func (u *UsageStatisticHourUpsertBulk) DoNothing() *UsageStatisticHourUpsertBulk {
  1107. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  1108. return u
  1109. }
  1110. // Update allows overriding fields `UPDATE` values. See the UsageStatisticHourCreateBulk.OnConflict
  1111. // documentation for more info.
  1112. func (u *UsageStatisticHourUpsertBulk) Update(set func(*UsageStatisticHourUpsert)) *UsageStatisticHourUpsertBulk {
  1113. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  1114. set(&UsageStatisticHourUpsert{UpdateSet: update})
  1115. }))
  1116. return u
  1117. }
  1118. // SetUpdatedAt sets the "updated_at" field.
  1119. func (u *UsageStatisticHourUpsertBulk) SetUpdatedAt(v time.Time) *UsageStatisticHourUpsertBulk {
  1120. return u.Update(func(s *UsageStatisticHourUpsert) {
  1121. s.SetUpdatedAt(v)
  1122. })
  1123. }
  1124. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  1125. func (u *UsageStatisticHourUpsertBulk) UpdateUpdatedAt() *UsageStatisticHourUpsertBulk {
  1126. return u.Update(func(s *UsageStatisticHourUpsert) {
  1127. s.UpdateUpdatedAt()
  1128. })
  1129. }
  1130. // SetStatus sets the "status" field.
  1131. func (u *UsageStatisticHourUpsertBulk) SetStatus(v uint8) *UsageStatisticHourUpsertBulk {
  1132. return u.Update(func(s *UsageStatisticHourUpsert) {
  1133. s.SetStatus(v)
  1134. })
  1135. }
  1136. // AddStatus adds v to the "status" field.
  1137. func (u *UsageStatisticHourUpsertBulk) AddStatus(v uint8) *UsageStatisticHourUpsertBulk {
  1138. return u.Update(func(s *UsageStatisticHourUpsert) {
  1139. s.AddStatus(v)
  1140. })
  1141. }
  1142. // UpdateStatus sets the "status" field to the value that was provided on create.
  1143. func (u *UsageStatisticHourUpsertBulk) UpdateStatus() *UsageStatisticHourUpsertBulk {
  1144. return u.Update(func(s *UsageStatisticHourUpsert) {
  1145. s.UpdateStatus()
  1146. })
  1147. }
  1148. // ClearStatus clears the value of the "status" field.
  1149. func (u *UsageStatisticHourUpsertBulk) ClearStatus() *UsageStatisticHourUpsertBulk {
  1150. return u.Update(func(s *UsageStatisticHourUpsert) {
  1151. s.ClearStatus()
  1152. })
  1153. }
  1154. // SetDeletedAt sets the "deleted_at" field.
  1155. func (u *UsageStatisticHourUpsertBulk) SetDeletedAt(v time.Time) *UsageStatisticHourUpsertBulk {
  1156. return u.Update(func(s *UsageStatisticHourUpsert) {
  1157. s.SetDeletedAt(v)
  1158. })
  1159. }
  1160. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  1161. func (u *UsageStatisticHourUpsertBulk) UpdateDeletedAt() *UsageStatisticHourUpsertBulk {
  1162. return u.Update(func(s *UsageStatisticHourUpsert) {
  1163. s.UpdateDeletedAt()
  1164. })
  1165. }
  1166. // ClearDeletedAt clears the value of the "deleted_at" field.
  1167. func (u *UsageStatisticHourUpsertBulk) ClearDeletedAt() *UsageStatisticHourUpsertBulk {
  1168. return u.Update(func(s *UsageStatisticHourUpsert) {
  1169. s.ClearDeletedAt()
  1170. })
  1171. }
  1172. // SetAddtime sets the "addtime" field.
  1173. func (u *UsageStatisticHourUpsertBulk) SetAddtime(v uint64) *UsageStatisticHourUpsertBulk {
  1174. return u.Update(func(s *UsageStatisticHourUpsert) {
  1175. s.SetAddtime(v)
  1176. })
  1177. }
  1178. // AddAddtime adds v to the "addtime" field.
  1179. func (u *UsageStatisticHourUpsertBulk) AddAddtime(v uint64) *UsageStatisticHourUpsertBulk {
  1180. return u.Update(func(s *UsageStatisticHourUpsert) {
  1181. s.AddAddtime(v)
  1182. })
  1183. }
  1184. // UpdateAddtime sets the "addtime" field to the value that was provided on create.
  1185. func (u *UsageStatisticHourUpsertBulk) UpdateAddtime() *UsageStatisticHourUpsertBulk {
  1186. return u.Update(func(s *UsageStatisticHourUpsert) {
  1187. s.UpdateAddtime()
  1188. })
  1189. }
  1190. // SetType sets the "type" field.
  1191. func (u *UsageStatisticHourUpsertBulk) SetType(v int) *UsageStatisticHourUpsertBulk {
  1192. return u.Update(func(s *UsageStatisticHourUpsert) {
  1193. s.SetType(v)
  1194. })
  1195. }
  1196. // AddType adds v to the "type" field.
  1197. func (u *UsageStatisticHourUpsertBulk) AddType(v int) *UsageStatisticHourUpsertBulk {
  1198. return u.Update(func(s *UsageStatisticHourUpsert) {
  1199. s.AddType(v)
  1200. })
  1201. }
  1202. // UpdateType sets the "type" field to the value that was provided on create.
  1203. func (u *UsageStatisticHourUpsertBulk) UpdateType() *UsageStatisticHourUpsertBulk {
  1204. return u.Update(func(s *UsageStatisticHourUpsert) {
  1205. s.UpdateType()
  1206. })
  1207. }
  1208. // SetBotID sets the "bot_id" field.
  1209. func (u *UsageStatisticHourUpsertBulk) SetBotID(v string) *UsageStatisticHourUpsertBulk {
  1210. return u.Update(func(s *UsageStatisticHourUpsert) {
  1211. s.SetBotID(v)
  1212. })
  1213. }
  1214. // UpdateBotID sets the "bot_id" field to the value that was provided on create.
  1215. func (u *UsageStatisticHourUpsertBulk) UpdateBotID() *UsageStatisticHourUpsertBulk {
  1216. return u.Update(func(s *UsageStatisticHourUpsert) {
  1217. s.UpdateBotID()
  1218. })
  1219. }
  1220. // SetOrganizationID sets the "organization_id" field.
  1221. func (u *UsageStatisticHourUpsertBulk) SetOrganizationID(v uint64) *UsageStatisticHourUpsertBulk {
  1222. return u.Update(func(s *UsageStatisticHourUpsert) {
  1223. s.SetOrganizationID(v)
  1224. })
  1225. }
  1226. // AddOrganizationID adds v to the "organization_id" field.
  1227. func (u *UsageStatisticHourUpsertBulk) AddOrganizationID(v uint64) *UsageStatisticHourUpsertBulk {
  1228. return u.Update(func(s *UsageStatisticHourUpsert) {
  1229. s.AddOrganizationID(v)
  1230. })
  1231. }
  1232. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1233. func (u *UsageStatisticHourUpsertBulk) UpdateOrganizationID() *UsageStatisticHourUpsertBulk {
  1234. return u.Update(func(s *UsageStatisticHourUpsert) {
  1235. s.UpdateOrganizationID()
  1236. })
  1237. }
  1238. // ClearOrganizationID clears the value of the "organization_id" field.
  1239. func (u *UsageStatisticHourUpsertBulk) ClearOrganizationID() *UsageStatisticHourUpsertBulk {
  1240. return u.Update(func(s *UsageStatisticHourUpsert) {
  1241. s.ClearOrganizationID()
  1242. })
  1243. }
  1244. // SetAiResponse sets the "ai_response" field.
  1245. func (u *UsageStatisticHourUpsertBulk) SetAiResponse(v uint64) *UsageStatisticHourUpsertBulk {
  1246. return u.Update(func(s *UsageStatisticHourUpsert) {
  1247. s.SetAiResponse(v)
  1248. })
  1249. }
  1250. // AddAiResponse adds v to the "ai_response" field.
  1251. func (u *UsageStatisticHourUpsertBulk) AddAiResponse(v uint64) *UsageStatisticHourUpsertBulk {
  1252. return u.Update(func(s *UsageStatisticHourUpsert) {
  1253. s.AddAiResponse(v)
  1254. })
  1255. }
  1256. // UpdateAiResponse sets the "ai_response" field to the value that was provided on create.
  1257. func (u *UsageStatisticHourUpsertBulk) UpdateAiResponse() *UsageStatisticHourUpsertBulk {
  1258. return u.Update(func(s *UsageStatisticHourUpsert) {
  1259. s.UpdateAiResponse()
  1260. })
  1261. }
  1262. // SetSopRun sets the "sop_run" field.
  1263. func (u *UsageStatisticHourUpsertBulk) SetSopRun(v uint64) *UsageStatisticHourUpsertBulk {
  1264. return u.Update(func(s *UsageStatisticHourUpsert) {
  1265. s.SetSopRun(v)
  1266. })
  1267. }
  1268. // AddSopRun adds v to the "sop_run" field.
  1269. func (u *UsageStatisticHourUpsertBulk) AddSopRun(v uint64) *UsageStatisticHourUpsertBulk {
  1270. return u.Update(func(s *UsageStatisticHourUpsert) {
  1271. s.AddSopRun(v)
  1272. })
  1273. }
  1274. // UpdateSopRun sets the "sop_run" field to the value that was provided on create.
  1275. func (u *UsageStatisticHourUpsertBulk) UpdateSopRun() *UsageStatisticHourUpsertBulk {
  1276. return u.Update(func(s *UsageStatisticHourUpsert) {
  1277. s.UpdateSopRun()
  1278. })
  1279. }
  1280. // SetTotalFriend sets the "total_friend" field.
  1281. func (u *UsageStatisticHourUpsertBulk) SetTotalFriend(v uint64) *UsageStatisticHourUpsertBulk {
  1282. return u.Update(func(s *UsageStatisticHourUpsert) {
  1283. s.SetTotalFriend(v)
  1284. })
  1285. }
  1286. // AddTotalFriend adds v to the "total_friend" field.
  1287. func (u *UsageStatisticHourUpsertBulk) AddTotalFriend(v uint64) *UsageStatisticHourUpsertBulk {
  1288. return u.Update(func(s *UsageStatisticHourUpsert) {
  1289. s.AddTotalFriend(v)
  1290. })
  1291. }
  1292. // UpdateTotalFriend sets the "total_friend" field to the value that was provided on create.
  1293. func (u *UsageStatisticHourUpsertBulk) UpdateTotalFriend() *UsageStatisticHourUpsertBulk {
  1294. return u.Update(func(s *UsageStatisticHourUpsert) {
  1295. s.UpdateTotalFriend()
  1296. })
  1297. }
  1298. // SetTotalGroup sets the "total_group" field.
  1299. func (u *UsageStatisticHourUpsertBulk) SetTotalGroup(v uint64) *UsageStatisticHourUpsertBulk {
  1300. return u.Update(func(s *UsageStatisticHourUpsert) {
  1301. s.SetTotalGroup(v)
  1302. })
  1303. }
  1304. // AddTotalGroup adds v to the "total_group" field.
  1305. func (u *UsageStatisticHourUpsertBulk) AddTotalGroup(v uint64) *UsageStatisticHourUpsertBulk {
  1306. return u.Update(func(s *UsageStatisticHourUpsert) {
  1307. s.AddTotalGroup(v)
  1308. })
  1309. }
  1310. // UpdateTotalGroup sets the "total_group" field to the value that was provided on create.
  1311. func (u *UsageStatisticHourUpsertBulk) UpdateTotalGroup() *UsageStatisticHourUpsertBulk {
  1312. return u.Update(func(s *UsageStatisticHourUpsert) {
  1313. s.UpdateTotalGroup()
  1314. })
  1315. }
  1316. // SetAccountBalance sets the "account_balance" field.
  1317. func (u *UsageStatisticHourUpsertBulk) SetAccountBalance(v uint64) *UsageStatisticHourUpsertBulk {
  1318. return u.Update(func(s *UsageStatisticHourUpsert) {
  1319. s.SetAccountBalance(v)
  1320. })
  1321. }
  1322. // AddAccountBalance adds v to the "account_balance" field.
  1323. func (u *UsageStatisticHourUpsertBulk) AddAccountBalance(v uint64) *UsageStatisticHourUpsertBulk {
  1324. return u.Update(func(s *UsageStatisticHourUpsert) {
  1325. s.AddAccountBalance(v)
  1326. })
  1327. }
  1328. // UpdateAccountBalance sets the "account_balance" field to the value that was provided on create.
  1329. func (u *UsageStatisticHourUpsertBulk) UpdateAccountBalance() *UsageStatisticHourUpsertBulk {
  1330. return u.Update(func(s *UsageStatisticHourUpsert) {
  1331. s.UpdateAccountBalance()
  1332. })
  1333. }
  1334. // SetConsumeToken sets the "consume_token" field.
  1335. func (u *UsageStatisticHourUpsertBulk) SetConsumeToken(v uint64) *UsageStatisticHourUpsertBulk {
  1336. return u.Update(func(s *UsageStatisticHourUpsert) {
  1337. s.SetConsumeToken(v)
  1338. })
  1339. }
  1340. // AddConsumeToken adds v to the "consume_token" field.
  1341. func (u *UsageStatisticHourUpsertBulk) AddConsumeToken(v uint64) *UsageStatisticHourUpsertBulk {
  1342. return u.Update(func(s *UsageStatisticHourUpsert) {
  1343. s.AddConsumeToken(v)
  1344. })
  1345. }
  1346. // UpdateConsumeToken sets the "consume_token" field to the value that was provided on create.
  1347. func (u *UsageStatisticHourUpsertBulk) UpdateConsumeToken() *UsageStatisticHourUpsertBulk {
  1348. return u.Update(func(s *UsageStatisticHourUpsert) {
  1349. s.UpdateConsumeToken()
  1350. })
  1351. }
  1352. // SetActiveUser sets the "active_user" field.
  1353. func (u *UsageStatisticHourUpsertBulk) SetActiveUser(v uint64) *UsageStatisticHourUpsertBulk {
  1354. return u.Update(func(s *UsageStatisticHourUpsert) {
  1355. s.SetActiveUser(v)
  1356. })
  1357. }
  1358. // AddActiveUser adds v to the "active_user" field.
  1359. func (u *UsageStatisticHourUpsertBulk) AddActiveUser(v uint64) *UsageStatisticHourUpsertBulk {
  1360. return u.Update(func(s *UsageStatisticHourUpsert) {
  1361. s.AddActiveUser(v)
  1362. })
  1363. }
  1364. // UpdateActiveUser sets the "active_user" field to the value that was provided on create.
  1365. func (u *UsageStatisticHourUpsertBulk) UpdateActiveUser() *UsageStatisticHourUpsertBulk {
  1366. return u.Update(func(s *UsageStatisticHourUpsert) {
  1367. s.UpdateActiveUser()
  1368. })
  1369. }
  1370. // SetNewUser sets the "new_user" field.
  1371. func (u *UsageStatisticHourUpsertBulk) SetNewUser(v int64) *UsageStatisticHourUpsertBulk {
  1372. return u.Update(func(s *UsageStatisticHourUpsert) {
  1373. s.SetNewUser(v)
  1374. })
  1375. }
  1376. // AddNewUser adds v to the "new_user" field.
  1377. func (u *UsageStatisticHourUpsertBulk) AddNewUser(v int64) *UsageStatisticHourUpsertBulk {
  1378. return u.Update(func(s *UsageStatisticHourUpsert) {
  1379. s.AddNewUser(v)
  1380. })
  1381. }
  1382. // UpdateNewUser sets the "new_user" field to the value that was provided on create.
  1383. func (u *UsageStatisticHourUpsertBulk) UpdateNewUser() *UsageStatisticHourUpsertBulk {
  1384. return u.Update(func(s *UsageStatisticHourUpsert) {
  1385. s.UpdateNewUser()
  1386. })
  1387. }
  1388. // Exec executes the query.
  1389. func (u *UsageStatisticHourUpsertBulk) Exec(ctx context.Context) error {
  1390. if u.create.err != nil {
  1391. return u.create.err
  1392. }
  1393. for i, b := range u.create.builders {
  1394. if len(b.conflict) != 0 {
  1395. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the UsageStatisticHourCreateBulk instead", i)
  1396. }
  1397. }
  1398. if len(u.create.conflict) == 0 {
  1399. return errors.New("ent: missing options for UsageStatisticHourCreateBulk.OnConflict")
  1400. }
  1401. return u.create.Exec(ctx)
  1402. }
  1403. // ExecX is like Exec, but panics if an error occurs.
  1404. func (u *UsageStatisticHourUpsertBulk) ExecX(ctx context.Context) {
  1405. if err := u.create.Exec(ctx); err != nil {
  1406. panic(err)
  1407. }
  1408. }