batchmsg_update.go 28 KB

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