where.go 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  1. // Code generated by ent, DO NOT EDIT.
  2. package messagerecords
  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.MessageRecords {
  10. return predicate.MessageRecords(sql.FieldEQ(FieldID, id))
  11. }
  12. // IDEQ applies the EQ predicate on the ID field.
  13. func IDEQ(id uint64) predicate.MessageRecords {
  14. return predicate.MessageRecords(sql.FieldEQ(FieldID, id))
  15. }
  16. // IDNEQ applies the NEQ predicate on the ID field.
  17. func IDNEQ(id uint64) predicate.MessageRecords {
  18. return predicate.MessageRecords(sql.FieldNEQ(FieldID, id))
  19. }
  20. // IDIn applies the In predicate on the ID field.
  21. func IDIn(ids ...uint64) predicate.MessageRecords {
  22. return predicate.MessageRecords(sql.FieldIn(FieldID, ids...))
  23. }
  24. // IDNotIn applies the NotIn predicate on the ID field.
  25. func IDNotIn(ids ...uint64) predicate.MessageRecords {
  26. return predicate.MessageRecords(sql.FieldNotIn(FieldID, ids...))
  27. }
  28. // IDGT applies the GT predicate on the ID field.
  29. func IDGT(id uint64) predicate.MessageRecords {
  30. return predicate.MessageRecords(sql.FieldGT(FieldID, id))
  31. }
  32. // IDGTE applies the GTE predicate on the ID field.
  33. func IDGTE(id uint64) predicate.MessageRecords {
  34. return predicate.MessageRecords(sql.FieldGTE(FieldID, id))
  35. }
  36. // IDLT applies the LT predicate on the ID field.
  37. func IDLT(id uint64) predicate.MessageRecords {
  38. return predicate.MessageRecords(sql.FieldLT(FieldID, id))
  39. }
  40. // IDLTE applies the LTE predicate on the ID field.
  41. func IDLTE(id uint64) predicate.MessageRecords {
  42. return predicate.MessageRecords(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.MessageRecords {
  46. return predicate.MessageRecords(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.MessageRecords {
  50. return predicate.MessageRecords(sql.FieldEQ(FieldUpdatedAt, v))
  51. }
  52. // Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
  53. func Status(v uint8) predicate.MessageRecords {
  54. return predicate.MessageRecords(sql.FieldEQ(FieldStatus, v))
  55. }
  56. // DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
  57. func DeletedAt(v time.Time) predicate.MessageRecords {
  58. return predicate.MessageRecords(sql.FieldEQ(FieldDeletedAt, v))
  59. }
  60. // BotWxid applies equality check predicate on the "bot_wxid" field. It's identical to BotWxidEQ.
  61. func BotWxid(v string) predicate.MessageRecords {
  62. return predicate.MessageRecords(sql.FieldEQ(FieldBotWxid, v))
  63. }
  64. // ContactID applies equality check predicate on the "contact_id" field. It's identical to ContactIDEQ.
  65. func ContactID(v int) predicate.MessageRecords {
  66. return predicate.MessageRecords(sql.FieldEQ(FieldContactID, v))
  67. }
  68. // ContactType applies equality check predicate on the "contact_type" field. It's identical to ContactTypeEQ.
  69. func ContactType(v int) predicate.MessageRecords {
  70. return predicate.MessageRecords(sql.FieldEQ(FieldContactType, v))
  71. }
  72. // ContactWxid applies equality check predicate on the "contact_wxid" field. It's identical to ContactWxidEQ.
  73. func ContactWxid(v string) predicate.MessageRecords {
  74. return predicate.MessageRecords(sql.FieldEQ(FieldContactWxid, v))
  75. }
  76. // ContentType applies equality check predicate on the "content_type" field. It's identical to ContentTypeEQ.
  77. func ContentType(v int) predicate.MessageRecords {
  78. return predicate.MessageRecords(sql.FieldEQ(FieldContentType, v))
  79. }
  80. // Content applies equality check predicate on the "content" field. It's identical to ContentEQ.
  81. func Content(v string) predicate.MessageRecords {
  82. return predicate.MessageRecords(sql.FieldEQ(FieldContent, v))
  83. }
  84. // ErrorDetail applies equality check predicate on the "error_detail" field. It's identical to ErrorDetailEQ.
  85. func ErrorDetail(v string) predicate.MessageRecords {
  86. return predicate.MessageRecords(sql.FieldEQ(FieldErrorDetail, v))
  87. }
  88. // SendTime applies equality check predicate on the "send_time" field. It's identical to SendTimeEQ.
  89. func SendTime(v time.Time) predicate.MessageRecords {
  90. return predicate.MessageRecords(sql.FieldEQ(FieldSendTime, v))
  91. }
  92. // SourceType applies equality check predicate on the "source_type" field. It's identical to SourceTypeEQ.
  93. func SourceType(v int) predicate.MessageRecords {
  94. return predicate.MessageRecords(sql.FieldEQ(FieldSourceType, v))
  95. }
  96. // SourceID applies equality check predicate on the "source_id" field. It's identical to SourceIDEQ.
  97. func SourceID(v int) predicate.MessageRecords {
  98. return predicate.MessageRecords(sql.FieldEQ(FieldSourceID, v))
  99. }
  100. // SubSourceID applies equality check predicate on the "sub_source_id" field. It's identical to SubSourceIDEQ.
  101. func SubSourceID(v int) predicate.MessageRecords {
  102. return predicate.MessageRecords(sql.FieldEQ(FieldSubSourceID, v))
  103. }
  104. // CreatedAtEQ applies the EQ predicate on the "created_at" field.
  105. func CreatedAtEQ(v time.Time) predicate.MessageRecords {
  106. return predicate.MessageRecords(sql.FieldEQ(FieldCreatedAt, v))
  107. }
  108. // CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
  109. func CreatedAtNEQ(v time.Time) predicate.MessageRecords {
  110. return predicate.MessageRecords(sql.FieldNEQ(FieldCreatedAt, v))
  111. }
  112. // CreatedAtIn applies the In predicate on the "created_at" field.
  113. func CreatedAtIn(vs ...time.Time) predicate.MessageRecords {
  114. return predicate.MessageRecords(sql.FieldIn(FieldCreatedAt, vs...))
  115. }
  116. // CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
  117. func CreatedAtNotIn(vs ...time.Time) predicate.MessageRecords {
  118. return predicate.MessageRecords(sql.FieldNotIn(FieldCreatedAt, vs...))
  119. }
  120. // CreatedAtGT applies the GT predicate on the "created_at" field.
  121. func CreatedAtGT(v time.Time) predicate.MessageRecords {
  122. return predicate.MessageRecords(sql.FieldGT(FieldCreatedAt, v))
  123. }
  124. // CreatedAtGTE applies the GTE predicate on the "created_at" field.
  125. func CreatedAtGTE(v time.Time) predicate.MessageRecords {
  126. return predicate.MessageRecords(sql.FieldGTE(FieldCreatedAt, v))
  127. }
  128. // CreatedAtLT applies the LT predicate on the "created_at" field.
  129. func CreatedAtLT(v time.Time) predicate.MessageRecords {
  130. return predicate.MessageRecords(sql.FieldLT(FieldCreatedAt, v))
  131. }
  132. // CreatedAtLTE applies the LTE predicate on the "created_at" field.
  133. func CreatedAtLTE(v time.Time) predicate.MessageRecords {
  134. return predicate.MessageRecords(sql.FieldLTE(FieldCreatedAt, v))
  135. }
  136. // UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
  137. func UpdatedAtEQ(v time.Time) predicate.MessageRecords {
  138. return predicate.MessageRecords(sql.FieldEQ(FieldUpdatedAt, v))
  139. }
  140. // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
  141. func UpdatedAtNEQ(v time.Time) predicate.MessageRecords {
  142. return predicate.MessageRecords(sql.FieldNEQ(FieldUpdatedAt, v))
  143. }
  144. // UpdatedAtIn applies the In predicate on the "updated_at" field.
  145. func UpdatedAtIn(vs ...time.Time) predicate.MessageRecords {
  146. return predicate.MessageRecords(sql.FieldIn(FieldUpdatedAt, vs...))
  147. }
  148. // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
  149. func UpdatedAtNotIn(vs ...time.Time) predicate.MessageRecords {
  150. return predicate.MessageRecords(sql.FieldNotIn(FieldUpdatedAt, vs...))
  151. }
  152. // UpdatedAtGT applies the GT predicate on the "updated_at" field.
  153. func UpdatedAtGT(v time.Time) predicate.MessageRecords {
  154. return predicate.MessageRecords(sql.FieldGT(FieldUpdatedAt, v))
  155. }
  156. // UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
  157. func UpdatedAtGTE(v time.Time) predicate.MessageRecords {
  158. return predicate.MessageRecords(sql.FieldGTE(FieldUpdatedAt, v))
  159. }
  160. // UpdatedAtLT applies the LT predicate on the "updated_at" field.
  161. func UpdatedAtLT(v time.Time) predicate.MessageRecords {
  162. return predicate.MessageRecords(sql.FieldLT(FieldUpdatedAt, v))
  163. }
  164. // UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
  165. func UpdatedAtLTE(v time.Time) predicate.MessageRecords {
  166. return predicate.MessageRecords(sql.FieldLTE(FieldUpdatedAt, v))
  167. }
  168. // StatusEQ applies the EQ predicate on the "status" field.
  169. func StatusEQ(v uint8) predicate.MessageRecords {
  170. return predicate.MessageRecords(sql.FieldEQ(FieldStatus, v))
  171. }
  172. // StatusNEQ applies the NEQ predicate on the "status" field.
  173. func StatusNEQ(v uint8) predicate.MessageRecords {
  174. return predicate.MessageRecords(sql.FieldNEQ(FieldStatus, v))
  175. }
  176. // StatusIn applies the In predicate on the "status" field.
  177. func StatusIn(vs ...uint8) predicate.MessageRecords {
  178. return predicate.MessageRecords(sql.FieldIn(FieldStatus, vs...))
  179. }
  180. // StatusNotIn applies the NotIn predicate on the "status" field.
  181. func StatusNotIn(vs ...uint8) predicate.MessageRecords {
  182. return predicate.MessageRecords(sql.FieldNotIn(FieldStatus, vs...))
  183. }
  184. // StatusGT applies the GT predicate on the "status" field.
  185. func StatusGT(v uint8) predicate.MessageRecords {
  186. return predicate.MessageRecords(sql.FieldGT(FieldStatus, v))
  187. }
  188. // StatusGTE applies the GTE predicate on the "status" field.
  189. func StatusGTE(v uint8) predicate.MessageRecords {
  190. return predicate.MessageRecords(sql.FieldGTE(FieldStatus, v))
  191. }
  192. // StatusLT applies the LT predicate on the "status" field.
  193. func StatusLT(v uint8) predicate.MessageRecords {
  194. return predicate.MessageRecords(sql.FieldLT(FieldStatus, v))
  195. }
  196. // StatusLTE applies the LTE predicate on the "status" field.
  197. func StatusLTE(v uint8) predicate.MessageRecords {
  198. return predicate.MessageRecords(sql.FieldLTE(FieldStatus, v))
  199. }
  200. // StatusIsNil applies the IsNil predicate on the "status" field.
  201. func StatusIsNil() predicate.MessageRecords {
  202. return predicate.MessageRecords(sql.FieldIsNull(FieldStatus))
  203. }
  204. // StatusNotNil applies the NotNil predicate on the "status" field.
  205. func StatusNotNil() predicate.MessageRecords {
  206. return predicate.MessageRecords(sql.FieldNotNull(FieldStatus))
  207. }
  208. // DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
  209. func DeletedAtEQ(v time.Time) predicate.MessageRecords {
  210. return predicate.MessageRecords(sql.FieldEQ(FieldDeletedAt, v))
  211. }
  212. // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
  213. func DeletedAtNEQ(v time.Time) predicate.MessageRecords {
  214. return predicate.MessageRecords(sql.FieldNEQ(FieldDeletedAt, v))
  215. }
  216. // DeletedAtIn applies the In predicate on the "deleted_at" field.
  217. func DeletedAtIn(vs ...time.Time) predicate.MessageRecords {
  218. return predicate.MessageRecords(sql.FieldIn(FieldDeletedAt, vs...))
  219. }
  220. // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
  221. func DeletedAtNotIn(vs ...time.Time) predicate.MessageRecords {
  222. return predicate.MessageRecords(sql.FieldNotIn(FieldDeletedAt, vs...))
  223. }
  224. // DeletedAtGT applies the GT predicate on the "deleted_at" field.
  225. func DeletedAtGT(v time.Time) predicate.MessageRecords {
  226. return predicate.MessageRecords(sql.FieldGT(FieldDeletedAt, v))
  227. }
  228. // DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
  229. func DeletedAtGTE(v time.Time) predicate.MessageRecords {
  230. return predicate.MessageRecords(sql.FieldGTE(FieldDeletedAt, v))
  231. }
  232. // DeletedAtLT applies the LT predicate on the "deleted_at" field.
  233. func DeletedAtLT(v time.Time) predicate.MessageRecords {
  234. return predicate.MessageRecords(sql.FieldLT(FieldDeletedAt, v))
  235. }
  236. // DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
  237. func DeletedAtLTE(v time.Time) predicate.MessageRecords {
  238. return predicate.MessageRecords(sql.FieldLTE(FieldDeletedAt, v))
  239. }
  240. // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
  241. func DeletedAtIsNil() predicate.MessageRecords {
  242. return predicate.MessageRecords(sql.FieldIsNull(FieldDeletedAt))
  243. }
  244. // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
  245. func DeletedAtNotNil() predicate.MessageRecords {
  246. return predicate.MessageRecords(sql.FieldNotNull(FieldDeletedAt))
  247. }
  248. // BotWxidEQ applies the EQ predicate on the "bot_wxid" field.
  249. func BotWxidEQ(v string) predicate.MessageRecords {
  250. return predicate.MessageRecords(sql.FieldEQ(FieldBotWxid, v))
  251. }
  252. // BotWxidNEQ applies the NEQ predicate on the "bot_wxid" field.
  253. func BotWxidNEQ(v string) predicate.MessageRecords {
  254. return predicate.MessageRecords(sql.FieldNEQ(FieldBotWxid, v))
  255. }
  256. // BotWxidIn applies the In predicate on the "bot_wxid" field.
  257. func BotWxidIn(vs ...string) predicate.MessageRecords {
  258. return predicate.MessageRecords(sql.FieldIn(FieldBotWxid, vs...))
  259. }
  260. // BotWxidNotIn applies the NotIn predicate on the "bot_wxid" field.
  261. func BotWxidNotIn(vs ...string) predicate.MessageRecords {
  262. return predicate.MessageRecords(sql.FieldNotIn(FieldBotWxid, vs...))
  263. }
  264. // BotWxidGT applies the GT predicate on the "bot_wxid" field.
  265. func BotWxidGT(v string) predicate.MessageRecords {
  266. return predicate.MessageRecords(sql.FieldGT(FieldBotWxid, v))
  267. }
  268. // BotWxidGTE applies the GTE predicate on the "bot_wxid" field.
  269. func BotWxidGTE(v string) predicate.MessageRecords {
  270. return predicate.MessageRecords(sql.FieldGTE(FieldBotWxid, v))
  271. }
  272. // BotWxidLT applies the LT predicate on the "bot_wxid" field.
  273. func BotWxidLT(v string) predicate.MessageRecords {
  274. return predicate.MessageRecords(sql.FieldLT(FieldBotWxid, v))
  275. }
  276. // BotWxidLTE applies the LTE predicate on the "bot_wxid" field.
  277. func BotWxidLTE(v string) predicate.MessageRecords {
  278. return predicate.MessageRecords(sql.FieldLTE(FieldBotWxid, v))
  279. }
  280. // BotWxidContains applies the Contains predicate on the "bot_wxid" field.
  281. func BotWxidContains(v string) predicate.MessageRecords {
  282. return predicate.MessageRecords(sql.FieldContains(FieldBotWxid, v))
  283. }
  284. // BotWxidHasPrefix applies the HasPrefix predicate on the "bot_wxid" field.
  285. func BotWxidHasPrefix(v string) predicate.MessageRecords {
  286. return predicate.MessageRecords(sql.FieldHasPrefix(FieldBotWxid, v))
  287. }
  288. // BotWxidHasSuffix applies the HasSuffix predicate on the "bot_wxid" field.
  289. func BotWxidHasSuffix(v string) predicate.MessageRecords {
  290. return predicate.MessageRecords(sql.FieldHasSuffix(FieldBotWxid, v))
  291. }
  292. // BotWxidEqualFold applies the EqualFold predicate on the "bot_wxid" field.
  293. func BotWxidEqualFold(v string) predicate.MessageRecords {
  294. return predicate.MessageRecords(sql.FieldEqualFold(FieldBotWxid, v))
  295. }
  296. // BotWxidContainsFold applies the ContainsFold predicate on the "bot_wxid" field.
  297. func BotWxidContainsFold(v string) predicate.MessageRecords {
  298. return predicate.MessageRecords(sql.FieldContainsFold(FieldBotWxid, v))
  299. }
  300. // ContactIDEQ applies the EQ predicate on the "contact_id" field.
  301. func ContactIDEQ(v int) predicate.MessageRecords {
  302. return predicate.MessageRecords(sql.FieldEQ(FieldContactID, v))
  303. }
  304. // ContactIDNEQ applies the NEQ predicate on the "contact_id" field.
  305. func ContactIDNEQ(v int) predicate.MessageRecords {
  306. return predicate.MessageRecords(sql.FieldNEQ(FieldContactID, v))
  307. }
  308. // ContactIDIn applies the In predicate on the "contact_id" field.
  309. func ContactIDIn(vs ...int) predicate.MessageRecords {
  310. return predicate.MessageRecords(sql.FieldIn(FieldContactID, vs...))
  311. }
  312. // ContactIDNotIn applies the NotIn predicate on the "contact_id" field.
  313. func ContactIDNotIn(vs ...int) predicate.MessageRecords {
  314. return predicate.MessageRecords(sql.FieldNotIn(FieldContactID, vs...))
  315. }
  316. // ContactIDGT applies the GT predicate on the "contact_id" field.
  317. func ContactIDGT(v int) predicate.MessageRecords {
  318. return predicate.MessageRecords(sql.FieldGT(FieldContactID, v))
  319. }
  320. // ContactIDGTE applies the GTE predicate on the "contact_id" field.
  321. func ContactIDGTE(v int) predicate.MessageRecords {
  322. return predicate.MessageRecords(sql.FieldGTE(FieldContactID, v))
  323. }
  324. // ContactIDLT applies the LT predicate on the "contact_id" field.
  325. func ContactIDLT(v int) predicate.MessageRecords {
  326. return predicate.MessageRecords(sql.FieldLT(FieldContactID, v))
  327. }
  328. // ContactIDLTE applies the LTE predicate on the "contact_id" field.
  329. func ContactIDLTE(v int) predicate.MessageRecords {
  330. return predicate.MessageRecords(sql.FieldLTE(FieldContactID, v))
  331. }
  332. // ContactTypeEQ applies the EQ predicate on the "contact_type" field.
  333. func ContactTypeEQ(v int) predicate.MessageRecords {
  334. return predicate.MessageRecords(sql.FieldEQ(FieldContactType, v))
  335. }
  336. // ContactTypeNEQ applies the NEQ predicate on the "contact_type" field.
  337. func ContactTypeNEQ(v int) predicate.MessageRecords {
  338. return predicate.MessageRecords(sql.FieldNEQ(FieldContactType, v))
  339. }
  340. // ContactTypeIn applies the In predicate on the "contact_type" field.
  341. func ContactTypeIn(vs ...int) predicate.MessageRecords {
  342. return predicate.MessageRecords(sql.FieldIn(FieldContactType, vs...))
  343. }
  344. // ContactTypeNotIn applies the NotIn predicate on the "contact_type" field.
  345. func ContactTypeNotIn(vs ...int) predicate.MessageRecords {
  346. return predicate.MessageRecords(sql.FieldNotIn(FieldContactType, vs...))
  347. }
  348. // ContactTypeGT applies the GT predicate on the "contact_type" field.
  349. func ContactTypeGT(v int) predicate.MessageRecords {
  350. return predicate.MessageRecords(sql.FieldGT(FieldContactType, v))
  351. }
  352. // ContactTypeGTE applies the GTE predicate on the "contact_type" field.
  353. func ContactTypeGTE(v int) predicate.MessageRecords {
  354. return predicate.MessageRecords(sql.FieldGTE(FieldContactType, v))
  355. }
  356. // ContactTypeLT applies the LT predicate on the "contact_type" field.
  357. func ContactTypeLT(v int) predicate.MessageRecords {
  358. return predicate.MessageRecords(sql.FieldLT(FieldContactType, v))
  359. }
  360. // ContactTypeLTE applies the LTE predicate on the "contact_type" field.
  361. func ContactTypeLTE(v int) predicate.MessageRecords {
  362. return predicate.MessageRecords(sql.FieldLTE(FieldContactType, v))
  363. }
  364. // ContactWxidEQ applies the EQ predicate on the "contact_wxid" field.
  365. func ContactWxidEQ(v string) predicate.MessageRecords {
  366. return predicate.MessageRecords(sql.FieldEQ(FieldContactWxid, v))
  367. }
  368. // ContactWxidNEQ applies the NEQ predicate on the "contact_wxid" field.
  369. func ContactWxidNEQ(v string) predicate.MessageRecords {
  370. return predicate.MessageRecords(sql.FieldNEQ(FieldContactWxid, v))
  371. }
  372. // ContactWxidIn applies the In predicate on the "contact_wxid" field.
  373. func ContactWxidIn(vs ...string) predicate.MessageRecords {
  374. return predicate.MessageRecords(sql.FieldIn(FieldContactWxid, vs...))
  375. }
  376. // ContactWxidNotIn applies the NotIn predicate on the "contact_wxid" field.
  377. func ContactWxidNotIn(vs ...string) predicate.MessageRecords {
  378. return predicate.MessageRecords(sql.FieldNotIn(FieldContactWxid, vs...))
  379. }
  380. // ContactWxidGT applies the GT predicate on the "contact_wxid" field.
  381. func ContactWxidGT(v string) predicate.MessageRecords {
  382. return predicate.MessageRecords(sql.FieldGT(FieldContactWxid, v))
  383. }
  384. // ContactWxidGTE applies the GTE predicate on the "contact_wxid" field.
  385. func ContactWxidGTE(v string) predicate.MessageRecords {
  386. return predicate.MessageRecords(sql.FieldGTE(FieldContactWxid, v))
  387. }
  388. // ContactWxidLT applies the LT predicate on the "contact_wxid" field.
  389. func ContactWxidLT(v string) predicate.MessageRecords {
  390. return predicate.MessageRecords(sql.FieldLT(FieldContactWxid, v))
  391. }
  392. // ContactWxidLTE applies the LTE predicate on the "contact_wxid" field.
  393. func ContactWxidLTE(v string) predicate.MessageRecords {
  394. return predicate.MessageRecords(sql.FieldLTE(FieldContactWxid, v))
  395. }
  396. // ContactWxidContains applies the Contains predicate on the "contact_wxid" field.
  397. func ContactWxidContains(v string) predicate.MessageRecords {
  398. return predicate.MessageRecords(sql.FieldContains(FieldContactWxid, v))
  399. }
  400. // ContactWxidHasPrefix applies the HasPrefix predicate on the "contact_wxid" field.
  401. func ContactWxidHasPrefix(v string) predicate.MessageRecords {
  402. return predicate.MessageRecords(sql.FieldHasPrefix(FieldContactWxid, v))
  403. }
  404. // ContactWxidHasSuffix applies the HasSuffix predicate on the "contact_wxid" field.
  405. func ContactWxidHasSuffix(v string) predicate.MessageRecords {
  406. return predicate.MessageRecords(sql.FieldHasSuffix(FieldContactWxid, v))
  407. }
  408. // ContactWxidEqualFold applies the EqualFold predicate on the "contact_wxid" field.
  409. func ContactWxidEqualFold(v string) predicate.MessageRecords {
  410. return predicate.MessageRecords(sql.FieldEqualFold(FieldContactWxid, v))
  411. }
  412. // ContactWxidContainsFold applies the ContainsFold predicate on the "contact_wxid" field.
  413. func ContactWxidContainsFold(v string) predicate.MessageRecords {
  414. return predicate.MessageRecords(sql.FieldContainsFold(FieldContactWxid, v))
  415. }
  416. // ContentTypeEQ applies the EQ predicate on the "content_type" field.
  417. func ContentTypeEQ(v int) predicate.MessageRecords {
  418. return predicate.MessageRecords(sql.FieldEQ(FieldContentType, v))
  419. }
  420. // ContentTypeNEQ applies the NEQ predicate on the "content_type" field.
  421. func ContentTypeNEQ(v int) predicate.MessageRecords {
  422. return predicate.MessageRecords(sql.FieldNEQ(FieldContentType, v))
  423. }
  424. // ContentTypeIn applies the In predicate on the "content_type" field.
  425. func ContentTypeIn(vs ...int) predicate.MessageRecords {
  426. return predicate.MessageRecords(sql.FieldIn(FieldContentType, vs...))
  427. }
  428. // ContentTypeNotIn applies the NotIn predicate on the "content_type" field.
  429. func ContentTypeNotIn(vs ...int) predicate.MessageRecords {
  430. return predicate.MessageRecords(sql.FieldNotIn(FieldContentType, vs...))
  431. }
  432. // ContentTypeGT applies the GT predicate on the "content_type" field.
  433. func ContentTypeGT(v int) predicate.MessageRecords {
  434. return predicate.MessageRecords(sql.FieldGT(FieldContentType, v))
  435. }
  436. // ContentTypeGTE applies the GTE predicate on the "content_type" field.
  437. func ContentTypeGTE(v int) predicate.MessageRecords {
  438. return predicate.MessageRecords(sql.FieldGTE(FieldContentType, v))
  439. }
  440. // ContentTypeLT applies the LT predicate on the "content_type" field.
  441. func ContentTypeLT(v int) predicate.MessageRecords {
  442. return predicate.MessageRecords(sql.FieldLT(FieldContentType, v))
  443. }
  444. // ContentTypeLTE applies the LTE predicate on the "content_type" field.
  445. func ContentTypeLTE(v int) predicate.MessageRecords {
  446. return predicate.MessageRecords(sql.FieldLTE(FieldContentType, v))
  447. }
  448. // ContentEQ applies the EQ predicate on the "content" field.
  449. func ContentEQ(v string) predicate.MessageRecords {
  450. return predicate.MessageRecords(sql.FieldEQ(FieldContent, v))
  451. }
  452. // ContentNEQ applies the NEQ predicate on the "content" field.
  453. func ContentNEQ(v string) predicate.MessageRecords {
  454. return predicate.MessageRecords(sql.FieldNEQ(FieldContent, v))
  455. }
  456. // ContentIn applies the In predicate on the "content" field.
  457. func ContentIn(vs ...string) predicate.MessageRecords {
  458. return predicate.MessageRecords(sql.FieldIn(FieldContent, vs...))
  459. }
  460. // ContentNotIn applies the NotIn predicate on the "content" field.
  461. func ContentNotIn(vs ...string) predicate.MessageRecords {
  462. return predicate.MessageRecords(sql.FieldNotIn(FieldContent, vs...))
  463. }
  464. // ContentGT applies the GT predicate on the "content" field.
  465. func ContentGT(v string) predicate.MessageRecords {
  466. return predicate.MessageRecords(sql.FieldGT(FieldContent, v))
  467. }
  468. // ContentGTE applies the GTE predicate on the "content" field.
  469. func ContentGTE(v string) predicate.MessageRecords {
  470. return predicate.MessageRecords(sql.FieldGTE(FieldContent, v))
  471. }
  472. // ContentLT applies the LT predicate on the "content" field.
  473. func ContentLT(v string) predicate.MessageRecords {
  474. return predicate.MessageRecords(sql.FieldLT(FieldContent, v))
  475. }
  476. // ContentLTE applies the LTE predicate on the "content" field.
  477. func ContentLTE(v string) predicate.MessageRecords {
  478. return predicate.MessageRecords(sql.FieldLTE(FieldContent, v))
  479. }
  480. // ContentContains applies the Contains predicate on the "content" field.
  481. func ContentContains(v string) predicate.MessageRecords {
  482. return predicate.MessageRecords(sql.FieldContains(FieldContent, v))
  483. }
  484. // ContentHasPrefix applies the HasPrefix predicate on the "content" field.
  485. func ContentHasPrefix(v string) predicate.MessageRecords {
  486. return predicate.MessageRecords(sql.FieldHasPrefix(FieldContent, v))
  487. }
  488. // ContentHasSuffix applies the HasSuffix predicate on the "content" field.
  489. func ContentHasSuffix(v string) predicate.MessageRecords {
  490. return predicate.MessageRecords(sql.FieldHasSuffix(FieldContent, v))
  491. }
  492. // ContentEqualFold applies the EqualFold predicate on the "content" field.
  493. func ContentEqualFold(v string) predicate.MessageRecords {
  494. return predicate.MessageRecords(sql.FieldEqualFold(FieldContent, v))
  495. }
  496. // ContentContainsFold applies the ContainsFold predicate on the "content" field.
  497. func ContentContainsFold(v string) predicate.MessageRecords {
  498. return predicate.MessageRecords(sql.FieldContainsFold(FieldContent, v))
  499. }
  500. // ErrorDetailEQ applies the EQ predicate on the "error_detail" field.
  501. func ErrorDetailEQ(v string) predicate.MessageRecords {
  502. return predicate.MessageRecords(sql.FieldEQ(FieldErrorDetail, v))
  503. }
  504. // ErrorDetailNEQ applies the NEQ predicate on the "error_detail" field.
  505. func ErrorDetailNEQ(v string) predicate.MessageRecords {
  506. return predicate.MessageRecords(sql.FieldNEQ(FieldErrorDetail, v))
  507. }
  508. // ErrorDetailIn applies the In predicate on the "error_detail" field.
  509. func ErrorDetailIn(vs ...string) predicate.MessageRecords {
  510. return predicate.MessageRecords(sql.FieldIn(FieldErrorDetail, vs...))
  511. }
  512. // ErrorDetailNotIn applies the NotIn predicate on the "error_detail" field.
  513. func ErrorDetailNotIn(vs ...string) predicate.MessageRecords {
  514. return predicate.MessageRecords(sql.FieldNotIn(FieldErrorDetail, vs...))
  515. }
  516. // ErrorDetailGT applies the GT predicate on the "error_detail" field.
  517. func ErrorDetailGT(v string) predicate.MessageRecords {
  518. return predicate.MessageRecords(sql.FieldGT(FieldErrorDetail, v))
  519. }
  520. // ErrorDetailGTE applies the GTE predicate on the "error_detail" field.
  521. func ErrorDetailGTE(v string) predicate.MessageRecords {
  522. return predicate.MessageRecords(sql.FieldGTE(FieldErrorDetail, v))
  523. }
  524. // ErrorDetailLT applies the LT predicate on the "error_detail" field.
  525. func ErrorDetailLT(v string) predicate.MessageRecords {
  526. return predicate.MessageRecords(sql.FieldLT(FieldErrorDetail, v))
  527. }
  528. // ErrorDetailLTE applies the LTE predicate on the "error_detail" field.
  529. func ErrorDetailLTE(v string) predicate.MessageRecords {
  530. return predicate.MessageRecords(sql.FieldLTE(FieldErrorDetail, v))
  531. }
  532. // ErrorDetailContains applies the Contains predicate on the "error_detail" field.
  533. func ErrorDetailContains(v string) predicate.MessageRecords {
  534. return predicate.MessageRecords(sql.FieldContains(FieldErrorDetail, v))
  535. }
  536. // ErrorDetailHasPrefix applies the HasPrefix predicate on the "error_detail" field.
  537. func ErrorDetailHasPrefix(v string) predicate.MessageRecords {
  538. return predicate.MessageRecords(sql.FieldHasPrefix(FieldErrorDetail, v))
  539. }
  540. // ErrorDetailHasSuffix applies the HasSuffix predicate on the "error_detail" field.
  541. func ErrorDetailHasSuffix(v string) predicate.MessageRecords {
  542. return predicate.MessageRecords(sql.FieldHasSuffix(FieldErrorDetail, v))
  543. }
  544. // ErrorDetailEqualFold applies the EqualFold predicate on the "error_detail" field.
  545. func ErrorDetailEqualFold(v string) predicate.MessageRecords {
  546. return predicate.MessageRecords(sql.FieldEqualFold(FieldErrorDetail, v))
  547. }
  548. // ErrorDetailContainsFold applies the ContainsFold predicate on the "error_detail" field.
  549. func ErrorDetailContainsFold(v string) predicate.MessageRecords {
  550. return predicate.MessageRecords(sql.FieldContainsFold(FieldErrorDetail, v))
  551. }
  552. // SendTimeEQ applies the EQ predicate on the "send_time" field.
  553. func SendTimeEQ(v time.Time) predicate.MessageRecords {
  554. return predicate.MessageRecords(sql.FieldEQ(FieldSendTime, v))
  555. }
  556. // SendTimeNEQ applies the NEQ predicate on the "send_time" field.
  557. func SendTimeNEQ(v time.Time) predicate.MessageRecords {
  558. return predicate.MessageRecords(sql.FieldNEQ(FieldSendTime, v))
  559. }
  560. // SendTimeIn applies the In predicate on the "send_time" field.
  561. func SendTimeIn(vs ...time.Time) predicate.MessageRecords {
  562. return predicate.MessageRecords(sql.FieldIn(FieldSendTime, vs...))
  563. }
  564. // SendTimeNotIn applies the NotIn predicate on the "send_time" field.
  565. func SendTimeNotIn(vs ...time.Time) predicate.MessageRecords {
  566. return predicate.MessageRecords(sql.FieldNotIn(FieldSendTime, vs...))
  567. }
  568. // SendTimeGT applies the GT predicate on the "send_time" field.
  569. func SendTimeGT(v time.Time) predicate.MessageRecords {
  570. return predicate.MessageRecords(sql.FieldGT(FieldSendTime, v))
  571. }
  572. // SendTimeGTE applies the GTE predicate on the "send_time" field.
  573. func SendTimeGTE(v time.Time) predicate.MessageRecords {
  574. return predicate.MessageRecords(sql.FieldGTE(FieldSendTime, v))
  575. }
  576. // SendTimeLT applies the LT predicate on the "send_time" field.
  577. func SendTimeLT(v time.Time) predicate.MessageRecords {
  578. return predicate.MessageRecords(sql.FieldLT(FieldSendTime, v))
  579. }
  580. // SendTimeLTE applies the LTE predicate on the "send_time" field.
  581. func SendTimeLTE(v time.Time) predicate.MessageRecords {
  582. return predicate.MessageRecords(sql.FieldLTE(FieldSendTime, v))
  583. }
  584. // SendTimeIsNil applies the IsNil predicate on the "send_time" field.
  585. func SendTimeIsNil() predicate.MessageRecords {
  586. return predicate.MessageRecords(sql.FieldIsNull(FieldSendTime))
  587. }
  588. // SendTimeNotNil applies the NotNil predicate on the "send_time" field.
  589. func SendTimeNotNil() predicate.MessageRecords {
  590. return predicate.MessageRecords(sql.FieldNotNull(FieldSendTime))
  591. }
  592. // SourceTypeEQ applies the EQ predicate on the "source_type" field.
  593. func SourceTypeEQ(v int) predicate.MessageRecords {
  594. return predicate.MessageRecords(sql.FieldEQ(FieldSourceType, v))
  595. }
  596. // SourceTypeNEQ applies the NEQ predicate on the "source_type" field.
  597. func SourceTypeNEQ(v int) predicate.MessageRecords {
  598. return predicate.MessageRecords(sql.FieldNEQ(FieldSourceType, v))
  599. }
  600. // SourceTypeIn applies the In predicate on the "source_type" field.
  601. func SourceTypeIn(vs ...int) predicate.MessageRecords {
  602. return predicate.MessageRecords(sql.FieldIn(FieldSourceType, vs...))
  603. }
  604. // SourceTypeNotIn applies the NotIn predicate on the "source_type" field.
  605. func SourceTypeNotIn(vs ...int) predicate.MessageRecords {
  606. return predicate.MessageRecords(sql.FieldNotIn(FieldSourceType, vs...))
  607. }
  608. // SourceTypeGT applies the GT predicate on the "source_type" field.
  609. func SourceTypeGT(v int) predicate.MessageRecords {
  610. return predicate.MessageRecords(sql.FieldGT(FieldSourceType, v))
  611. }
  612. // SourceTypeGTE applies the GTE predicate on the "source_type" field.
  613. func SourceTypeGTE(v int) predicate.MessageRecords {
  614. return predicate.MessageRecords(sql.FieldGTE(FieldSourceType, v))
  615. }
  616. // SourceTypeLT applies the LT predicate on the "source_type" field.
  617. func SourceTypeLT(v int) predicate.MessageRecords {
  618. return predicate.MessageRecords(sql.FieldLT(FieldSourceType, v))
  619. }
  620. // SourceTypeLTE applies the LTE predicate on the "source_type" field.
  621. func SourceTypeLTE(v int) predicate.MessageRecords {
  622. return predicate.MessageRecords(sql.FieldLTE(FieldSourceType, v))
  623. }
  624. // SourceIDEQ applies the EQ predicate on the "source_id" field.
  625. func SourceIDEQ(v int) predicate.MessageRecords {
  626. return predicate.MessageRecords(sql.FieldEQ(FieldSourceID, v))
  627. }
  628. // SourceIDNEQ applies the NEQ predicate on the "source_id" field.
  629. func SourceIDNEQ(v int) predicate.MessageRecords {
  630. return predicate.MessageRecords(sql.FieldNEQ(FieldSourceID, v))
  631. }
  632. // SourceIDIn applies the In predicate on the "source_id" field.
  633. func SourceIDIn(vs ...int) predicate.MessageRecords {
  634. return predicate.MessageRecords(sql.FieldIn(FieldSourceID, vs...))
  635. }
  636. // SourceIDNotIn applies the NotIn predicate on the "source_id" field.
  637. func SourceIDNotIn(vs ...int) predicate.MessageRecords {
  638. return predicate.MessageRecords(sql.FieldNotIn(FieldSourceID, vs...))
  639. }
  640. // SourceIDGT applies the GT predicate on the "source_id" field.
  641. func SourceIDGT(v int) predicate.MessageRecords {
  642. return predicate.MessageRecords(sql.FieldGT(FieldSourceID, v))
  643. }
  644. // SourceIDGTE applies the GTE predicate on the "source_id" field.
  645. func SourceIDGTE(v int) predicate.MessageRecords {
  646. return predicate.MessageRecords(sql.FieldGTE(FieldSourceID, v))
  647. }
  648. // SourceIDLT applies the LT predicate on the "source_id" field.
  649. func SourceIDLT(v int) predicate.MessageRecords {
  650. return predicate.MessageRecords(sql.FieldLT(FieldSourceID, v))
  651. }
  652. // SourceIDLTE applies the LTE predicate on the "source_id" field.
  653. func SourceIDLTE(v int) predicate.MessageRecords {
  654. return predicate.MessageRecords(sql.FieldLTE(FieldSourceID, v))
  655. }
  656. // SubSourceIDEQ applies the EQ predicate on the "sub_source_id" field.
  657. func SubSourceIDEQ(v int) predicate.MessageRecords {
  658. return predicate.MessageRecords(sql.FieldEQ(FieldSubSourceID, v))
  659. }
  660. // SubSourceIDNEQ applies the NEQ predicate on the "sub_source_id" field.
  661. func SubSourceIDNEQ(v int) predicate.MessageRecords {
  662. return predicate.MessageRecords(sql.FieldNEQ(FieldSubSourceID, v))
  663. }
  664. // SubSourceIDIn applies the In predicate on the "sub_source_id" field.
  665. func SubSourceIDIn(vs ...int) predicate.MessageRecords {
  666. return predicate.MessageRecords(sql.FieldIn(FieldSubSourceID, vs...))
  667. }
  668. // SubSourceIDNotIn applies the NotIn predicate on the "sub_source_id" field.
  669. func SubSourceIDNotIn(vs ...int) predicate.MessageRecords {
  670. return predicate.MessageRecords(sql.FieldNotIn(FieldSubSourceID, vs...))
  671. }
  672. // SubSourceIDGT applies the GT predicate on the "sub_source_id" field.
  673. func SubSourceIDGT(v int) predicate.MessageRecords {
  674. return predicate.MessageRecords(sql.FieldGT(FieldSubSourceID, v))
  675. }
  676. // SubSourceIDGTE applies the GTE predicate on the "sub_source_id" field.
  677. func SubSourceIDGTE(v int) predicate.MessageRecords {
  678. return predicate.MessageRecords(sql.FieldGTE(FieldSubSourceID, v))
  679. }
  680. // SubSourceIDLT applies the LT predicate on the "sub_source_id" field.
  681. func SubSourceIDLT(v int) predicate.MessageRecords {
  682. return predicate.MessageRecords(sql.FieldLT(FieldSubSourceID, v))
  683. }
  684. // SubSourceIDLTE applies the LTE predicate on the "sub_source_id" field.
  685. func SubSourceIDLTE(v int) predicate.MessageRecords {
  686. return predicate.MessageRecords(sql.FieldLTE(FieldSubSourceID, v))
  687. }
  688. // And groups predicates with the AND operator between them.
  689. func And(predicates ...predicate.MessageRecords) predicate.MessageRecords {
  690. return predicate.MessageRecords(sql.AndPredicates(predicates...))
  691. }
  692. // Or groups predicates with the OR operator between them.
  693. func Or(predicates ...predicate.MessageRecords) predicate.MessageRecords {
  694. return predicate.MessageRecords(sql.OrPredicates(predicates...))
  695. }
  696. // Not applies the not operator on the given predicate.
  697. func Not(p predicate.MessageRecords) predicate.MessageRecords {
  698. return predicate.MessageRecords(sql.NotPredicates(p))
  699. }