usagestatistichour_update.go 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994
  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/predicate"
  9. "wechat-api/ent/usagestatistichour"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/schema/field"
  13. )
  14. // UsageStatisticHourUpdate is the builder for updating UsageStatisticHour entities.
  15. type UsageStatisticHourUpdate struct {
  16. config
  17. hooks []Hook
  18. mutation *UsageStatisticHourMutation
  19. }
  20. // Where appends a list predicates to the UsageStatisticHourUpdate builder.
  21. func (ushu *UsageStatisticHourUpdate) Where(ps ...predicate.UsageStatisticHour) *UsageStatisticHourUpdate {
  22. ushu.mutation.Where(ps...)
  23. return ushu
  24. }
  25. // SetUpdatedAt sets the "updated_at" field.
  26. func (ushu *UsageStatisticHourUpdate) SetUpdatedAt(t time.Time) *UsageStatisticHourUpdate {
  27. ushu.mutation.SetUpdatedAt(t)
  28. return ushu
  29. }
  30. // SetStatus sets the "status" field.
  31. func (ushu *UsageStatisticHourUpdate) SetStatus(u uint8) *UsageStatisticHourUpdate {
  32. ushu.mutation.ResetStatus()
  33. ushu.mutation.SetStatus(u)
  34. return ushu
  35. }
  36. // SetNillableStatus sets the "status" field if the given value is not nil.
  37. func (ushu *UsageStatisticHourUpdate) SetNillableStatus(u *uint8) *UsageStatisticHourUpdate {
  38. if u != nil {
  39. ushu.SetStatus(*u)
  40. }
  41. return ushu
  42. }
  43. // AddStatus adds u to the "status" field.
  44. func (ushu *UsageStatisticHourUpdate) AddStatus(u int8) *UsageStatisticHourUpdate {
  45. ushu.mutation.AddStatus(u)
  46. return ushu
  47. }
  48. // ClearStatus clears the value of the "status" field.
  49. func (ushu *UsageStatisticHourUpdate) ClearStatus() *UsageStatisticHourUpdate {
  50. ushu.mutation.ClearStatus()
  51. return ushu
  52. }
  53. // SetDeletedAt sets the "deleted_at" field.
  54. func (ushu *UsageStatisticHourUpdate) SetDeletedAt(t time.Time) *UsageStatisticHourUpdate {
  55. ushu.mutation.SetDeletedAt(t)
  56. return ushu
  57. }
  58. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  59. func (ushu *UsageStatisticHourUpdate) SetNillableDeletedAt(t *time.Time) *UsageStatisticHourUpdate {
  60. if t != nil {
  61. ushu.SetDeletedAt(*t)
  62. }
  63. return ushu
  64. }
  65. // ClearDeletedAt clears the value of the "deleted_at" field.
  66. func (ushu *UsageStatisticHourUpdate) ClearDeletedAt() *UsageStatisticHourUpdate {
  67. ushu.mutation.ClearDeletedAt()
  68. return ushu
  69. }
  70. // SetAddtime sets the "addtime" field.
  71. func (ushu *UsageStatisticHourUpdate) SetAddtime(u uint64) *UsageStatisticHourUpdate {
  72. ushu.mutation.ResetAddtime()
  73. ushu.mutation.SetAddtime(u)
  74. return ushu
  75. }
  76. // SetNillableAddtime sets the "addtime" field if the given value is not nil.
  77. func (ushu *UsageStatisticHourUpdate) SetNillableAddtime(u *uint64) *UsageStatisticHourUpdate {
  78. if u != nil {
  79. ushu.SetAddtime(*u)
  80. }
  81. return ushu
  82. }
  83. // AddAddtime adds u to the "addtime" field.
  84. func (ushu *UsageStatisticHourUpdate) AddAddtime(u int64) *UsageStatisticHourUpdate {
  85. ushu.mutation.AddAddtime(u)
  86. return ushu
  87. }
  88. // SetType sets the "type" field.
  89. func (ushu *UsageStatisticHourUpdate) SetType(i int) *UsageStatisticHourUpdate {
  90. ushu.mutation.ResetType()
  91. ushu.mutation.SetType(i)
  92. return ushu
  93. }
  94. // SetNillableType sets the "type" field if the given value is not nil.
  95. func (ushu *UsageStatisticHourUpdate) SetNillableType(i *int) *UsageStatisticHourUpdate {
  96. if i != nil {
  97. ushu.SetType(*i)
  98. }
  99. return ushu
  100. }
  101. // AddType adds i to the "type" field.
  102. func (ushu *UsageStatisticHourUpdate) AddType(i int) *UsageStatisticHourUpdate {
  103. ushu.mutation.AddType(i)
  104. return ushu
  105. }
  106. // SetBotID sets the "bot_id" field.
  107. func (ushu *UsageStatisticHourUpdate) SetBotID(s string) *UsageStatisticHourUpdate {
  108. ushu.mutation.SetBotID(s)
  109. return ushu
  110. }
  111. // SetNillableBotID sets the "bot_id" field if the given value is not nil.
  112. func (ushu *UsageStatisticHourUpdate) SetNillableBotID(s *string) *UsageStatisticHourUpdate {
  113. if s != nil {
  114. ushu.SetBotID(*s)
  115. }
  116. return ushu
  117. }
  118. // SetOrganizationID sets the "organization_id" field.
  119. func (ushu *UsageStatisticHourUpdate) SetOrganizationID(u uint64) *UsageStatisticHourUpdate {
  120. ushu.mutation.ResetOrganizationID()
  121. ushu.mutation.SetOrganizationID(u)
  122. return ushu
  123. }
  124. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  125. func (ushu *UsageStatisticHourUpdate) SetNillableOrganizationID(u *uint64) *UsageStatisticHourUpdate {
  126. if u != nil {
  127. ushu.SetOrganizationID(*u)
  128. }
  129. return ushu
  130. }
  131. // AddOrganizationID adds u to the "organization_id" field.
  132. func (ushu *UsageStatisticHourUpdate) AddOrganizationID(u int64) *UsageStatisticHourUpdate {
  133. ushu.mutation.AddOrganizationID(u)
  134. return ushu
  135. }
  136. // ClearOrganizationID clears the value of the "organization_id" field.
  137. func (ushu *UsageStatisticHourUpdate) ClearOrganizationID() *UsageStatisticHourUpdate {
  138. ushu.mutation.ClearOrganizationID()
  139. return ushu
  140. }
  141. // SetAiResponse sets the "ai_response" field.
  142. func (ushu *UsageStatisticHourUpdate) SetAiResponse(u uint64) *UsageStatisticHourUpdate {
  143. ushu.mutation.ResetAiResponse()
  144. ushu.mutation.SetAiResponse(u)
  145. return ushu
  146. }
  147. // SetNillableAiResponse sets the "ai_response" field if the given value is not nil.
  148. func (ushu *UsageStatisticHourUpdate) SetNillableAiResponse(u *uint64) *UsageStatisticHourUpdate {
  149. if u != nil {
  150. ushu.SetAiResponse(*u)
  151. }
  152. return ushu
  153. }
  154. // AddAiResponse adds u to the "ai_response" field.
  155. func (ushu *UsageStatisticHourUpdate) AddAiResponse(u int64) *UsageStatisticHourUpdate {
  156. ushu.mutation.AddAiResponse(u)
  157. return ushu
  158. }
  159. // SetSopRun sets the "sop_run" field.
  160. func (ushu *UsageStatisticHourUpdate) SetSopRun(u uint64) *UsageStatisticHourUpdate {
  161. ushu.mutation.ResetSopRun()
  162. ushu.mutation.SetSopRun(u)
  163. return ushu
  164. }
  165. // SetNillableSopRun sets the "sop_run" field if the given value is not nil.
  166. func (ushu *UsageStatisticHourUpdate) SetNillableSopRun(u *uint64) *UsageStatisticHourUpdate {
  167. if u != nil {
  168. ushu.SetSopRun(*u)
  169. }
  170. return ushu
  171. }
  172. // AddSopRun adds u to the "sop_run" field.
  173. func (ushu *UsageStatisticHourUpdate) AddSopRun(u int64) *UsageStatisticHourUpdate {
  174. ushu.mutation.AddSopRun(u)
  175. return ushu
  176. }
  177. // SetTotalFriend sets the "total_friend" field.
  178. func (ushu *UsageStatisticHourUpdate) SetTotalFriend(u uint64) *UsageStatisticHourUpdate {
  179. ushu.mutation.ResetTotalFriend()
  180. ushu.mutation.SetTotalFriend(u)
  181. return ushu
  182. }
  183. // SetNillableTotalFriend sets the "total_friend" field if the given value is not nil.
  184. func (ushu *UsageStatisticHourUpdate) SetNillableTotalFriend(u *uint64) *UsageStatisticHourUpdate {
  185. if u != nil {
  186. ushu.SetTotalFriend(*u)
  187. }
  188. return ushu
  189. }
  190. // AddTotalFriend adds u to the "total_friend" field.
  191. func (ushu *UsageStatisticHourUpdate) AddTotalFriend(u int64) *UsageStatisticHourUpdate {
  192. ushu.mutation.AddTotalFriend(u)
  193. return ushu
  194. }
  195. // SetTotalGroup sets the "total_group" field.
  196. func (ushu *UsageStatisticHourUpdate) SetTotalGroup(u uint64) *UsageStatisticHourUpdate {
  197. ushu.mutation.ResetTotalGroup()
  198. ushu.mutation.SetTotalGroup(u)
  199. return ushu
  200. }
  201. // SetNillableTotalGroup sets the "total_group" field if the given value is not nil.
  202. func (ushu *UsageStatisticHourUpdate) SetNillableTotalGroup(u *uint64) *UsageStatisticHourUpdate {
  203. if u != nil {
  204. ushu.SetTotalGroup(*u)
  205. }
  206. return ushu
  207. }
  208. // AddTotalGroup adds u to the "total_group" field.
  209. func (ushu *UsageStatisticHourUpdate) AddTotalGroup(u int64) *UsageStatisticHourUpdate {
  210. ushu.mutation.AddTotalGroup(u)
  211. return ushu
  212. }
  213. // SetAccountBalance sets the "account_balance" field.
  214. func (ushu *UsageStatisticHourUpdate) SetAccountBalance(u uint64) *UsageStatisticHourUpdate {
  215. ushu.mutation.ResetAccountBalance()
  216. ushu.mutation.SetAccountBalance(u)
  217. return ushu
  218. }
  219. // SetNillableAccountBalance sets the "account_balance" field if the given value is not nil.
  220. func (ushu *UsageStatisticHourUpdate) SetNillableAccountBalance(u *uint64) *UsageStatisticHourUpdate {
  221. if u != nil {
  222. ushu.SetAccountBalance(*u)
  223. }
  224. return ushu
  225. }
  226. // AddAccountBalance adds u to the "account_balance" field.
  227. func (ushu *UsageStatisticHourUpdate) AddAccountBalance(u int64) *UsageStatisticHourUpdate {
  228. ushu.mutation.AddAccountBalance(u)
  229. return ushu
  230. }
  231. // SetConsumeToken sets the "consume_token" field.
  232. func (ushu *UsageStatisticHourUpdate) SetConsumeToken(u uint64) *UsageStatisticHourUpdate {
  233. ushu.mutation.ResetConsumeToken()
  234. ushu.mutation.SetConsumeToken(u)
  235. return ushu
  236. }
  237. // SetNillableConsumeToken sets the "consume_token" field if the given value is not nil.
  238. func (ushu *UsageStatisticHourUpdate) SetNillableConsumeToken(u *uint64) *UsageStatisticHourUpdate {
  239. if u != nil {
  240. ushu.SetConsumeToken(*u)
  241. }
  242. return ushu
  243. }
  244. // AddConsumeToken adds u to the "consume_token" field.
  245. func (ushu *UsageStatisticHourUpdate) AddConsumeToken(u int64) *UsageStatisticHourUpdate {
  246. ushu.mutation.AddConsumeToken(u)
  247. return ushu
  248. }
  249. // SetActiveUser sets the "active_user" field.
  250. func (ushu *UsageStatisticHourUpdate) SetActiveUser(u uint64) *UsageStatisticHourUpdate {
  251. ushu.mutation.ResetActiveUser()
  252. ushu.mutation.SetActiveUser(u)
  253. return ushu
  254. }
  255. // SetNillableActiveUser sets the "active_user" field if the given value is not nil.
  256. func (ushu *UsageStatisticHourUpdate) SetNillableActiveUser(u *uint64) *UsageStatisticHourUpdate {
  257. if u != nil {
  258. ushu.SetActiveUser(*u)
  259. }
  260. return ushu
  261. }
  262. // AddActiveUser adds u to the "active_user" field.
  263. func (ushu *UsageStatisticHourUpdate) AddActiveUser(u int64) *UsageStatisticHourUpdate {
  264. ushu.mutation.AddActiveUser(u)
  265. return ushu
  266. }
  267. // SetNewUser sets the "new_user" field.
  268. func (ushu *UsageStatisticHourUpdate) SetNewUser(i int64) *UsageStatisticHourUpdate {
  269. ushu.mutation.ResetNewUser()
  270. ushu.mutation.SetNewUser(i)
  271. return ushu
  272. }
  273. // SetNillableNewUser sets the "new_user" field if the given value is not nil.
  274. func (ushu *UsageStatisticHourUpdate) SetNillableNewUser(i *int64) *UsageStatisticHourUpdate {
  275. if i != nil {
  276. ushu.SetNewUser(*i)
  277. }
  278. return ushu
  279. }
  280. // AddNewUser adds i to the "new_user" field.
  281. func (ushu *UsageStatisticHourUpdate) AddNewUser(i int64) *UsageStatisticHourUpdate {
  282. ushu.mutation.AddNewUser(i)
  283. return ushu
  284. }
  285. // Mutation returns the UsageStatisticHourMutation object of the builder.
  286. func (ushu *UsageStatisticHourUpdate) Mutation() *UsageStatisticHourMutation {
  287. return ushu.mutation
  288. }
  289. // Save executes the query and returns the number of nodes affected by the update operation.
  290. func (ushu *UsageStatisticHourUpdate) Save(ctx context.Context) (int, error) {
  291. if err := ushu.defaults(); err != nil {
  292. return 0, err
  293. }
  294. return withHooks(ctx, ushu.sqlSave, ushu.mutation, ushu.hooks)
  295. }
  296. // SaveX is like Save, but panics if an error occurs.
  297. func (ushu *UsageStatisticHourUpdate) SaveX(ctx context.Context) int {
  298. affected, err := ushu.Save(ctx)
  299. if err != nil {
  300. panic(err)
  301. }
  302. return affected
  303. }
  304. // Exec executes the query.
  305. func (ushu *UsageStatisticHourUpdate) Exec(ctx context.Context) error {
  306. _, err := ushu.Save(ctx)
  307. return err
  308. }
  309. // ExecX is like Exec, but panics if an error occurs.
  310. func (ushu *UsageStatisticHourUpdate) ExecX(ctx context.Context) {
  311. if err := ushu.Exec(ctx); err != nil {
  312. panic(err)
  313. }
  314. }
  315. // defaults sets the default values of the builder before save.
  316. func (ushu *UsageStatisticHourUpdate) defaults() error {
  317. if _, ok := ushu.mutation.UpdatedAt(); !ok {
  318. if usagestatistichour.UpdateDefaultUpdatedAt == nil {
  319. return fmt.Errorf("ent: uninitialized usagestatistichour.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  320. }
  321. v := usagestatistichour.UpdateDefaultUpdatedAt()
  322. ushu.mutation.SetUpdatedAt(v)
  323. }
  324. return nil
  325. }
  326. func (ushu *UsageStatisticHourUpdate) sqlSave(ctx context.Context) (n int, err error) {
  327. _spec := sqlgraph.NewUpdateSpec(usagestatistichour.Table, usagestatistichour.Columns, sqlgraph.NewFieldSpec(usagestatistichour.FieldID, field.TypeUint64))
  328. if ps := ushu.mutation.predicates; len(ps) > 0 {
  329. _spec.Predicate = func(selector *sql.Selector) {
  330. for i := range ps {
  331. ps[i](selector)
  332. }
  333. }
  334. }
  335. if value, ok := ushu.mutation.UpdatedAt(); ok {
  336. _spec.SetField(usagestatistichour.FieldUpdatedAt, field.TypeTime, value)
  337. }
  338. if value, ok := ushu.mutation.Status(); ok {
  339. _spec.SetField(usagestatistichour.FieldStatus, field.TypeUint8, value)
  340. }
  341. if value, ok := ushu.mutation.AddedStatus(); ok {
  342. _spec.AddField(usagestatistichour.FieldStatus, field.TypeUint8, value)
  343. }
  344. if ushu.mutation.StatusCleared() {
  345. _spec.ClearField(usagestatistichour.FieldStatus, field.TypeUint8)
  346. }
  347. if value, ok := ushu.mutation.DeletedAt(); ok {
  348. _spec.SetField(usagestatistichour.FieldDeletedAt, field.TypeTime, value)
  349. }
  350. if ushu.mutation.DeletedAtCleared() {
  351. _spec.ClearField(usagestatistichour.FieldDeletedAt, field.TypeTime)
  352. }
  353. if value, ok := ushu.mutation.Addtime(); ok {
  354. _spec.SetField(usagestatistichour.FieldAddtime, field.TypeUint64, value)
  355. }
  356. if value, ok := ushu.mutation.AddedAddtime(); ok {
  357. _spec.AddField(usagestatistichour.FieldAddtime, field.TypeUint64, value)
  358. }
  359. if value, ok := ushu.mutation.GetType(); ok {
  360. _spec.SetField(usagestatistichour.FieldType, field.TypeInt, value)
  361. }
  362. if value, ok := ushu.mutation.AddedType(); ok {
  363. _spec.AddField(usagestatistichour.FieldType, field.TypeInt, value)
  364. }
  365. if value, ok := ushu.mutation.BotID(); ok {
  366. _spec.SetField(usagestatistichour.FieldBotID, field.TypeString, value)
  367. }
  368. if value, ok := ushu.mutation.OrganizationID(); ok {
  369. _spec.SetField(usagestatistichour.FieldOrganizationID, field.TypeUint64, value)
  370. }
  371. if value, ok := ushu.mutation.AddedOrganizationID(); ok {
  372. _spec.AddField(usagestatistichour.FieldOrganizationID, field.TypeUint64, value)
  373. }
  374. if ushu.mutation.OrganizationIDCleared() {
  375. _spec.ClearField(usagestatistichour.FieldOrganizationID, field.TypeUint64)
  376. }
  377. if value, ok := ushu.mutation.AiResponse(); ok {
  378. _spec.SetField(usagestatistichour.FieldAiResponse, field.TypeUint64, value)
  379. }
  380. if value, ok := ushu.mutation.AddedAiResponse(); ok {
  381. _spec.AddField(usagestatistichour.FieldAiResponse, field.TypeUint64, value)
  382. }
  383. if value, ok := ushu.mutation.SopRun(); ok {
  384. _spec.SetField(usagestatistichour.FieldSopRun, field.TypeUint64, value)
  385. }
  386. if value, ok := ushu.mutation.AddedSopRun(); ok {
  387. _spec.AddField(usagestatistichour.FieldSopRun, field.TypeUint64, value)
  388. }
  389. if value, ok := ushu.mutation.TotalFriend(); ok {
  390. _spec.SetField(usagestatistichour.FieldTotalFriend, field.TypeUint64, value)
  391. }
  392. if value, ok := ushu.mutation.AddedTotalFriend(); ok {
  393. _spec.AddField(usagestatistichour.FieldTotalFriend, field.TypeUint64, value)
  394. }
  395. if value, ok := ushu.mutation.TotalGroup(); ok {
  396. _spec.SetField(usagestatistichour.FieldTotalGroup, field.TypeUint64, value)
  397. }
  398. if value, ok := ushu.mutation.AddedTotalGroup(); ok {
  399. _spec.AddField(usagestatistichour.FieldTotalGroup, field.TypeUint64, value)
  400. }
  401. if value, ok := ushu.mutation.AccountBalance(); ok {
  402. _spec.SetField(usagestatistichour.FieldAccountBalance, field.TypeUint64, value)
  403. }
  404. if value, ok := ushu.mutation.AddedAccountBalance(); ok {
  405. _spec.AddField(usagestatistichour.FieldAccountBalance, field.TypeUint64, value)
  406. }
  407. if value, ok := ushu.mutation.ConsumeToken(); ok {
  408. _spec.SetField(usagestatistichour.FieldConsumeToken, field.TypeUint64, value)
  409. }
  410. if value, ok := ushu.mutation.AddedConsumeToken(); ok {
  411. _spec.AddField(usagestatistichour.FieldConsumeToken, field.TypeUint64, value)
  412. }
  413. if value, ok := ushu.mutation.ActiveUser(); ok {
  414. _spec.SetField(usagestatistichour.FieldActiveUser, field.TypeUint64, value)
  415. }
  416. if value, ok := ushu.mutation.AddedActiveUser(); ok {
  417. _spec.AddField(usagestatistichour.FieldActiveUser, field.TypeUint64, value)
  418. }
  419. if value, ok := ushu.mutation.NewUser(); ok {
  420. _spec.SetField(usagestatistichour.FieldNewUser, field.TypeInt64, value)
  421. }
  422. if value, ok := ushu.mutation.AddedNewUser(); ok {
  423. _spec.AddField(usagestatistichour.FieldNewUser, field.TypeInt64, value)
  424. }
  425. if n, err = sqlgraph.UpdateNodes(ctx, ushu.driver, _spec); err != nil {
  426. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  427. err = &NotFoundError{usagestatistichour.Label}
  428. } else if sqlgraph.IsConstraintError(err) {
  429. err = &ConstraintError{msg: err.Error(), wrap: err}
  430. }
  431. return 0, err
  432. }
  433. ushu.mutation.done = true
  434. return n, nil
  435. }
  436. // UsageStatisticHourUpdateOne is the builder for updating a single UsageStatisticHour entity.
  437. type UsageStatisticHourUpdateOne struct {
  438. config
  439. fields []string
  440. hooks []Hook
  441. mutation *UsageStatisticHourMutation
  442. }
  443. // SetUpdatedAt sets the "updated_at" field.
  444. func (ushuo *UsageStatisticHourUpdateOne) SetUpdatedAt(t time.Time) *UsageStatisticHourUpdateOne {
  445. ushuo.mutation.SetUpdatedAt(t)
  446. return ushuo
  447. }
  448. // SetStatus sets the "status" field.
  449. func (ushuo *UsageStatisticHourUpdateOne) SetStatus(u uint8) *UsageStatisticHourUpdateOne {
  450. ushuo.mutation.ResetStatus()
  451. ushuo.mutation.SetStatus(u)
  452. return ushuo
  453. }
  454. // SetNillableStatus sets the "status" field if the given value is not nil.
  455. func (ushuo *UsageStatisticHourUpdateOne) SetNillableStatus(u *uint8) *UsageStatisticHourUpdateOne {
  456. if u != nil {
  457. ushuo.SetStatus(*u)
  458. }
  459. return ushuo
  460. }
  461. // AddStatus adds u to the "status" field.
  462. func (ushuo *UsageStatisticHourUpdateOne) AddStatus(u int8) *UsageStatisticHourUpdateOne {
  463. ushuo.mutation.AddStatus(u)
  464. return ushuo
  465. }
  466. // ClearStatus clears the value of the "status" field.
  467. func (ushuo *UsageStatisticHourUpdateOne) ClearStatus() *UsageStatisticHourUpdateOne {
  468. ushuo.mutation.ClearStatus()
  469. return ushuo
  470. }
  471. // SetDeletedAt sets the "deleted_at" field.
  472. func (ushuo *UsageStatisticHourUpdateOne) SetDeletedAt(t time.Time) *UsageStatisticHourUpdateOne {
  473. ushuo.mutation.SetDeletedAt(t)
  474. return ushuo
  475. }
  476. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  477. func (ushuo *UsageStatisticHourUpdateOne) SetNillableDeletedAt(t *time.Time) *UsageStatisticHourUpdateOne {
  478. if t != nil {
  479. ushuo.SetDeletedAt(*t)
  480. }
  481. return ushuo
  482. }
  483. // ClearDeletedAt clears the value of the "deleted_at" field.
  484. func (ushuo *UsageStatisticHourUpdateOne) ClearDeletedAt() *UsageStatisticHourUpdateOne {
  485. ushuo.mutation.ClearDeletedAt()
  486. return ushuo
  487. }
  488. // SetAddtime sets the "addtime" field.
  489. func (ushuo *UsageStatisticHourUpdateOne) SetAddtime(u uint64) *UsageStatisticHourUpdateOne {
  490. ushuo.mutation.ResetAddtime()
  491. ushuo.mutation.SetAddtime(u)
  492. return ushuo
  493. }
  494. // SetNillableAddtime sets the "addtime" field if the given value is not nil.
  495. func (ushuo *UsageStatisticHourUpdateOne) SetNillableAddtime(u *uint64) *UsageStatisticHourUpdateOne {
  496. if u != nil {
  497. ushuo.SetAddtime(*u)
  498. }
  499. return ushuo
  500. }
  501. // AddAddtime adds u to the "addtime" field.
  502. func (ushuo *UsageStatisticHourUpdateOne) AddAddtime(u int64) *UsageStatisticHourUpdateOne {
  503. ushuo.mutation.AddAddtime(u)
  504. return ushuo
  505. }
  506. // SetType sets the "type" field.
  507. func (ushuo *UsageStatisticHourUpdateOne) SetType(i int) *UsageStatisticHourUpdateOne {
  508. ushuo.mutation.ResetType()
  509. ushuo.mutation.SetType(i)
  510. return ushuo
  511. }
  512. // SetNillableType sets the "type" field if the given value is not nil.
  513. func (ushuo *UsageStatisticHourUpdateOne) SetNillableType(i *int) *UsageStatisticHourUpdateOne {
  514. if i != nil {
  515. ushuo.SetType(*i)
  516. }
  517. return ushuo
  518. }
  519. // AddType adds i to the "type" field.
  520. func (ushuo *UsageStatisticHourUpdateOne) AddType(i int) *UsageStatisticHourUpdateOne {
  521. ushuo.mutation.AddType(i)
  522. return ushuo
  523. }
  524. // SetBotID sets the "bot_id" field.
  525. func (ushuo *UsageStatisticHourUpdateOne) SetBotID(s string) *UsageStatisticHourUpdateOne {
  526. ushuo.mutation.SetBotID(s)
  527. return ushuo
  528. }
  529. // SetNillableBotID sets the "bot_id" field if the given value is not nil.
  530. func (ushuo *UsageStatisticHourUpdateOne) SetNillableBotID(s *string) *UsageStatisticHourUpdateOne {
  531. if s != nil {
  532. ushuo.SetBotID(*s)
  533. }
  534. return ushuo
  535. }
  536. // SetOrganizationID sets the "organization_id" field.
  537. func (ushuo *UsageStatisticHourUpdateOne) SetOrganizationID(u uint64) *UsageStatisticHourUpdateOne {
  538. ushuo.mutation.ResetOrganizationID()
  539. ushuo.mutation.SetOrganizationID(u)
  540. return ushuo
  541. }
  542. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  543. func (ushuo *UsageStatisticHourUpdateOne) SetNillableOrganizationID(u *uint64) *UsageStatisticHourUpdateOne {
  544. if u != nil {
  545. ushuo.SetOrganizationID(*u)
  546. }
  547. return ushuo
  548. }
  549. // AddOrganizationID adds u to the "organization_id" field.
  550. func (ushuo *UsageStatisticHourUpdateOne) AddOrganizationID(u int64) *UsageStatisticHourUpdateOne {
  551. ushuo.mutation.AddOrganizationID(u)
  552. return ushuo
  553. }
  554. // ClearOrganizationID clears the value of the "organization_id" field.
  555. func (ushuo *UsageStatisticHourUpdateOne) ClearOrganizationID() *UsageStatisticHourUpdateOne {
  556. ushuo.mutation.ClearOrganizationID()
  557. return ushuo
  558. }
  559. // SetAiResponse sets the "ai_response" field.
  560. func (ushuo *UsageStatisticHourUpdateOne) SetAiResponse(u uint64) *UsageStatisticHourUpdateOne {
  561. ushuo.mutation.ResetAiResponse()
  562. ushuo.mutation.SetAiResponse(u)
  563. return ushuo
  564. }
  565. // SetNillableAiResponse sets the "ai_response" field if the given value is not nil.
  566. func (ushuo *UsageStatisticHourUpdateOne) SetNillableAiResponse(u *uint64) *UsageStatisticHourUpdateOne {
  567. if u != nil {
  568. ushuo.SetAiResponse(*u)
  569. }
  570. return ushuo
  571. }
  572. // AddAiResponse adds u to the "ai_response" field.
  573. func (ushuo *UsageStatisticHourUpdateOne) AddAiResponse(u int64) *UsageStatisticHourUpdateOne {
  574. ushuo.mutation.AddAiResponse(u)
  575. return ushuo
  576. }
  577. // SetSopRun sets the "sop_run" field.
  578. func (ushuo *UsageStatisticHourUpdateOne) SetSopRun(u uint64) *UsageStatisticHourUpdateOne {
  579. ushuo.mutation.ResetSopRun()
  580. ushuo.mutation.SetSopRun(u)
  581. return ushuo
  582. }
  583. // SetNillableSopRun sets the "sop_run" field if the given value is not nil.
  584. func (ushuo *UsageStatisticHourUpdateOne) SetNillableSopRun(u *uint64) *UsageStatisticHourUpdateOne {
  585. if u != nil {
  586. ushuo.SetSopRun(*u)
  587. }
  588. return ushuo
  589. }
  590. // AddSopRun adds u to the "sop_run" field.
  591. func (ushuo *UsageStatisticHourUpdateOne) AddSopRun(u int64) *UsageStatisticHourUpdateOne {
  592. ushuo.mutation.AddSopRun(u)
  593. return ushuo
  594. }
  595. // SetTotalFriend sets the "total_friend" field.
  596. func (ushuo *UsageStatisticHourUpdateOne) SetTotalFriend(u uint64) *UsageStatisticHourUpdateOne {
  597. ushuo.mutation.ResetTotalFriend()
  598. ushuo.mutation.SetTotalFriend(u)
  599. return ushuo
  600. }
  601. // SetNillableTotalFriend sets the "total_friend" field if the given value is not nil.
  602. func (ushuo *UsageStatisticHourUpdateOne) SetNillableTotalFriend(u *uint64) *UsageStatisticHourUpdateOne {
  603. if u != nil {
  604. ushuo.SetTotalFriend(*u)
  605. }
  606. return ushuo
  607. }
  608. // AddTotalFriend adds u to the "total_friend" field.
  609. func (ushuo *UsageStatisticHourUpdateOne) AddTotalFriend(u int64) *UsageStatisticHourUpdateOne {
  610. ushuo.mutation.AddTotalFriend(u)
  611. return ushuo
  612. }
  613. // SetTotalGroup sets the "total_group" field.
  614. func (ushuo *UsageStatisticHourUpdateOne) SetTotalGroup(u uint64) *UsageStatisticHourUpdateOne {
  615. ushuo.mutation.ResetTotalGroup()
  616. ushuo.mutation.SetTotalGroup(u)
  617. return ushuo
  618. }
  619. // SetNillableTotalGroup sets the "total_group" field if the given value is not nil.
  620. func (ushuo *UsageStatisticHourUpdateOne) SetNillableTotalGroup(u *uint64) *UsageStatisticHourUpdateOne {
  621. if u != nil {
  622. ushuo.SetTotalGroup(*u)
  623. }
  624. return ushuo
  625. }
  626. // AddTotalGroup adds u to the "total_group" field.
  627. func (ushuo *UsageStatisticHourUpdateOne) AddTotalGroup(u int64) *UsageStatisticHourUpdateOne {
  628. ushuo.mutation.AddTotalGroup(u)
  629. return ushuo
  630. }
  631. // SetAccountBalance sets the "account_balance" field.
  632. func (ushuo *UsageStatisticHourUpdateOne) SetAccountBalance(u uint64) *UsageStatisticHourUpdateOne {
  633. ushuo.mutation.ResetAccountBalance()
  634. ushuo.mutation.SetAccountBalance(u)
  635. return ushuo
  636. }
  637. // SetNillableAccountBalance sets the "account_balance" field if the given value is not nil.
  638. func (ushuo *UsageStatisticHourUpdateOne) SetNillableAccountBalance(u *uint64) *UsageStatisticHourUpdateOne {
  639. if u != nil {
  640. ushuo.SetAccountBalance(*u)
  641. }
  642. return ushuo
  643. }
  644. // AddAccountBalance adds u to the "account_balance" field.
  645. func (ushuo *UsageStatisticHourUpdateOne) AddAccountBalance(u int64) *UsageStatisticHourUpdateOne {
  646. ushuo.mutation.AddAccountBalance(u)
  647. return ushuo
  648. }
  649. // SetConsumeToken sets the "consume_token" field.
  650. func (ushuo *UsageStatisticHourUpdateOne) SetConsumeToken(u uint64) *UsageStatisticHourUpdateOne {
  651. ushuo.mutation.ResetConsumeToken()
  652. ushuo.mutation.SetConsumeToken(u)
  653. return ushuo
  654. }
  655. // SetNillableConsumeToken sets the "consume_token" field if the given value is not nil.
  656. func (ushuo *UsageStatisticHourUpdateOne) SetNillableConsumeToken(u *uint64) *UsageStatisticHourUpdateOne {
  657. if u != nil {
  658. ushuo.SetConsumeToken(*u)
  659. }
  660. return ushuo
  661. }
  662. // AddConsumeToken adds u to the "consume_token" field.
  663. func (ushuo *UsageStatisticHourUpdateOne) AddConsumeToken(u int64) *UsageStatisticHourUpdateOne {
  664. ushuo.mutation.AddConsumeToken(u)
  665. return ushuo
  666. }
  667. // SetActiveUser sets the "active_user" field.
  668. func (ushuo *UsageStatisticHourUpdateOne) SetActiveUser(u uint64) *UsageStatisticHourUpdateOne {
  669. ushuo.mutation.ResetActiveUser()
  670. ushuo.mutation.SetActiveUser(u)
  671. return ushuo
  672. }
  673. // SetNillableActiveUser sets the "active_user" field if the given value is not nil.
  674. func (ushuo *UsageStatisticHourUpdateOne) SetNillableActiveUser(u *uint64) *UsageStatisticHourUpdateOne {
  675. if u != nil {
  676. ushuo.SetActiveUser(*u)
  677. }
  678. return ushuo
  679. }
  680. // AddActiveUser adds u to the "active_user" field.
  681. func (ushuo *UsageStatisticHourUpdateOne) AddActiveUser(u int64) *UsageStatisticHourUpdateOne {
  682. ushuo.mutation.AddActiveUser(u)
  683. return ushuo
  684. }
  685. // SetNewUser sets the "new_user" field.
  686. func (ushuo *UsageStatisticHourUpdateOne) SetNewUser(i int64) *UsageStatisticHourUpdateOne {
  687. ushuo.mutation.ResetNewUser()
  688. ushuo.mutation.SetNewUser(i)
  689. return ushuo
  690. }
  691. // SetNillableNewUser sets the "new_user" field if the given value is not nil.
  692. func (ushuo *UsageStatisticHourUpdateOne) SetNillableNewUser(i *int64) *UsageStatisticHourUpdateOne {
  693. if i != nil {
  694. ushuo.SetNewUser(*i)
  695. }
  696. return ushuo
  697. }
  698. // AddNewUser adds i to the "new_user" field.
  699. func (ushuo *UsageStatisticHourUpdateOne) AddNewUser(i int64) *UsageStatisticHourUpdateOne {
  700. ushuo.mutation.AddNewUser(i)
  701. return ushuo
  702. }
  703. // Mutation returns the UsageStatisticHourMutation object of the builder.
  704. func (ushuo *UsageStatisticHourUpdateOne) Mutation() *UsageStatisticHourMutation {
  705. return ushuo.mutation
  706. }
  707. // Where appends a list predicates to the UsageStatisticHourUpdate builder.
  708. func (ushuo *UsageStatisticHourUpdateOne) Where(ps ...predicate.UsageStatisticHour) *UsageStatisticHourUpdateOne {
  709. ushuo.mutation.Where(ps...)
  710. return ushuo
  711. }
  712. // Select allows selecting one or more fields (columns) of the returned entity.
  713. // The default is selecting all fields defined in the entity schema.
  714. func (ushuo *UsageStatisticHourUpdateOne) Select(field string, fields ...string) *UsageStatisticHourUpdateOne {
  715. ushuo.fields = append([]string{field}, fields...)
  716. return ushuo
  717. }
  718. // Save executes the query and returns the updated UsageStatisticHour entity.
  719. func (ushuo *UsageStatisticHourUpdateOne) Save(ctx context.Context) (*UsageStatisticHour, error) {
  720. if err := ushuo.defaults(); err != nil {
  721. return nil, err
  722. }
  723. return withHooks(ctx, ushuo.sqlSave, ushuo.mutation, ushuo.hooks)
  724. }
  725. // SaveX is like Save, but panics if an error occurs.
  726. func (ushuo *UsageStatisticHourUpdateOne) SaveX(ctx context.Context) *UsageStatisticHour {
  727. node, err := ushuo.Save(ctx)
  728. if err != nil {
  729. panic(err)
  730. }
  731. return node
  732. }
  733. // Exec executes the query on the entity.
  734. func (ushuo *UsageStatisticHourUpdateOne) Exec(ctx context.Context) error {
  735. _, err := ushuo.Save(ctx)
  736. return err
  737. }
  738. // ExecX is like Exec, but panics if an error occurs.
  739. func (ushuo *UsageStatisticHourUpdateOne) ExecX(ctx context.Context) {
  740. if err := ushuo.Exec(ctx); err != nil {
  741. panic(err)
  742. }
  743. }
  744. // defaults sets the default values of the builder before save.
  745. func (ushuo *UsageStatisticHourUpdateOne) defaults() error {
  746. if _, ok := ushuo.mutation.UpdatedAt(); !ok {
  747. if usagestatistichour.UpdateDefaultUpdatedAt == nil {
  748. return fmt.Errorf("ent: uninitialized usagestatistichour.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  749. }
  750. v := usagestatistichour.UpdateDefaultUpdatedAt()
  751. ushuo.mutation.SetUpdatedAt(v)
  752. }
  753. return nil
  754. }
  755. func (ushuo *UsageStatisticHourUpdateOne) sqlSave(ctx context.Context) (_node *UsageStatisticHour, err error) {
  756. _spec := sqlgraph.NewUpdateSpec(usagestatistichour.Table, usagestatistichour.Columns, sqlgraph.NewFieldSpec(usagestatistichour.FieldID, field.TypeUint64))
  757. id, ok := ushuo.mutation.ID()
  758. if !ok {
  759. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "UsageStatisticHour.id" for update`)}
  760. }
  761. _spec.Node.ID.Value = id
  762. if fields := ushuo.fields; len(fields) > 0 {
  763. _spec.Node.Columns = make([]string, 0, len(fields))
  764. _spec.Node.Columns = append(_spec.Node.Columns, usagestatistichour.FieldID)
  765. for _, f := range fields {
  766. if !usagestatistichour.ValidColumn(f) {
  767. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  768. }
  769. if f != usagestatistichour.FieldID {
  770. _spec.Node.Columns = append(_spec.Node.Columns, f)
  771. }
  772. }
  773. }
  774. if ps := ushuo.mutation.predicates; len(ps) > 0 {
  775. _spec.Predicate = func(selector *sql.Selector) {
  776. for i := range ps {
  777. ps[i](selector)
  778. }
  779. }
  780. }
  781. if value, ok := ushuo.mutation.UpdatedAt(); ok {
  782. _spec.SetField(usagestatistichour.FieldUpdatedAt, field.TypeTime, value)
  783. }
  784. if value, ok := ushuo.mutation.Status(); ok {
  785. _spec.SetField(usagestatistichour.FieldStatus, field.TypeUint8, value)
  786. }
  787. if value, ok := ushuo.mutation.AddedStatus(); ok {
  788. _spec.AddField(usagestatistichour.FieldStatus, field.TypeUint8, value)
  789. }
  790. if ushuo.mutation.StatusCleared() {
  791. _spec.ClearField(usagestatistichour.FieldStatus, field.TypeUint8)
  792. }
  793. if value, ok := ushuo.mutation.DeletedAt(); ok {
  794. _spec.SetField(usagestatistichour.FieldDeletedAt, field.TypeTime, value)
  795. }
  796. if ushuo.mutation.DeletedAtCleared() {
  797. _spec.ClearField(usagestatistichour.FieldDeletedAt, field.TypeTime)
  798. }
  799. if value, ok := ushuo.mutation.Addtime(); ok {
  800. _spec.SetField(usagestatistichour.FieldAddtime, field.TypeUint64, value)
  801. }
  802. if value, ok := ushuo.mutation.AddedAddtime(); ok {
  803. _spec.AddField(usagestatistichour.FieldAddtime, field.TypeUint64, value)
  804. }
  805. if value, ok := ushuo.mutation.GetType(); ok {
  806. _spec.SetField(usagestatistichour.FieldType, field.TypeInt, value)
  807. }
  808. if value, ok := ushuo.mutation.AddedType(); ok {
  809. _spec.AddField(usagestatistichour.FieldType, field.TypeInt, value)
  810. }
  811. if value, ok := ushuo.mutation.BotID(); ok {
  812. _spec.SetField(usagestatistichour.FieldBotID, field.TypeString, value)
  813. }
  814. if value, ok := ushuo.mutation.OrganizationID(); ok {
  815. _spec.SetField(usagestatistichour.FieldOrganizationID, field.TypeUint64, value)
  816. }
  817. if value, ok := ushuo.mutation.AddedOrganizationID(); ok {
  818. _spec.AddField(usagestatistichour.FieldOrganizationID, field.TypeUint64, value)
  819. }
  820. if ushuo.mutation.OrganizationIDCleared() {
  821. _spec.ClearField(usagestatistichour.FieldOrganizationID, field.TypeUint64)
  822. }
  823. if value, ok := ushuo.mutation.AiResponse(); ok {
  824. _spec.SetField(usagestatistichour.FieldAiResponse, field.TypeUint64, value)
  825. }
  826. if value, ok := ushuo.mutation.AddedAiResponse(); ok {
  827. _spec.AddField(usagestatistichour.FieldAiResponse, field.TypeUint64, value)
  828. }
  829. if value, ok := ushuo.mutation.SopRun(); ok {
  830. _spec.SetField(usagestatistichour.FieldSopRun, field.TypeUint64, value)
  831. }
  832. if value, ok := ushuo.mutation.AddedSopRun(); ok {
  833. _spec.AddField(usagestatistichour.FieldSopRun, field.TypeUint64, value)
  834. }
  835. if value, ok := ushuo.mutation.TotalFriend(); ok {
  836. _spec.SetField(usagestatistichour.FieldTotalFriend, field.TypeUint64, value)
  837. }
  838. if value, ok := ushuo.mutation.AddedTotalFriend(); ok {
  839. _spec.AddField(usagestatistichour.FieldTotalFriend, field.TypeUint64, value)
  840. }
  841. if value, ok := ushuo.mutation.TotalGroup(); ok {
  842. _spec.SetField(usagestatistichour.FieldTotalGroup, field.TypeUint64, value)
  843. }
  844. if value, ok := ushuo.mutation.AddedTotalGroup(); ok {
  845. _spec.AddField(usagestatistichour.FieldTotalGroup, field.TypeUint64, value)
  846. }
  847. if value, ok := ushuo.mutation.AccountBalance(); ok {
  848. _spec.SetField(usagestatistichour.FieldAccountBalance, field.TypeUint64, value)
  849. }
  850. if value, ok := ushuo.mutation.AddedAccountBalance(); ok {
  851. _spec.AddField(usagestatistichour.FieldAccountBalance, field.TypeUint64, value)
  852. }
  853. if value, ok := ushuo.mutation.ConsumeToken(); ok {
  854. _spec.SetField(usagestatistichour.FieldConsumeToken, field.TypeUint64, value)
  855. }
  856. if value, ok := ushuo.mutation.AddedConsumeToken(); ok {
  857. _spec.AddField(usagestatistichour.FieldConsumeToken, field.TypeUint64, value)
  858. }
  859. if value, ok := ushuo.mutation.ActiveUser(); ok {
  860. _spec.SetField(usagestatistichour.FieldActiveUser, field.TypeUint64, value)
  861. }
  862. if value, ok := ushuo.mutation.AddedActiveUser(); ok {
  863. _spec.AddField(usagestatistichour.FieldActiveUser, field.TypeUint64, value)
  864. }
  865. if value, ok := ushuo.mutation.NewUser(); ok {
  866. _spec.SetField(usagestatistichour.FieldNewUser, field.TypeInt64, value)
  867. }
  868. if value, ok := ushuo.mutation.AddedNewUser(); ok {
  869. _spec.AddField(usagestatistichour.FieldNewUser, field.TypeInt64, value)
  870. }
  871. _node = &UsageStatisticHour{config: ushuo.config}
  872. _spec.Assign = _node.assignValues
  873. _spec.ScanValues = _node.scanValues
  874. if err = sqlgraph.UpdateNode(ctx, ushuo.driver, _spec); err != nil {
  875. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  876. err = &NotFoundError{usagestatistichour.Label}
  877. } else if sqlgraph.IsConstraintError(err) {
  878. err = &ConstraintError{msg: err.Error(), wrap: err}
  879. }
  880. return nil, err
  881. }
  882. ushuo.mutation.done = true
  883. return _node, nil
  884. }