where.go 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  1. // Code generated by ent, DO NOT EDIT.
  2. package batchmsg
  3. import (
  4. "time"
  5. "wechat-api/ent/predicate"
  6. "entgo.io/ent/dialect/sql"
  7. )
  8. // ID filters vertices based on their ID field.
  9. func ID(id uint64) predicate.BatchMsg {
  10. return predicate.BatchMsg(sql.FieldEQ(FieldID, id))
  11. }
  12. // IDEQ applies the EQ predicate on the ID field.
  13. func IDEQ(id uint64) predicate.BatchMsg {
  14. return predicate.BatchMsg(sql.FieldEQ(FieldID, id))
  15. }
  16. // IDNEQ applies the NEQ predicate on the ID field.
  17. func IDNEQ(id uint64) predicate.BatchMsg {
  18. return predicate.BatchMsg(sql.FieldNEQ(FieldID, id))
  19. }
  20. // IDIn applies the In predicate on the ID field.
  21. func IDIn(ids ...uint64) predicate.BatchMsg {
  22. return predicate.BatchMsg(sql.FieldIn(FieldID, ids...))
  23. }
  24. // IDNotIn applies the NotIn predicate on the ID field.
  25. func IDNotIn(ids ...uint64) predicate.BatchMsg {
  26. return predicate.BatchMsg(sql.FieldNotIn(FieldID, ids...))
  27. }
  28. // IDGT applies the GT predicate on the ID field.
  29. func IDGT(id uint64) predicate.BatchMsg {
  30. return predicate.BatchMsg(sql.FieldGT(FieldID, id))
  31. }
  32. // IDGTE applies the GTE predicate on the ID field.
  33. func IDGTE(id uint64) predicate.BatchMsg {
  34. return predicate.BatchMsg(sql.FieldGTE(FieldID, id))
  35. }
  36. // IDLT applies the LT predicate on the ID field.
  37. func IDLT(id uint64) predicate.BatchMsg {
  38. return predicate.BatchMsg(sql.FieldLT(FieldID, id))
  39. }
  40. // IDLTE applies the LTE predicate on the ID field.
  41. func IDLTE(id uint64) predicate.BatchMsg {
  42. return predicate.BatchMsg(sql.FieldLTE(FieldID, id))
  43. }
  44. // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
  45. func CreatedAt(v time.Time) predicate.BatchMsg {
  46. return predicate.BatchMsg(sql.FieldEQ(FieldCreatedAt, v))
  47. }
  48. // UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
  49. func UpdatedAt(v time.Time) predicate.BatchMsg {
  50. return predicate.BatchMsg(sql.FieldEQ(FieldUpdatedAt, v))
  51. }
  52. // DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
  53. func DeletedAt(v time.Time) predicate.BatchMsg {
  54. return predicate.BatchMsg(sql.FieldEQ(FieldDeletedAt, v))
  55. }
  56. // Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
  57. func Status(v uint8) predicate.BatchMsg {
  58. return predicate.BatchMsg(sql.FieldEQ(FieldStatus, v))
  59. }
  60. // BatchNo applies equality check predicate on the "batch_no" field. It's identical to BatchNoEQ.
  61. func BatchNo(v string) predicate.BatchMsg {
  62. return predicate.BatchMsg(sql.FieldEQ(FieldBatchNo, v))
  63. }
  64. // TaskName applies equality check predicate on the "task_name" field. It's identical to TaskNameEQ.
  65. func TaskName(v string) predicate.BatchMsg {
  66. return predicate.BatchMsg(sql.FieldEQ(FieldTaskName, v))
  67. }
  68. // Fromwxid applies equality check predicate on the "fromwxid" field. It's identical to FromwxidEQ.
  69. func Fromwxid(v string) predicate.BatchMsg {
  70. return predicate.BatchMsg(sql.FieldEQ(FieldFromwxid, v))
  71. }
  72. // Msg applies equality check predicate on the "msg" field. It's identical to MsgEQ.
  73. func Msg(v string) predicate.BatchMsg {
  74. return predicate.BatchMsg(sql.FieldEQ(FieldMsg, v))
  75. }
  76. // Tag applies equality check predicate on the "tag" field. It's identical to TagEQ.
  77. func Tag(v string) predicate.BatchMsg {
  78. return predicate.BatchMsg(sql.FieldEQ(FieldTag, v))
  79. }
  80. // Total applies equality check predicate on the "total" field. It's identical to TotalEQ.
  81. func Total(v int32) predicate.BatchMsg {
  82. return predicate.BatchMsg(sql.FieldEQ(FieldTotal, v))
  83. }
  84. // Success applies equality check predicate on the "success" field. It's identical to SuccessEQ.
  85. func Success(v int32) predicate.BatchMsg {
  86. return predicate.BatchMsg(sql.FieldEQ(FieldSuccess, v))
  87. }
  88. // Fail applies equality check predicate on the "fail" field. It's identical to FailEQ.
  89. func Fail(v int32) predicate.BatchMsg {
  90. return predicate.BatchMsg(sql.FieldEQ(FieldFail, v))
  91. }
  92. // StartTime applies equality check predicate on the "start_time" field. It's identical to StartTimeEQ.
  93. func StartTime(v time.Time) predicate.BatchMsg {
  94. return predicate.BatchMsg(sql.FieldEQ(FieldStartTime, v))
  95. }
  96. // StopTime applies equality check predicate on the "stop_time" field. It's identical to StopTimeEQ.
  97. func StopTime(v time.Time) predicate.BatchMsg {
  98. return predicate.BatchMsg(sql.FieldEQ(FieldStopTime, v))
  99. }
  100. // SendTime applies equality check predicate on the "send_time" field. It's identical to SendTimeEQ.
  101. func SendTime(v time.Time) predicate.BatchMsg {
  102. return predicate.BatchMsg(sql.FieldEQ(FieldSendTime, v))
  103. }
  104. // Type applies equality check predicate on the "type" field. It's identical to TypeEQ.
  105. func Type(v int32) predicate.BatchMsg {
  106. return predicate.BatchMsg(sql.FieldEQ(FieldType, v))
  107. }
  108. // CreatedAtEQ applies the EQ predicate on the "created_at" field.
  109. func CreatedAtEQ(v time.Time) predicate.BatchMsg {
  110. return predicate.BatchMsg(sql.FieldEQ(FieldCreatedAt, v))
  111. }
  112. // CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
  113. func CreatedAtNEQ(v time.Time) predicate.BatchMsg {
  114. return predicate.BatchMsg(sql.FieldNEQ(FieldCreatedAt, v))
  115. }
  116. // CreatedAtIn applies the In predicate on the "created_at" field.
  117. func CreatedAtIn(vs ...time.Time) predicate.BatchMsg {
  118. return predicate.BatchMsg(sql.FieldIn(FieldCreatedAt, vs...))
  119. }
  120. // CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
  121. func CreatedAtNotIn(vs ...time.Time) predicate.BatchMsg {
  122. return predicate.BatchMsg(sql.FieldNotIn(FieldCreatedAt, vs...))
  123. }
  124. // CreatedAtGT applies the GT predicate on the "created_at" field.
  125. func CreatedAtGT(v time.Time) predicate.BatchMsg {
  126. return predicate.BatchMsg(sql.FieldGT(FieldCreatedAt, v))
  127. }
  128. // CreatedAtGTE applies the GTE predicate on the "created_at" field.
  129. func CreatedAtGTE(v time.Time) predicate.BatchMsg {
  130. return predicate.BatchMsg(sql.FieldGTE(FieldCreatedAt, v))
  131. }
  132. // CreatedAtLT applies the LT predicate on the "created_at" field.
  133. func CreatedAtLT(v time.Time) predicate.BatchMsg {
  134. return predicate.BatchMsg(sql.FieldLT(FieldCreatedAt, v))
  135. }
  136. // CreatedAtLTE applies the LTE predicate on the "created_at" field.
  137. func CreatedAtLTE(v time.Time) predicate.BatchMsg {
  138. return predicate.BatchMsg(sql.FieldLTE(FieldCreatedAt, v))
  139. }
  140. // UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
  141. func UpdatedAtEQ(v time.Time) predicate.BatchMsg {
  142. return predicate.BatchMsg(sql.FieldEQ(FieldUpdatedAt, v))
  143. }
  144. // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
  145. func UpdatedAtNEQ(v time.Time) predicate.BatchMsg {
  146. return predicate.BatchMsg(sql.FieldNEQ(FieldUpdatedAt, v))
  147. }
  148. // UpdatedAtIn applies the In predicate on the "updated_at" field.
  149. func UpdatedAtIn(vs ...time.Time) predicate.BatchMsg {
  150. return predicate.BatchMsg(sql.FieldIn(FieldUpdatedAt, vs...))
  151. }
  152. // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
  153. func UpdatedAtNotIn(vs ...time.Time) predicate.BatchMsg {
  154. return predicate.BatchMsg(sql.FieldNotIn(FieldUpdatedAt, vs...))
  155. }
  156. // UpdatedAtGT applies the GT predicate on the "updated_at" field.
  157. func UpdatedAtGT(v time.Time) predicate.BatchMsg {
  158. return predicate.BatchMsg(sql.FieldGT(FieldUpdatedAt, v))
  159. }
  160. // UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
  161. func UpdatedAtGTE(v time.Time) predicate.BatchMsg {
  162. return predicate.BatchMsg(sql.FieldGTE(FieldUpdatedAt, v))
  163. }
  164. // UpdatedAtLT applies the LT predicate on the "updated_at" field.
  165. func UpdatedAtLT(v time.Time) predicate.BatchMsg {
  166. return predicate.BatchMsg(sql.FieldLT(FieldUpdatedAt, v))
  167. }
  168. // UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
  169. func UpdatedAtLTE(v time.Time) predicate.BatchMsg {
  170. return predicate.BatchMsg(sql.FieldLTE(FieldUpdatedAt, v))
  171. }
  172. // DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
  173. func DeletedAtEQ(v time.Time) predicate.BatchMsg {
  174. return predicate.BatchMsg(sql.FieldEQ(FieldDeletedAt, v))
  175. }
  176. // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
  177. func DeletedAtNEQ(v time.Time) predicate.BatchMsg {
  178. return predicate.BatchMsg(sql.FieldNEQ(FieldDeletedAt, v))
  179. }
  180. // DeletedAtIn applies the In predicate on the "deleted_at" field.
  181. func DeletedAtIn(vs ...time.Time) predicate.BatchMsg {
  182. return predicate.BatchMsg(sql.FieldIn(FieldDeletedAt, vs...))
  183. }
  184. // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
  185. func DeletedAtNotIn(vs ...time.Time) predicate.BatchMsg {
  186. return predicate.BatchMsg(sql.FieldNotIn(FieldDeletedAt, vs...))
  187. }
  188. // DeletedAtGT applies the GT predicate on the "deleted_at" field.
  189. func DeletedAtGT(v time.Time) predicate.BatchMsg {
  190. return predicate.BatchMsg(sql.FieldGT(FieldDeletedAt, v))
  191. }
  192. // DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
  193. func DeletedAtGTE(v time.Time) predicate.BatchMsg {
  194. return predicate.BatchMsg(sql.FieldGTE(FieldDeletedAt, v))
  195. }
  196. // DeletedAtLT applies the LT predicate on the "deleted_at" field.
  197. func DeletedAtLT(v time.Time) predicate.BatchMsg {
  198. return predicate.BatchMsg(sql.FieldLT(FieldDeletedAt, v))
  199. }
  200. // DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
  201. func DeletedAtLTE(v time.Time) predicate.BatchMsg {
  202. return predicate.BatchMsg(sql.FieldLTE(FieldDeletedAt, v))
  203. }
  204. // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
  205. func DeletedAtIsNil() predicate.BatchMsg {
  206. return predicate.BatchMsg(sql.FieldIsNull(FieldDeletedAt))
  207. }
  208. // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
  209. func DeletedAtNotNil() predicate.BatchMsg {
  210. return predicate.BatchMsg(sql.FieldNotNull(FieldDeletedAt))
  211. }
  212. // StatusEQ applies the EQ predicate on the "status" field.
  213. func StatusEQ(v uint8) predicate.BatchMsg {
  214. return predicate.BatchMsg(sql.FieldEQ(FieldStatus, v))
  215. }
  216. // StatusNEQ applies the NEQ predicate on the "status" field.
  217. func StatusNEQ(v uint8) predicate.BatchMsg {
  218. return predicate.BatchMsg(sql.FieldNEQ(FieldStatus, v))
  219. }
  220. // StatusIn applies the In predicate on the "status" field.
  221. func StatusIn(vs ...uint8) predicate.BatchMsg {
  222. return predicate.BatchMsg(sql.FieldIn(FieldStatus, vs...))
  223. }
  224. // StatusNotIn applies the NotIn predicate on the "status" field.
  225. func StatusNotIn(vs ...uint8) predicate.BatchMsg {
  226. return predicate.BatchMsg(sql.FieldNotIn(FieldStatus, vs...))
  227. }
  228. // StatusGT applies the GT predicate on the "status" field.
  229. func StatusGT(v uint8) predicate.BatchMsg {
  230. return predicate.BatchMsg(sql.FieldGT(FieldStatus, v))
  231. }
  232. // StatusGTE applies the GTE predicate on the "status" field.
  233. func StatusGTE(v uint8) predicate.BatchMsg {
  234. return predicate.BatchMsg(sql.FieldGTE(FieldStatus, v))
  235. }
  236. // StatusLT applies the LT predicate on the "status" field.
  237. func StatusLT(v uint8) predicate.BatchMsg {
  238. return predicate.BatchMsg(sql.FieldLT(FieldStatus, v))
  239. }
  240. // StatusLTE applies the LTE predicate on the "status" field.
  241. func StatusLTE(v uint8) predicate.BatchMsg {
  242. return predicate.BatchMsg(sql.FieldLTE(FieldStatus, v))
  243. }
  244. // StatusIsNil applies the IsNil predicate on the "status" field.
  245. func StatusIsNil() predicate.BatchMsg {
  246. return predicate.BatchMsg(sql.FieldIsNull(FieldStatus))
  247. }
  248. // StatusNotNil applies the NotNil predicate on the "status" field.
  249. func StatusNotNil() predicate.BatchMsg {
  250. return predicate.BatchMsg(sql.FieldNotNull(FieldStatus))
  251. }
  252. // BatchNoEQ applies the EQ predicate on the "batch_no" field.
  253. func BatchNoEQ(v string) predicate.BatchMsg {
  254. return predicate.BatchMsg(sql.FieldEQ(FieldBatchNo, v))
  255. }
  256. // BatchNoNEQ applies the NEQ predicate on the "batch_no" field.
  257. func BatchNoNEQ(v string) predicate.BatchMsg {
  258. return predicate.BatchMsg(sql.FieldNEQ(FieldBatchNo, v))
  259. }
  260. // BatchNoIn applies the In predicate on the "batch_no" field.
  261. func BatchNoIn(vs ...string) predicate.BatchMsg {
  262. return predicate.BatchMsg(sql.FieldIn(FieldBatchNo, vs...))
  263. }
  264. // BatchNoNotIn applies the NotIn predicate on the "batch_no" field.
  265. func BatchNoNotIn(vs ...string) predicate.BatchMsg {
  266. return predicate.BatchMsg(sql.FieldNotIn(FieldBatchNo, vs...))
  267. }
  268. // BatchNoGT applies the GT predicate on the "batch_no" field.
  269. func BatchNoGT(v string) predicate.BatchMsg {
  270. return predicate.BatchMsg(sql.FieldGT(FieldBatchNo, v))
  271. }
  272. // BatchNoGTE applies the GTE predicate on the "batch_no" field.
  273. func BatchNoGTE(v string) predicate.BatchMsg {
  274. return predicate.BatchMsg(sql.FieldGTE(FieldBatchNo, v))
  275. }
  276. // BatchNoLT applies the LT predicate on the "batch_no" field.
  277. func BatchNoLT(v string) predicate.BatchMsg {
  278. return predicate.BatchMsg(sql.FieldLT(FieldBatchNo, v))
  279. }
  280. // BatchNoLTE applies the LTE predicate on the "batch_no" field.
  281. func BatchNoLTE(v string) predicate.BatchMsg {
  282. return predicate.BatchMsg(sql.FieldLTE(FieldBatchNo, v))
  283. }
  284. // BatchNoContains applies the Contains predicate on the "batch_no" field.
  285. func BatchNoContains(v string) predicate.BatchMsg {
  286. return predicate.BatchMsg(sql.FieldContains(FieldBatchNo, v))
  287. }
  288. // BatchNoHasPrefix applies the HasPrefix predicate on the "batch_no" field.
  289. func BatchNoHasPrefix(v string) predicate.BatchMsg {
  290. return predicate.BatchMsg(sql.FieldHasPrefix(FieldBatchNo, v))
  291. }
  292. // BatchNoHasSuffix applies the HasSuffix predicate on the "batch_no" field.
  293. func BatchNoHasSuffix(v string) predicate.BatchMsg {
  294. return predicate.BatchMsg(sql.FieldHasSuffix(FieldBatchNo, v))
  295. }
  296. // BatchNoIsNil applies the IsNil predicate on the "batch_no" field.
  297. func BatchNoIsNil() predicate.BatchMsg {
  298. return predicate.BatchMsg(sql.FieldIsNull(FieldBatchNo))
  299. }
  300. // BatchNoNotNil applies the NotNil predicate on the "batch_no" field.
  301. func BatchNoNotNil() predicate.BatchMsg {
  302. return predicate.BatchMsg(sql.FieldNotNull(FieldBatchNo))
  303. }
  304. // BatchNoEqualFold applies the EqualFold predicate on the "batch_no" field.
  305. func BatchNoEqualFold(v string) predicate.BatchMsg {
  306. return predicate.BatchMsg(sql.FieldEqualFold(FieldBatchNo, v))
  307. }
  308. // BatchNoContainsFold applies the ContainsFold predicate on the "batch_no" field.
  309. func BatchNoContainsFold(v string) predicate.BatchMsg {
  310. return predicate.BatchMsg(sql.FieldContainsFold(FieldBatchNo, v))
  311. }
  312. // TaskNameEQ applies the EQ predicate on the "task_name" field.
  313. func TaskNameEQ(v string) predicate.BatchMsg {
  314. return predicate.BatchMsg(sql.FieldEQ(FieldTaskName, v))
  315. }
  316. // TaskNameNEQ applies the NEQ predicate on the "task_name" field.
  317. func TaskNameNEQ(v string) predicate.BatchMsg {
  318. return predicate.BatchMsg(sql.FieldNEQ(FieldTaskName, v))
  319. }
  320. // TaskNameIn applies the In predicate on the "task_name" field.
  321. func TaskNameIn(vs ...string) predicate.BatchMsg {
  322. return predicate.BatchMsg(sql.FieldIn(FieldTaskName, vs...))
  323. }
  324. // TaskNameNotIn applies the NotIn predicate on the "task_name" field.
  325. func TaskNameNotIn(vs ...string) predicate.BatchMsg {
  326. return predicate.BatchMsg(sql.FieldNotIn(FieldTaskName, vs...))
  327. }
  328. // TaskNameGT applies the GT predicate on the "task_name" field.
  329. func TaskNameGT(v string) predicate.BatchMsg {
  330. return predicate.BatchMsg(sql.FieldGT(FieldTaskName, v))
  331. }
  332. // TaskNameGTE applies the GTE predicate on the "task_name" field.
  333. func TaskNameGTE(v string) predicate.BatchMsg {
  334. return predicate.BatchMsg(sql.FieldGTE(FieldTaskName, v))
  335. }
  336. // TaskNameLT applies the LT predicate on the "task_name" field.
  337. func TaskNameLT(v string) predicate.BatchMsg {
  338. return predicate.BatchMsg(sql.FieldLT(FieldTaskName, v))
  339. }
  340. // TaskNameLTE applies the LTE predicate on the "task_name" field.
  341. func TaskNameLTE(v string) predicate.BatchMsg {
  342. return predicate.BatchMsg(sql.FieldLTE(FieldTaskName, v))
  343. }
  344. // TaskNameContains applies the Contains predicate on the "task_name" field.
  345. func TaskNameContains(v string) predicate.BatchMsg {
  346. return predicate.BatchMsg(sql.FieldContains(FieldTaskName, v))
  347. }
  348. // TaskNameHasPrefix applies the HasPrefix predicate on the "task_name" field.
  349. func TaskNameHasPrefix(v string) predicate.BatchMsg {
  350. return predicate.BatchMsg(sql.FieldHasPrefix(FieldTaskName, v))
  351. }
  352. // TaskNameHasSuffix applies the HasSuffix predicate on the "task_name" field.
  353. func TaskNameHasSuffix(v string) predicate.BatchMsg {
  354. return predicate.BatchMsg(sql.FieldHasSuffix(FieldTaskName, v))
  355. }
  356. // TaskNameIsNil applies the IsNil predicate on the "task_name" field.
  357. func TaskNameIsNil() predicate.BatchMsg {
  358. return predicate.BatchMsg(sql.FieldIsNull(FieldTaskName))
  359. }
  360. // TaskNameNotNil applies the NotNil predicate on the "task_name" field.
  361. func TaskNameNotNil() predicate.BatchMsg {
  362. return predicate.BatchMsg(sql.FieldNotNull(FieldTaskName))
  363. }
  364. // TaskNameEqualFold applies the EqualFold predicate on the "task_name" field.
  365. func TaskNameEqualFold(v string) predicate.BatchMsg {
  366. return predicate.BatchMsg(sql.FieldEqualFold(FieldTaskName, v))
  367. }
  368. // TaskNameContainsFold applies the ContainsFold predicate on the "task_name" field.
  369. func TaskNameContainsFold(v string) predicate.BatchMsg {
  370. return predicate.BatchMsg(sql.FieldContainsFold(FieldTaskName, v))
  371. }
  372. // FromwxidEQ applies the EQ predicate on the "fromwxid" field.
  373. func FromwxidEQ(v string) predicate.BatchMsg {
  374. return predicate.BatchMsg(sql.FieldEQ(FieldFromwxid, v))
  375. }
  376. // FromwxidNEQ applies the NEQ predicate on the "fromwxid" field.
  377. func FromwxidNEQ(v string) predicate.BatchMsg {
  378. return predicate.BatchMsg(sql.FieldNEQ(FieldFromwxid, v))
  379. }
  380. // FromwxidIn applies the In predicate on the "fromwxid" field.
  381. func FromwxidIn(vs ...string) predicate.BatchMsg {
  382. return predicate.BatchMsg(sql.FieldIn(FieldFromwxid, vs...))
  383. }
  384. // FromwxidNotIn applies the NotIn predicate on the "fromwxid" field.
  385. func FromwxidNotIn(vs ...string) predicate.BatchMsg {
  386. return predicate.BatchMsg(sql.FieldNotIn(FieldFromwxid, vs...))
  387. }
  388. // FromwxidGT applies the GT predicate on the "fromwxid" field.
  389. func FromwxidGT(v string) predicate.BatchMsg {
  390. return predicate.BatchMsg(sql.FieldGT(FieldFromwxid, v))
  391. }
  392. // FromwxidGTE applies the GTE predicate on the "fromwxid" field.
  393. func FromwxidGTE(v string) predicate.BatchMsg {
  394. return predicate.BatchMsg(sql.FieldGTE(FieldFromwxid, v))
  395. }
  396. // FromwxidLT applies the LT predicate on the "fromwxid" field.
  397. func FromwxidLT(v string) predicate.BatchMsg {
  398. return predicate.BatchMsg(sql.FieldLT(FieldFromwxid, v))
  399. }
  400. // FromwxidLTE applies the LTE predicate on the "fromwxid" field.
  401. func FromwxidLTE(v string) predicate.BatchMsg {
  402. return predicate.BatchMsg(sql.FieldLTE(FieldFromwxid, v))
  403. }
  404. // FromwxidContains applies the Contains predicate on the "fromwxid" field.
  405. func FromwxidContains(v string) predicate.BatchMsg {
  406. return predicate.BatchMsg(sql.FieldContains(FieldFromwxid, v))
  407. }
  408. // FromwxidHasPrefix applies the HasPrefix predicate on the "fromwxid" field.
  409. func FromwxidHasPrefix(v string) predicate.BatchMsg {
  410. return predicate.BatchMsg(sql.FieldHasPrefix(FieldFromwxid, v))
  411. }
  412. // FromwxidHasSuffix applies the HasSuffix predicate on the "fromwxid" field.
  413. func FromwxidHasSuffix(v string) predicate.BatchMsg {
  414. return predicate.BatchMsg(sql.FieldHasSuffix(FieldFromwxid, v))
  415. }
  416. // FromwxidIsNil applies the IsNil predicate on the "fromwxid" field.
  417. func FromwxidIsNil() predicate.BatchMsg {
  418. return predicate.BatchMsg(sql.FieldIsNull(FieldFromwxid))
  419. }
  420. // FromwxidNotNil applies the NotNil predicate on the "fromwxid" field.
  421. func FromwxidNotNil() predicate.BatchMsg {
  422. return predicate.BatchMsg(sql.FieldNotNull(FieldFromwxid))
  423. }
  424. // FromwxidEqualFold applies the EqualFold predicate on the "fromwxid" field.
  425. func FromwxidEqualFold(v string) predicate.BatchMsg {
  426. return predicate.BatchMsg(sql.FieldEqualFold(FieldFromwxid, v))
  427. }
  428. // FromwxidContainsFold applies the ContainsFold predicate on the "fromwxid" field.
  429. func FromwxidContainsFold(v string) predicate.BatchMsg {
  430. return predicate.BatchMsg(sql.FieldContainsFold(FieldFromwxid, v))
  431. }
  432. // MsgEQ applies the EQ predicate on the "msg" field.
  433. func MsgEQ(v string) predicate.BatchMsg {
  434. return predicate.BatchMsg(sql.FieldEQ(FieldMsg, v))
  435. }
  436. // MsgNEQ applies the NEQ predicate on the "msg" field.
  437. func MsgNEQ(v string) predicate.BatchMsg {
  438. return predicate.BatchMsg(sql.FieldNEQ(FieldMsg, v))
  439. }
  440. // MsgIn applies the In predicate on the "msg" field.
  441. func MsgIn(vs ...string) predicate.BatchMsg {
  442. return predicate.BatchMsg(sql.FieldIn(FieldMsg, vs...))
  443. }
  444. // MsgNotIn applies the NotIn predicate on the "msg" field.
  445. func MsgNotIn(vs ...string) predicate.BatchMsg {
  446. return predicate.BatchMsg(sql.FieldNotIn(FieldMsg, vs...))
  447. }
  448. // MsgGT applies the GT predicate on the "msg" field.
  449. func MsgGT(v string) predicate.BatchMsg {
  450. return predicate.BatchMsg(sql.FieldGT(FieldMsg, v))
  451. }
  452. // MsgGTE applies the GTE predicate on the "msg" field.
  453. func MsgGTE(v string) predicate.BatchMsg {
  454. return predicate.BatchMsg(sql.FieldGTE(FieldMsg, v))
  455. }
  456. // MsgLT applies the LT predicate on the "msg" field.
  457. func MsgLT(v string) predicate.BatchMsg {
  458. return predicate.BatchMsg(sql.FieldLT(FieldMsg, v))
  459. }
  460. // MsgLTE applies the LTE predicate on the "msg" field.
  461. func MsgLTE(v string) predicate.BatchMsg {
  462. return predicate.BatchMsg(sql.FieldLTE(FieldMsg, v))
  463. }
  464. // MsgContains applies the Contains predicate on the "msg" field.
  465. func MsgContains(v string) predicate.BatchMsg {
  466. return predicate.BatchMsg(sql.FieldContains(FieldMsg, v))
  467. }
  468. // MsgHasPrefix applies the HasPrefix predicate on the "msg" field.
  469. func MsgHasPrefix(v string) predicate.BatchMsg {
  470. return predicate.BatchMsg(sql.FieldHasPrefix(FieldMsg, v))
  471. }
  472. // MsgHasSuffix applies the HasSuffix predicate on the "msg" field.
  473. func MsgHasSuffix(v string) predicate.BatchMsg {
  474. return predicate.BatchMsg(sql.FieldHasSuffix(FieldMsg, v))
  475. }
  476. // MsgIsNil applies the IsNil predicate on the "msg" field.
  477. func MsgIsNil() predicate.BatchMsg {
  478. return predicate.BatchMsg(sql.FieldIsNull(FieldMsg))
  479. }
  480. // MsgNotNil applies the NotNil predicate on the "msg" field.
  481. func MsgNotNil() predicate.BatchMsg {
  482. return predicate.BatchMsg(sql.FieldNotNull(FieldMsg))
  483. }
  484. // MsgEqualFold applies the EqualFold predicate on the "msg" field.
  485. func MsgEqualFold(v string) predicate.BatchMsg {
  486. return predicate.BatchMsg(sql.FieldEqualFold(FieldMsg, v))
  487. }
  488. // MsgContainsFold applies the ContainsFold predicate on the "msg" field.
  489. func MsgContainsFold(v string) predicate.BatchMsg {
  490. return predicate.BatchMsg(sql.FieldContainsFold(FieldMsg, v))
  491. }
  492. // TagEQ applies the EQ predicate on the "tag" field.
  493. func TagEQ(v string) predicate.BatchMsg {
  494. return predicate.BatchMsg(sql.FieldEQ(FieldTag, v))
  495. }
  496. // TagNEQ applies the NEQ predicate on the "tag" field.
  497. func TagNEQ(v string) predicate.BatchMsg {
  498. return predicate.BatchMsg(sql.FieldNEQ(FieldTag, v))
  499. }
  500. // TagIn applies the In predicate on the "tag" field.
  501. func TagIn(vs ...string) predicate.BatchMsg {
  502. return predicate.BatchMsg(sql.FieldIn(FieldTag, vs...))
  503. }
  504. // TagNotIn applies the NotIn predicate on the "tag" field.
  505. func TagNotIn(vs ...string) predicate.BatchMsg {
  506. return predicate.BatchMsg(sql.FieldNotIn(FieldTag, vs...))
  507. }
  508. // TagGT applies the GT predicate on the "tag" field.
  509. func TagGT(v string) predicate.BatchMsg {
  510. return predicate.BatchMsg(sql.FieldGT(FieldTag, v))
  511. }
  512. // TagGTE applies the GTE predicate on the "tag" field.
  513. func TagGTE(v string) predicate.BatchMsg {
  514. return predicate.BatchMsg(sql.FieldGTE(FieldTag, v))
  515. }
  516. // TagLT applies the LT predicate on the "tag" field.
  517. func TagLT(v string) predicate.BatchMsg {
  518. return predicate.BatchMsg(sql.FieldLT(FieldTag, v))
  519. }
  520. // TagLTE applies the LTE predicate on the "tag" field.
  521. func TagLTE(v string) predicate.BatchMsg {
  522. return predicate.BatchMsg(sql.FieldLTE(FieldTag, v))
  523. }
  524. // TagContains applies the Contains predicate on the "tag" field.
  525. func TagContains(v string) predicate.BatchMsg {
  526. return predicate.BatchMsg(sql.FieldContains(FieldTag, v))
  527. }
  528. // TagHasPrefix applies the HasPrefix predicate on the "tag" field.
  529. func TagHasPrefix(v string) predicate.BatchMsg {
  530. return predicate.BatchMsg(sql.FieldHasPrefix(FieldTag, v))
  531. }
  532. // TagHasSuffix applies the HasSuffix predicate on the "tag" field.
  533. func TagHasSuffix(v string) predicate.BatchMsg {
  534. return predicate.BatchMsg(sql.FieldHasSuffix(FieldTag, v))
  535. }
  536. // TagIsNil applies the IsNil predicate on the "tag" field.
  537. func TagIsNil() predicate.BatchMsg {
  538. return predicate.BatchMsg(sql.FieldIsNull(FieldTag))
  539. }
  540. // TagNotNil applies the NotNil predicate on the "tag" field.
  541. func TagNotNil() predicate.BatchMsg {
  542. return predicate.BatchMsg(sql.FieldNotNull(FieldTag))
  543. }
  544. // TagEqualFold applies the EqualFold predicate on the "tag" field.
  545. func TagEqualFold(v string) predicate.BatchMsg {
  546. return predicate.BatchMsg(sql.FieldEqualFold(FieldTag, v))
  547. }
  548. // TagContainsFold applies the ContainsFold predicate on the "tag" field.
  549. func TagContainsFold(v string) predicate.BatchMsg {
  550. return predicate.BatchMsg(sql.FieldContainsFold(FieldTag, v))
  551. }
  552. // TotalEQ applies the EQ predicate on the "total" field.
  553. func TotalEQ(v int32) predicate.BatchMsg {
  554. return predicate.BatchMsg(sql.FieldEQ(FieldTotal, v))
  555. }
  556. // TotalNEQ applies the NEQ predicate on the "total" field.
  557. func TotalNEQ(v int32) predicate.BatchMsg {
  558. return predicate.BatchMsg(sql.FieldNEQ(FieldTotal, v))
  559. }
  560. // TotalIn applies the In predicate on the "total" field.
  561. func TotalIn(vs ...int32) predicate.BatchMsg {
  562. return predicate.BatchMsg(sql.FieldIn(FieldTotal, vs...))
  563. }
  564. // TotalNotIn applies the NotIn predicate on the "total" field.
  565. func TotalNotIn(vs ...int32) predicate.BatchMsg {
  566. return predicate.BatchMsg(sql.FieldNotIn(FieldTotal, vs...))
  567. }
  568. // TotalGT applies the GT predicate on the "total" field.
  569. func TotalGT(v int32) predicate.BatchMsg {
  570. return predicate.BatchMsg(sql.FieldGT(FieldTotal, v))
  571. }
  572. // TotalGTE applies the GTE predicate on the "total" field.
  573. func TotalGTE(v int32) predicate.BatchMsg {
  574. return predicate.BatchMsg(sql.FieldGTE(FieldTotal, v))
  575. }
  576. // TotalLT applies the LT predicate on the "total" field.
  577. func TotalLT(v int32) predicate.BatchMsg {
  578. return predicate.BatchMsg(sql.FieldLT(FieldTotal, v))
  579. }
  580. // TotalLTE applies the LTE predicate on the "total" field.
  581. func TotalLTE(v int32) predicate.BatchMsg {
  582. return predicate.BatchMsg(sql.FieldLTE(FieldTotal, v))
  583. }
  584. // TotalIsNil applies the IsNil predicate on the "total" field.
  585. func TotalIsNil() predicate.BatchMsg {
  586. return predicate.BatchMsg(sql.FieldIsNull(FieldTotal))
  587. }
  588. // TotalNotNil applies the NotNil predicate on the "total" field.
  589. func TotalNotNil() predicate.BatchMsg {
  590. return predicate.BatchMsg(sql.FieldNotNull(FieldTotal))
  591. }
  592. // SuccessEQ applies the EQ predicate on the "success" field.
  593. func SuccessEQ(v int32) predicate.BatchMsg {
  594. return predicate.BatchMsg(sql.FieldEQ(FieldSuccess, v))
  595. }
  596. // SuccessNEQ applies the NEQ predicate on the "success" field.
  597. func SuccessNEQ(v int32) predicate.BatchMsg {
  598. return predicate.BatchMsg(sql.FieldNEQ(FieldSuccess, v))
  599. }
  600. // SuccessIn applies the In predicate on the "success" field.
  601. func SuccessIn(vs ...int32) predicate.BatchMsg {
  602. return predicate.BatchMsg(sql.FieldIn(FieldSuccess, vs...))
  603. }
  604. // SuccessNotIn applies the NotIn predicate on the "success" field.
  605. func SuccessNotIn(vs ...int32) predicate.BatchMsg {
  606. return predicate.BatchMsg(sql.FieldNotIn(FieldSuccess, vs...))
  607. }
  608. // SuccessGT applies the GT predicate on the "success" field.
  609. func SuccessGT(v int32) predicate.BatchMsg {
  610. return predicate.BatchMsg(sql.FieldGT(FieldSuccess, v))
  611. }
  612. // SuccessGTE applies the GTE predicate on the "success" field.
  613. func SuccessGTE(v int32) predicate.BatchMsg {
  614. return predicate.BatchMsg(sql.FieldGTE(FieldSuccess, v))
  615. }
  616. // SuccessLT applies the LT predicate on the "success" field.
  617. func SuccessLT(v int32) predicate.BatchMsg {
  618. return predicate.BatchMsg(sql.FieldLT(FieldSuccess, v))
  619. }
  620. // SuccessLTE applies the LTE predicate on the "success" field.
  621. func SuccessLTE(v int32) predicate.BatchMsg {
  622. return predicate.BatchMsg(sql.FieldLTE(FieldSuccess, v))
  623. }
  624. // SuccessIsNil applies the IsNil predicate on the "success" field.
  625. func SuccessIsNil() predicate.BatchMsg {
  626. return predicate.BatchMsg(sql.FieldIsNull(FieldSuccess))
  627. }
  628. // SuccessNotNil applies the NotNil predicate on the "success" field.
  629. func SuccessNotNil() predicate.BatchMsg {
  630. return predicate.BatchMsg(sql.FieldNotNull(FieldSuccess))
  631. }
  632. // FailEQ applies the EQ predicate on the "fail" field.
  633. func FailEQ(v int32) predicate.BatchMsg {
  634. return predicate.BatchMsg(sql.FieldEQ(FieldFail, v))
  635. }
  636. // FailNEQ applies the NEQ predicate on the "fail" field.
  637. func FailNEQ(v int32) predicate.BatchMsg {
  638. return predicate.BatchMsg(sql.FieldNEQ(FieldFail, v))
  639. }
  640. // FailIn applies the In predicate on the "fail" field.
  641. func FailIn(vs ...int32) predicate.BatchMsg {
  642. return predicate.BatchMsg(sql.FieldIn(FieldFail, vs...))
  643. }
  644. // FailNotIn applies the NotIn predicate on the "fail" field.
  645. func FailNotIn(vs ...int32) predicate.BatchMsg {
  646. return predicate.BatchMsg(sql.FieldNotIn(FieldFail, vs...))
  647. }
  648. // FailGT applies the GT predicate on the "fail" field.
  649. func FailGT(v int32) predicate.BatchMsg {
  650. return predicate.BatchMsg(sql.FieldGT(FieldFail, v))
  651. }
  652. // FailGTE applies the GTE predicate on the "fail" field.
  653. func FailGTE(v int32) predicate.BatchMsg {
  654. return predicate.BatchMsg(sql.FieldGTE(FieldFail, v))
  655. }
  656. // FailLT applies the LT predicate on the "fail" field.
  657. func FailLT(v int32) predicate.BatchMsg {
  658. return predicate.BatchMsg(sql.FieldLT(FieldFail, v))
  659. }
  660. // FailLTE applies the LTE predicate on the "fail" field.
  661. func FailLTE(v int32) predicate.BatchMsg {
  662. return predicate.BatchMsg(sql.FieldLTE(FieldFail, v))
  663. }
  664. // FailIsNil applies the IsNil predicate on the "fail" field.
  665. func FailIsNil() predicate.BatchMsg {
  666. return predicate.BatchMsg(sql.FieldIsNull(FieldFail))
  667. }
  668. // FailNotNil applies the NotNil predicate on the "fail" field.
  669. func FailNotNil() predicate.BatchMsg {
  670. return predicate.BatchMsg(sql.FieldNotNull(FieldFail))
  671. }
  672. // StartTimeEQ applies the EQ predicate on the "start_time" field.
  673. func StartTimeEQ(v time.Time) predicate.BatchMsg {
  674. return predicate.BatchMsg(sql.FieldEQ(FieldStartTime, v))
  675. }
  676. // StartTimeNEQ applies the NEQ predicate on the "start_time" field.
  677. func StartTimeNEQ(v time.Time) predicate.BatchMsg {
  678. return predicate.BatchMsg(sql.FieldNEQ(FieldStartTime, v))
  679. }
  680. // StartTimeIn applies the In predicate on the "start_time" field.
  681. func StartTimeIn(vs ...time.Time) predicate.BatchMsg {
  682. return predicate.BatchMsg(sql.FieldIn(FieldStartTime, vs...))
  683. }
  684. // StartTimeNotIn applies the NotIn predicate on the "start_time" field.
  685. func StartTimeNotIn(vs ...time.Time) predicate.BatchMsg {
  686. return predicate.BatchMsg(sql.FieldNotIn(FieldStartTime, vs...))
  687. }
  688. // StartTimeGT applies the GT predicate on the "start_time" field.
  689. func StartTimeGT(v time.Time) predicate.BatchMsg {
  690. return predicate.BatchMsg(sql.FieldGT(FieldStartTime, v))
  691. }
  692. // StartTimeGTE applies the GTE predicate on the "start_time" field.
  693. func StartTimeGTE(v time.Time) predicate.BatchMsg {
  694. return predicate.BatchMsg(sql.FieldGTE(FieldStartTime, v))
  695. }
  696. // StartTimeLT applies the LT predicate on the "start_time" field.
  697. func StartTimeLT(v time.Time) predicate.BatchMsg {
  698. return predicate.BatchMsg(sql.FieldLT(FieldStartTime, v))
  699. }
  700. // StartTimeLTE applies the LTE predicate on the "start_time" field.
  701. func StartTimeLTE(v time.Time) predicate.BatchMsg {
  702. return predicate.BatchMsg(sql.FieldLTE(FieldStartTime, v))
  703. }
  704. // StartTimeIsNil applies the IsNil predicate on the "start_time" field.
  705. func StartTimeIsNil() predicate.BatchMsg {
  706. return predicate.BatchMsg(sql.FieldIsNull(FieldStartTime))
  707. }
  708. // StartTimeNotNil applies the NotNil predicate on the "start_time" field.
  709. func StartTimeNotNil() predicate.BatchMsg {
  710. return predicate.BatchMsg(sql.FieldNotNull(FieldStartTime))
  711. }
  712. // StopTimeEQ applies the EQ predicate on the "stop_time" field.
  713. func StopTimeEQ(v time.Time) predicate.BatchMsg {
  714. return predicate.BatchMsg(sql.FieldEQ(FieldStopTime, v))
  715. }
  716. // StopTimeNEQ applies the NEQ predicate on the "stop_time" field.
  717. func StopTimeNEQ(v time.Time) predicate.BatchMsg {
  718. return predicate.BatchMsg(sql.FieldNEQ(FieldStopTime, v))
  719. }
  720. // StopTimeIn applies the In predicate on the "stop_time" field.
  721. func StopTimeIn(vs ...time.Time) predicate.BatchMsg {
  722. return predicate.BatchMsg(sql.FieldIn(FieldStopTime, vs...))
  723. }
  724. // StopTimeNotIn applies the NotIn predicate on the "stop_time" field.
  725. func StopTimeNotIn(vs ...time.Time) predicate.BatchMsg {
  726. return predicate.BatchMsg(sql.FieldNotIn(FieldStopTime, vs...))
  727. }
  728. // StopTimeGT applies the GT predicate on the "stop_time" field.
  729. func StopTimeGT(v time.Time) predicate.BatchMsg {
  730. return predicate.BatchMsg(sql.FieldGT(FieldStopTime, v))
  731. }
  732. // StopTimeGTE applies the GTE predicate on the "stop_time" field.
  733. func StopTimeGTE(v time.Time) predicate.BatchMsg {
  734. return predicate.BatchMsg(sql.FieldGTE(FieldStopTime, v))
  735. }
  736. // StopTimeLT applies the LT predicate on the "stop_time" field.
  737. func StopTimeLT(v time.Time) predicate.BatchMsg {
  738. return predicate.BatchMsg(sql.FieldLT(FieldStopTime, v))
  739. }
  740. // StopTimeLTE applies the LTE predicate on the "stop_time" field.
  741. func StopTimeLTE(v time.Time) predicate.BatchMsg {
  742. return predicate.BatchMsg(sql.FieldLTE(FieldStopTime, v))
  743. }
  744. // StopTimeIsNil applies the IsNil predicate on the "stop_time" field.
  745. func StopTimeIsNil() predicate.BatchMsg {
  746. return predicate.BatchMsg(sql.FieldIsNull(FieldStopTime))
  747. }
  748. // StopTimeNotNil applies the NotNil predicate on the "stop_time" field.
  749. func StopTimeNotNil() predicate.BatchMsg {
  750. return predicate.BatchMsg(sql.FieldNotNull(FieldStopTime))
  751. }
  752. // SendTimeEQ applies the EQ predicate on the "send_time" field.
  753. func SendTimeEQ(v time.Time) predicate.BatchMsg {
  754. return predicate.BatchMsg(sql.FieldEQ(FieldSendTime, v))
  755. }
  756. // SendTimeNEQ applies the NEQ predicate on the "send_time" field.
  757. func SendTimeNEQ(v time.Time) predicate.BatchMsg {
  758. return predicate.BatchMsg(sql.FieldNEQ(FieldSendTime, v))
  759. }
  760. // SendTimeIn applies the In predicate on the "send_time" field.
  761. func SendTimeIn(vs ...time.Time) predicate.BatchMsg {
  762. return predicate.BatchMsg(sql.FieldIn(FieldSendTime, vs...))
  763. }
  764. // SendTimeNotIn applies the NotIn predicate on the "send_time" field.
  765. func SendTimeNotIn(vs ...time.Time) predicate.BatchMsg {
  766. return predicate.BatchMsg(sql.FieldNotIn(FieldSendTime, vs...))
  767. }
  768. // SendTimeGT applies the GT predicate on the "send_time" field.
  769. func SendTimeGT(v time.Time) predicate.BatchMsg {
  770. return predicate.BatchMsg(sql.FieldGT(FieldSendTime, v))
  771. }
  772. // SendTimeGTE applies the GTE predicate on the "send_time" field.
  773. func SendTimeGTE(v time.Time) predicate.BatchMsg {
  774. return predicate.BatchMsg(sql.FieldGTE(FieldSendTime, v))
  775. }
  776. // SendTimeLT applies the LT predicate on the "send_time" field.
  777. func SendTimeLT(v time.Time) predicate.BatchMsg {
  778. return predicate.BatchMsg(sql.FieldLT(FieldSendTime, v))
  779. }
  780. // SendTimeLTE applies the LTE predicate on the "send_time" field.
  781. func SendTimeLTE(v time.Time) predicate.BatchMsg {
  782. return predicate.BatchMsg(sql.FieldLTE(FieldSendTime, v))
  783. }
  784. // SendTimeIsNil applies the IsNil predicate on the "send_time" field.
  785. func SendTimeIsNil() predicate.BatchMsg {
  786. return predicate.BatchMsg(sql.FieldIsNull(FieldSendTime))
  787. }
  788. // SendTimeNotNil applies the NotNil predicate on the "send_time" field.
  789. func SendTimeNotNil() predicate.BatchMsg {
  790. return predicate.BatchMsg(sql.FieldNotNull(FieldSendTime))
  791. }
  792. // TypeEQ applies the EQ predicate on the "type" field.
  793. func TypeEQ(v int32) predicate.BatchMsg {
  794. return predicate.BatchMsg(sql.FieldEQ(FieldType, v))
  795. }
  796. // TypeNEQ applies the NEQ predicate on the "type" field.
  797. func TypeNEQ(v int32) predicate.BatchMsg {
  798. return predicate.BatchMsg(sql.FieldNEQ(FieldType, v))
  799. }
  800. // TypeIn applies the In predicate on the "type" field.
  801. func TypeIn(vs ...int32) predicate.BatchMsg {
  802. return predicate.BatchMsg(sql.FieldIn(FieldType, vs...))
  803. }
  804. // TypeNotIn applies the NotIn predicate on the "type" field.
  805. func TypeNotIn(vs ...int32) predicate.BatchMsg {
  806. return predicate.BatchMsg(sql.FieldNotIn(FieldType, vs...))
  807. }
  808. // TypeGT applies the GT predicate on the "type" field.
  809. func TypeGT(v int32) predicate.BatchMsg {
  810. return predicate.BatchMsg(sql.FieldGT(FieldType, v))
  811. }
  812. // TypeGTE applies the GTE predicate on the "type" field.
  813. func TypeGTE(v int32) predicate.BatchMsg {
  814. return predicate.BatchMsg(sql.FieldGTE(FieldType, v))
  815. }
  816. // TypeLT applies the LT predicate on the "type" field.
  817. func TypeLT(v int32) predicate.BatchMsg {
  818. return predicate.BatchMsg(sql.FieldLT(FieldType, v))
  819. }
  820. // TypeLTE applies the LTE predicate on the "type" field.
  821. func TypeLTE(v int32) predicate.BatchMsg {
  822. return predicate.BatchMsg(sql.FieldLTE(FieldType, v))
  823. }
  824. // TypeIsNil applies the IsNil predicate on the "type" field.
  825. func TypeIsNil() predicate.BatchMsg {
  826. return predicate.BatchMsg(sql.FieldIsNull(FieldType))
  827. }
  828. // TypeNotNil applies the NotNil predicate on the "type" field.
  829. func TypeNotNil() predicate.BatchMsg {
  830. return predicate.BatchMsg(sql.FieldNotNull(FieldType))
  831. }
  832. // And groups predicates with the AND operator between them.
  833. func And(predicates ...predicate.BatchMsg) predicate.BatchMsg {
  834. return predicate.BatchMsg(sql.AndPredicates(predicates...))
  835. }
  836. // Or groups predicates with the OR operator between them.
  837. func Or(predicates ...predicate.BatchMsg) predicate.BatchMsg {
  838. return predicate.BatchMsg(sql.OrPredicates(predicates...))
  839. }
  840. // Not applies the not operator on the given predicate.
  841. func Not(p predicate.BatchMsg) predicate.BatchMsg {
  842. return predicate.BatchMsg(sql.NotPredicates(p))
  843. }