where.go 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  1. // Code generated by ent, DO NOT EDIT.
  2. package whatsapp
  3. import (
  4. "time"
  5. "wechat-api/ent/predicate"
  6. "entgo.io/ent/dialect/sql"
  7. "entgo.io/ent/dialect/sql/sqlgraph"
  8. )
  9. // ID filters vertices based on their ID field.
  10. func ID(id uint64) predicate.Whatsapp {
  11. return predicate.Whatsapp(sql.FieldEQ(FieldID, id))
  12. }
  13. // IDEQ applies the EQ predicate on the ID field.
  14. func IDEQ(id uint64) predicate.Whatsapp {
  15. return predicate.Whatsapp(sql.FieldEQ(FieldID, id))
  16. }
  17. // IDNEQ applies the NEQ predicate on the ID field.
  18. func IDNEQ(id uint64) predicate.Whatsapp {
  19. return predicate.Whatsapp(sql.FieldNEQ(FieldID, id))
  20. }
  21. // IDIn applies the In predicate on the ID field.
  22. func IDIn(ids ...uint64) predicate.Whatsapp {
  23. return predicate.Whatsapp(sql.FieldIn(FieldID, ids...))
  24. }
  25. // IDNotIn applies the NotIn predicate on the ID field.
  26. func IDNotIn(ids ...uint64) predicate.Whatsapp {
  27. return predicate.Whatsapp(sql.FieldNotIn(FieldID, ids...))
  28. }
  29. // IDGT applies the GT predicate on the ID field.
  30. func IDGT(id uint64) predicate.Whatsapp {
  31. return predicate.Whatsapp(sql.FieldGT(FieldID, id))
  32. }
  33. // IDGTE applies the GTE predicate on the ID field.
  34. func IDGTE(id uint64) predicate.Whatsapp {
  35. return predicate.Whatsapp(sql.FieldGTE(FieldID, id))
  36. }
  37. // IDLT applies the LT predicate on the ID field.
  38. func IDLT(id uint64) predicate.Whatsapp {
  39. return predicate.Whatsapp(sql.FieldLT(FieldID, id))
  40. }
  41. // IDLTE applies the LTE predicate on the ID field.
  42. func IDLTE(id uint64) predicate.Whatsapp {
  43. return predicate.Whatsapp(sql.FieldLTE(FieldID, id))
  44. }
  45. // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
  46. func CreatedAt(v time.Time) predicate.Whatsapp {
  47. return predicate.Whatsapp(sql.FieldEQ(FieldCreatedAt, v))
  48. }
  49. // UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
  50. func UpdatedAt(v time.Time) predicate.Whatsapp {
  51. return predicate.Whatsapp(sql.FieldEQ(FieldUpdatedAt, v))
  52. }
  53. // Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
  54. func Status(v uint8) predicate.Whatsapp {
  55. return predicate.Whatsapp(sql.FieldEQ(FieldStatus, v))
  56. }
  57. // DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
  58. func DeletedAt(v time.Time) predicate.Whatsapp {
  59. return predicate.Whatsapp(sql.FieldEQ(FieldDeletedAt, v))
  60. }
  61. // WaID applies equality check predicate on the "wa_id" field. It's identical to WaIDEQ.
  62. func WaID(v string) predicate.Whatsapp {
  63. return predicate.Whatsapp(sql.FieldEQ(FieldWaID, v))
  64. }
  65. // WaName applies equality check predicate on the "wa_name" field. It's identical to WaNameEQ.
  66. func WaName(v string) predicate.Whatsapp {
  67. return predicate.Whatsapp(sql.FieldEQ(FieldWaName, v))
  68. }
  69. // Callback applies equality check predicate on the "callback" field. It's identical to CallbackEQ.
  70. func Callback(v string) predicate.Whatsapp {
  71. return predicate.Whatsapp(sql.FieldEQ(FieldCallback, v))
  72. }
  73. // AgentID applies equality check predicate on the "agent_id" field. It's identical to AgentIDEQ.
  74. func AgentID(v uint64) predicate.Whatsapp {
  75. return predicate.Whatsapp(sql.FieldEQ(FieldAgentID, v))
  76. }
  77. // Account applies equality check predicate on the "account" field. It's identical to AccountEQ.
  78. func Account(v string) predicate.Whatsapp {
  79. return predicate.Whatsapp(sql.FieldEQ(FieldAccount, v))
  80. }
  81. // Cc applies equality check predicate on the "cc" field. It's identical to CcEQ.
  82. func Cc(v string) predicate.Whatsapp {
  83. return predicate.Whatsapp(sql.FieldEQ(FieldCc, v))
  84. }
  85. // Phone applies equality check predicate on the "phone" field. It's identical to PhoneEQ.
  86. func Phone(v string) predicate.Whatsapp {
  87. return predicate.Whatsapp(sql.FieldEQ(FieldPhone, v))
  88. }
  89. // PhoneName applies equality check predicate on the "phone_name" field. It's identical to PhoneNameEQ.
  90. func PhoneName(v string) predicate.Whatsapp {
  91. return predicate.Whatsapp(sql.FieldEQ(FieldPhoneName, v))
  92. }
  93. // PhoneStatus applies equality check predicate on the "phone_status" field. It's identical to PhoneStatusEQ.
  94. func PhoneStatus(v int8) predicate.Whatsapp {
  95. return predicate.Whatsapp(sql.FieldEQ(FieldPhoneStatus, v))
  96. }
  97. // OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ.
  98. func OrganizationID(v uint64) predicate.Whatsapp {
  99. return predicate.Whatsapp(sql.FieldEQ(FieldOrganizationID, v))
  100. }
  101. // APIBase applies equality check predicate on the "api_base" field. It's identical to APIBaseEQ.
  102. func APIBase(v string) predicate.Whatsapp {
  103. return predicate.Whatsapp(sql.FieldEQ(FieldAPIBase, v))
  104. }
  105. // APIKey applies equality check predicate on the "api_key" field. It's identical to APIKeyEQ.
  106. func APIKey(v string) predicate.Whatsapp {
  107. return predicate.Whatsapp(sql.FieldEQ(FieldAPIKey, v))
  108. }
  109. // CreatedAtEQ applies the EQ predicate on the "created_at" field.
  110. func CreatedAtEQ(v time.Time) predicate.Whatsapp {
  111. return predicate.Whatsapp(sql.FieldEQ(FieldCreatedAt, v))
  112. }
  113. // CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
  114. func CreatedAtNEQ(v time.Time) predicate.Whatsapp {
  115. return predicate.Whatsapp(sql.FieldNEQ(FieldCreatedAt, v))
  116. }
  117. // CreatedAtIn applies the In predicate on the "created_at" field.
  118. func CreatedAtIn(vs ...time.Time) predicate.Whatsapp {
  119. return predicate.Whatsapp(sql.FieldIn(FieldCreatedAt, vs...))
  120. }
  121. // CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
  122. func CreatedAtNotIn(vs ...time.Time) predicate.Whatsapp {
  123. return predicate.Whatsapp(sql.FieldNotIn(FieldCreatedAt, vs...))
  124. }
  125. // CreatedAtGT applies the GT predicate on the "created_at" field.
  126. func CreatedAtGT(v time.Time) predicate.Whatsapp {
  127. return predicate.Whatsapp(sql.FieldGT(FieldCreatedAt, v))
  128. }
  129. // CreatedAtGTE applies the GTE predicate on the "created_at" field.
  130. func CreatedAtGTE(v time.Time) predicate.Whatsapp {
  131. return predicate.Whatsapp(sql.FieldGTE(FieldCreatedAt, v))
  132. }
  133. // CreatedAtLT applies the LT predicate on the "created_at" field.
  134. func CreatedAtLT(v time.Time) predicate.Whatsapp {
  135. return predicate.Whatsapp(sql.FieldLT(FieldCreatedAt, v))
  136. }
  137. // CreatedAtLTE applies the LTE predicate on the "created_at" field.
  138. func CreatedAtLTE(v time.Time) predicate.Whatsapp {
  139. return predicate.Whatsapp(sql.FieldLTE(FieldCreatedAt, v))
  140. }
  141. // UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
  142. func UpdatedAtEQ(v time.Time) predicate.Whatsapp {
  143. return predicate.Whatsapp(sql.FieldEQ(FieldUpdatedAt, v))
  144. }
  145. // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
  146. func UpdatedAtNEQ(v time.Time) predicate.Whatsapp {
  147. return predicate.Whatsapp(sql.FieldNEQ(FieldUpdatedAt, v))
  148. }
  149. // UpdatedAtIn applies the In predicate on the "updated_at" field.
  150. func UpdatedAtIn(vs ...time.Time) predicate.Whatsapp {
  151. return predicate.Whatsapp(sql.FieldIn(FieldUpdatedAt, vs...))
  152. }
  153. // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
  154. func UpdatedAtNotIn(vs ...time.Time) predicate.Whatsapp {
  155. return predicate.Whatsapp(sql.FieldNotIn(FieldUpdatedAt, vs...))
  156. }
  157. // UpdatedAtGT applies the GT predicate on the "updated_at" field.
  158. func UpdatedAtGT(v time.Time) predicate.Whatsapp {
  159. return predicate.Whatsapp(sql.FieldGT(FieldUpdatedAt, v))
  160. }
  161. // UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
  162. func UpdatedAtGTE(v time.Time) predicate.Whatsapp {
  163. return predicate.Whatsapp(sql.FieldGTE(FieldUpdatedAt, v))
  164. }
  165. // UpdatedAtLT applies the LT predicate on the "updated_at" field.
  166. func UpdatedAtLT(v time.Time) predicate.Whatsapp {
  167. return predicate.Whatsapp(sql.FieldLT(FieldUpdatedAt, v))
  168. }
  169. // UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
  170. func UpdatedAtLTE(v time.Time) predicate.Whatsapp {
  171. return predicate.Whatsapp(sql.FieldLTE(FieldUpdatedAt, v))
  172. }
  173. // StatusEQ applies the EQ predicate on the "status" field.
  174. func StatusEQ(v uint8) predicate.Whatsapp {
  175. return predicate.Whatsapp(sql.FieldEQ(FieldStatus, v))
  176. }
  177. // StatusNEQ applies the NEQ predicate on the "status" field.
  178. func StatusNEQ(v uint8) predicate.Whatsapp {
  179. return predicate.Whatsapp(sql.FieldNEQ(FieldStatus, v))
  180. }
  181. // StatusIn applies the In predicate on the "status" field.
  182. func StatusIn(vs ...uint8) predicate.Whatsapp {
  183. return predicate.Whatsapp(sql.FieldIn(FieldStatus, vs...))
  184. }
  185. // StatusNotIn applies the NotIn predicate on the "status" field.
  186. func StatusNotIn(vs ...uint8) predicate.Whatsapp {
  187. return predicate.Whatsapp(sql.FieldNotIn(FieldStatus, vs...))
  188. }
  189. // StatusGT applies the GT predicate on the "status" field.
  190. func StatusGT(v uint8) predicate.Whatsapp {
  191. return predicate.Whatsapp(sql.FieldGT(FieldStatus, v))
  192. }
  193. // StatusGTE applies the GTE predicate on the "status" field.
  194. func StatusGTE(v uint8) predicate.Whatsapp {
  195. return predicate.Whatsapp(sql.FieldGTE(FieldStatus, v))
  196. }
  197. // StatusLT applies the LT predicate on the "status" field.
  198. func StatusLT(v uint8) predicate.Whatsapp {
  199. return predicate.Whatsapp(sql.FieldLT(FieldStatus, v))
  200. }
  201. // StatusLTE applies the LTE predicate on the "status" field.
  202. func StatusLTE(v uint8) predicate.Whatsapp {
  203. return predicate.Whatsapp(sql.FieldLTE(FieldStatus, v))
  204. }
  205. // StatusIsNil applies the IsNil predicate on the "status" field.
  206. func StatusIsNil() predicate.Whatsapp {
  207. return predicate.Whatsapp(sql.FieldIsNull(FieldStatus))
  208. }
  209. // StatusNotNil applies the NotNil predicate on the "status" field.
  210. func StatusNotNil() predicate.Whatsapp {
  211. return predicate.Whatsapp(sql.FieldNotNull(FieldStatus))
  212. }
  213. // DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
  214. func DeletedAtEQ(v time.Time) predicate.Whatsapp {
  215. return predicate.Whatsapp(sql.FieldEQ(FieldDeletedAt, v))
  216. }
  217. // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
  218. func DeletedAtNEQ(v time.Time) predicate.Whatsapp {
  219. return predicate.Whatsapp(sql.FieldNEQ(FieldDeletedAt, v))
  220. }
  221. // DeletedAtIn applies the In predicate on the "deleted_at" field.
  222. func DeletedAtIn(vs ...time.Time) predicate.Whatsapp {
  223. return predicate.Whatsapp(sql.FieldIn(FieldDeletedAt, vs...))
  224. }
  225. // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
  226. func DeletedAtNotIn(vs ...time.Time) predicate.Whatsapp {
  227. return predicate.Whatsapp(sql.FieldNotIn(FieldDeletedAt, vs...))
  228. }
  229. // DeletedAtGT applies the GT predicate on the "deleted_at" field.
  230. func DeletedAtGT(v time.Time) predicate.Whatsapp {
  231. return predicate.Whatsapp(sql.FieldGT(FieldDeletedAt, v))
  232. }
  233. // DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
  234. func DeletedAtGTE(v time.Time) predicate.Whatsapp {
  235. return predicate.Whatsapp(sql.FieldGTE(FieldDeletedAt, v))
  236. }
  237. // DeletedAtLT applies the LT predicate on the "deleted_at" field.
  238. func DeletedAtLT(v time.Time) predicate.Whatsapp {
  239. return predicate.Whatsapp(sql.FieldLT(FieldDeletedAt, v))
  240. }
  241. // DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
  242. func DeletedAtLTE(v time.Time) predicate.Whatsapp {
  243. return predicate.Whatsapp(sql.FieldLTE(FieldDeletedAt, v))
  244. }
  245. // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
  246. func DeletedAtIsNil() predicate.Whatsapp {
  247. return predicate.Whatsapp(sql.FieldIsNull(FieldDeletedAt))
  248. }
  249. // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
  250. func DeletedAtNotNil() predicate.Whatsapp {
  251. return predicate.Whatsapp(sql.FieldNotNull(FieldDeletedAt))
  252. }
  253. // WaIDEQ applies the EQ predicate on the "wa_id" field.
  254. func WaIDEQ(v string) predicate.Whatsapp {
  255. return predicate.Whatsapp(sql.FieldEQ(FieldWaID, v))
  256. }
  257. // WaIDNEQ applies the NEQ predicate on the "wa_id" field.
  258. func WaIDNEQ(v string) predicate.Whatsapp {
  259. return predicate.Whatsapp(sql.FieldNEQ(FieldWaID, v))
  260. }
  261. // WaIDIn applies the In predicate on the "wa_id" field.
  262. func WaIDIn(vs ...string) predicate.Whatsapp {
  263. return predicate.Whatsapp(sql.FieldIn(FieldWaID, vs...))
  264. }
  265. // WaIDNotIn applies the NotIn predicate on the "wa_id" field.
  266. func WaIDNotIn(vs ...string) predicate.Whatsapp {
  267. return predicate.Whatsapp(sql.FieldNotIn(FieldWaID, vs...))
  268. }
  269. // WaIDGT applies the GT predicate on the "wa_id" field.
  270. func WaIDGT(v string) predicate.Whatsapp {
  271. return predicate.Whatsapp(sql.FieldGT(FieldWaID, v))
  272. }
  273. // WaIDGTE applies the GTE predicate on the "wa_id" field.
  274. func WaIDGTE(v string) predicate.Whatsapp {
  275. return predicate.Whatsapp(sql.FieldGTE(FieldWaID, v))
  276. }
  277. // WaIDLT applies the LT predicate on the "wa_id" field.
  278. func WaIDLT(v string) predicate.Whatsapp {
  279. return predicate.Whatsapp(sql.FieldLT(FieldWaID, v))
  280. }
  281. // WaIDLTE applies the LTE predicate on the "wa_id" field.
  282. func WaIDLTE(v string) predicate.Whatsapp {
  283. return predicate.Whatsapp(sql.FieldLTE(FieldWaID, v))
  284. }
  285. // WaIDContains applies the Contains predicate on the "wa_id" field.
  286. func WaIDContains(v string) predicate.Whatsapp {
  287. return predicate.Whatsapp(sql.FieldContains(FieldWaID, v))
  288. }
  289. // WaIDHasPrefix applies the HasPrefix predicate on the "wa_id" field.
  290. func WaIDHasPrefix(v string) predicate.Whatsapp {
  291. return predicate.Whatsapp(sql.FieldHasPrefix(FieldWaID, v))
  292. }
  293. // WaIDHasSuffix applies the HasSuffix predicate on the "wa_id" field.
  294. func WaIDHasSuffix(v string) predicate.Whatsapp {
  295. return predicate.Whatsapp(sql.FieldHasSuffix(FieldWaID, v))
  296. }
  297. // WaIDIsNil applies the IsNil predicate on the "wa_id" field.
  298. func WaIDIsNil() predicate.Whatsapp {
  299. return predicate.Whatsapp(sql.FieldIsNull(FieldWaID))
  300. }
  301. // WaIDNotNil applies the NotNil predicate on the "wa_id" field.
  302. func WaIDNotNil() predicate.Whatsapp {
  303. return predicate.Whatsapp(sql.FieldNotNull(FieldWaID))
  304. }
  305. // WaIDEqualFold applies the EqualFold predicate on the "wa_id" field.
  306. func WaIDEqualFold(v string) predicate.Whatsapp {
  307. return predicate.Whatsapp(sql.FieldEqualFold(FieldWaID, v))
  308. }
  309. // WaIDContainsFold applies the ContainsFold predicate on the "wa_id" field.
  310. func WaIDContainsFold(v string) predicate.Whatsapp {
  311. return predicate.Whatsapp(sql.FieldContainsFold(FieldWaID, v))
  312. }
  313. // WaNameEQ applies the EQ predicate on the "wa_name" field.
  314. func WaNameEQ(v string) predicate.Whatsapp {
  315. return predicate.Whatsapp(sql.FieldEQ(FieldWaName, v))
  316. }
  317. // WaNameNEQ applies the NEQ predicate on the "wa_name" field.
  318. func WaNameNEQ(v string) predicate.Whatsapp {
  319. return predicate.Whatsapp(sql.FieldNEQ(FieldWaName, v))
  320. }
  321. // WaNameIn applies the In predicate on the "wa_name" field.
  322. func WaNameIn(vs ...string) predicate.Whatsapp {
  323. return predicate.Whatsapp(sql.FieldIn(FieldWaName, vs...))
  324. }
  325. // WaNameNotIn applies the NotIn predicate on the "wa_name" field.
  326. func WaNameNotIn(vs ...string) predicate.Whatsapp {
  327. return predicate.Whatsapp(sql.FieldNotIn(FieldWaName, vs...))
  328. }
  329. // WaNameGT applies the GT predicate on the "wa_name" field.
  330. func WaNameGT(v string) predicate.Whatsapp {
  331. return predicate.Whatsapp(sql.FieldGT(FieldWaName, v))
  332. }
  333. // WaNameGTE applies the GTE predicate on the "wa_name" field.
  334. func WaNameGTE(v string) predicate.Whatsapp {
  335. return predicate.Whatsapp(sql.FieldGTE(FieldWaName, v))
  336. }
  337. // WaNameLT applies the LT predicate on the "wa_name" field.
  338. func WaNameLT(v string) predicate.Whatsapp {
  339. return predicate.Whatsapp(sql.FieldLT(FieldWaName, v))
  340. }
  341. // WaNameLTE applies the LTE predicate on the "wa_name" field.
  342. func WaNameLTE(v string) predicate.Whatsapp {
  343. return predicate.Whatsapp(sql.FieldLTE(FieldWaName, v))
  344. }
  345. // WaNameContains applies the Contains predicate on the "wa_name" field.
  346. func WaNameContains(v string) predicate.Whatsapp {
  347. return predicate.Whatsapp(sql.FieldContains(FieldWaName, v))
  348. }
  349. // WaNameHasPrefix applies the HasPrefix predicate on the "wa_name" field.
  350. func WaNameHasPrefix(v string) predicate.Whatsapp {
  351. return predicate.Whatsapp(sql.FieldHasPrefix(FieldWaName, v))
  352. }
  353. // WaNameHasSuffix applies the HasSuffix predicate on the "wa_name" field.
  354. func WaNameHasSuffix(v string) predicate.Whatsapp {
  355. return predicate.Whatsapp(sql.FieldHasSuffix(FieldWaName, v))
  356. }
  357. // WaNameIsNil applies the IsNil predicate on the "wa_name" field.
  358. func WaNameIsNil() predicate.Whatsapp {
  359. return predicate.Whatsapp(sql.FieldIsNull(FieldWaName))
  360. }
  361. // WaNameNotNil applies the NotNil predicate on the "wa_name" field.
  362. func WaNameNotNil() predicate.Whatsapp {
  363. return predicate.Whatsapp(sql.FieldNotNull(FieldWaName))
  364. }
  365. // WaNameEqualFold applies the EqualFold predicate on the "wa_name" field.
  366. func WaNameEqualFold(v string) predicate.Whatsapp {
  367. return predicate.Whatsapp(sql.FieldEqualFold(FieldWaName, v))
  368. }
  369. // WaNameContainsFold applies the ContainsFold predicate on the "wa_name" field.
  370. func WaNameContainsFold(v string) predicate.Whatsapp {
  371. return predicate.Whatsapp(sql.FieldContainsFold(FieldWaName, v))
  372. }
  373. // CallbackEQ applies the EQ predicate on the "callback" field.
  374. func CallbackEQ(v string) predicate.Whatsapp {
  375. return predicate.Whatsapp(sql.FieldEQ(FieldCallback, v))
  376. }
  377. // CallbackNEQ applies the NEQ predicate on the "callback" field.
  378. func CallbackNEQ(v string) predicate.Whatsapp {
  379. return predicate.Whatsapp(sql.FieldNEQ(FieldCallback, v))
  380. }
  381. // CallbackIn applies the In predicate on the "callback" field.
  382. func CallbackIn(vs ...string) predicate.Whatsapp {
  383. return predicate.Whatsapp(sql.FieldIn(FieldCallback, vs...))
  384. }
  385. // CallbackNotIn applies the NotIn predicate on the "callback" field.
  386. func CallbackNotIn(vs ...string) predicate.Whatsapp {
  387. return predicate.Whatsapp(sql.FieldNotIn(FieldCallback, vs...))
  388. }
  389. // CallbackGT applies the GT predicate on the "callback" field.
  390. func CallbackGT(v string) predicate.Whatsapp {
  391. return predicate.Whatsapp(sql.FieldGT(FieldCallback, v))
  392. }
  393. // CallbackGTE applies the GTE predicate on the "callback" field.
  394. func CallbackGTE(v string) predicate.Whatsapp {
  395. return predicate.Whatsapp(sql.FieldGTE(FieldCallback, v))
  396. }
  397. // CallbackLT applies the LT predicate on the "callback" field.
  398. func CallbackLT(v string) predicate.Whatsapp {
  399. return predicate.Whatsapp(sql.FieldLT(FieldCallback, v))
  400. }
  401. // CallbackLTE applies the LTE predicate on the "callback" field.
  402. func CallbackLTE(v string) predicate.Whatsapp {
  403. return predicate.Whatsapp(sql.FieldLTE(FieldCallback, v))
  404. }
  405. // CallbackContains applies the Contains predicate on the "callback" field.
  406. func CallbackContains(v string) predicate.Whatsapp {
  407. return predicate.Whatsapp(sql.FieldContains(FieldCallback, v))
  408. }
  409. // CallbackHasPrefix applies the HasPrefix predicate on the "callback" field.
  410. func CallbackHasPrefix(v string) predicate.Whatsapp {
  411. return predicate.Whatsapp(sql.FieldHasPrefix(FieldCallback, v))
  412. }
  413. // CallbackHasSuffix applies the HasSuffix predicate on the "callback" field.
  414. func CallbackHasSuffix(v string) predicate.Whatsapp {
  415. return predicate.Whatsapp(sql.FieldHasSuffix(FieldCallback, v))
  416. }
  417. // CallbackIsNil applies the IsNil predicate on the "callback" field.
  418. func CallbackIsNil() predicate.Whatsapp {
  419. return predicate.Whatsapp(sql.FieldIsNull(FieldCallback))
  420. }
  421. // CallbackNotNil applies the NotNil predicate on the "callback" field.
  422. func CallbackNotNil() predicate.Whatsapp {
  423. return predicate.Whatsapp(sql.FieldNotNull(FieldCallback))
  424. }
  425. // CallbackEqualFold applies the EqualFold predicate on the "callback" field.
  426. func CallbackEqualFold(v string) predicate.Whatsapp {
  427. return predicate.Whatsapp(sql.FieldEqualFold(FieldCallback, v))
  428. }
  429. // CallbackContainsFold applies the ContainsFold predicate on the "callback" field.
  430. func CallbackContainsFold(v string) predicate.Whatsapp {
  431. return predicate.Whatsapp(sql.FieldContainsFold(FieldCallback, v))
  432. }
  433. // AgentIDEQ applies the EQ predicate on the "agent_id" field.
  434. func AgentIDEQ(v uint64) predicate.Whatsapp {
  435. return predicate.Whatsapp(sql.FieldEQ(FieldAgentID, v))
  436. }
  437. // AgentIDNEQ applies the NEQ predicate on the "agent_id" field.
  438. func AgentIDNEQ(v uint64) predicate.Whatsapp {
  439. return predicate.Whatsapp(sql.FieldNEQ(FieldAgentID, v))
  440. }
  441. // AgentIDIn applies the In predicate on the "agent_id" field.
  442. func AgentIDIn(vs ...uint64) predicate.Whatsapp {
  443. return predicate.Whatsapp(sql.FieldIn(FieldAgentID, vs...))
  444. }
  445. // AgentIDNotIn applies the NotIn predicate on the "agent_id" field.
  446. func AgentIDNotIn(vs ...uint64) predicate.Whatsapp {
  447. return predicate.Whatsapp(sql.FieldNotIn(FieldAgentID, vs...))
  448. }
  449. // AccountEQ applies the EQ predicate on the "account" field.
  450. func AccountEQ(v string) predicate.Whatsapp {
  451. return predicate.Whatsapp(sql.FieldEQ(FieldAccount, v))
  452. }
  453. // AccountNEQ applies the NEQ predicate on the "account" field.
  454. func AccountNEQ(v string) predicate.Whatsapp {
  455. return predicate.Whatsapp(sql.FieldNEQ(FieldAccount, v))
  456. }
  457. // AccountIn applies the In predicate on the "account" field.
  458. func AccountIn(vs ...string) predicate.Whatsapp {
  459. return predicate.Whatsapp(sql.FieldIn(FieldAccount, vs...))
  460. }
  461. // AccountNotIn applies the NotIn predicate on the "account" field.
  462. func AccountNotIn(vs ...string) predicate.Whatsapp {
  463. return predicate.Whatsapp(sql.FieldNotIn(FieldAccount, vs...))
  464. }
  465. // AccountGT applies the GT predicate on the "account" field.
  466. func AccountGT(v string) predicate.Whatsapp {
  467. return predicate.Whatsapp(sql.FieldGT(FieldAccount, v))
  468. }
  469. // AccountGTE applies the GTE predicate on the "account" field.
  470. func AccountGTE(v string) predicate.Whatsapp {
  471. return predicate.Whatsapp(sql.FieldGTE(FieldAccount, v))
  472. }
  473. // AccountLT applies the LT predicate on the "account" field.
  474. func AccountLT(v string) predicate.Whatsapp {
  475. return predicate.Whatsapp(sql.FieldLT(FieldAccount, v))
  476. }
  477. // AccountLTE applies the LTE predicate on the "account" field.
  478. func AccountLTE(v string) predicate.Whatsapp {
  479. return predicate.Whatsapp(sql.FieldLTE(FieldAccount, v))
  480. }
  481. // AccountContains applies the Contains predicate on the "account" field.
  482. func AccountContains(v string) predicate.Whatsapp {
  483. return predicate.Whatsapp(sql.FieldContains(FieldAccount, v))
  484. }
  485. // AccountHasPrefix applies the HasPrefix predicate on the "account" field.
  486. func AccountHasPrefix(v string) predicate.Whatsapp {
  487. return predicate.Whatsapp(sql.FieldHasPrefix(FieldAccount, v))
  488. }
  489. // AccountHasSuffix applies the HasSuffix predicate on the "account" field.
  490. func AccountHasSuffix(v string) predicate.Whatsapp {
  491. return predicate.Whatsapp(sql.FieldHasSuffix(FieldAccount, v))
  492. }
  493. // AccountIsNil applies the IsNil predicate on the "account" field.
  494. func AccountIsNil() predicate.Whatsapp {
  495. return predicate.Whatsapp(sql.FieldIsNull(FieldAccount))
  496. }
  497. // AccountNotNil applies the NotNil predicate on the "account" field.
  498. func AccountNotNil() predicate.Whatsapp {
  499. return predicate.Whatsapp(sql.FieldNotNull(FieldAccount))
  500. }
  501. // AccountEqualFold applies the EqualFold predicate on the "account" field.
  502. func AccountEqualFold(v string) predicate.Whatsapp {
  503. return predicate.Whatsapp(sql.FieldEqualFold(FieldAccount, v))
  504. }
  505. // AccountContainsFold applies the ContainsFold predicate on the "account" field.
  506. func AccountContainsFold(v string) predicate.Whatsapp {
  507. return predicate.Whatsapp(sql.FieldContainsFold(FieldAccount, v))
  508. }
  509. // CcEQ applies the EQ predicate on the "cc" field.
  510. func CcEQ(v string) predicate.Whatsapp {
  511. return predicate.Whatsapp(sql.FieldEQ(FieldCc, v))
  512. }
  513. // CcNEQ applies the NEQ predicate on the "cc" field.
  514. func CcNEQ(v string) predicate.Whatsapp {
  515. return predicate.Whatsapp(sql.FieldNEQ(FieldCc, v))
  516. }
  517. // CcIn applies the In predicate on the "cc" field.
  518. func CcIn(vs ...string) predicate.Whatsapp {
  519. return predicate.Whatsapp(sql.FieldIn(FieldCc, vs...))
  520. }
  521. // CcNotIn applies the NotIn predicate on the "cc" field.
  522. func CcNotIn(vs ...string) predicate.Whatsapp {
  523. return predicate.Whatsapp(sql.FieldNotIn(FieldCc, vs...))
  524. }
  525. // CcGT applies the GT predicate on the "cc" field.
  526. func CcGT(v string) predicate.Whatsapp {
  527. return predicate.Whatsapp(sql.FieldGT(FieldCc, v))
  528. }
  529. // CcGTE applies the GTE predicate on the "cc" field.
  530. func CcGTE(v string) predicate.Whatsapp {
  531. return predicate.Whatsapp(sql.FieldGTE(FieldCc, v))
  532. }
  533. // CcLT applies the LT predicate on the "cc" field.
  534. func CcLT(v string) predicate.Whatsapp {
  535. return predicate.Whatsapp(sql.FieldLT(FieldCc, v))
  536. }
  537. // CcLTE applies the LTE predicate on the "cc" field.
  538. func CcLTE(v string) predicate.Whatsapp {
  539. return predicate.Whatsapp(sql.FieldLTE(FieldCc, v))
  540. }
  541. // CcContains applies the Contains predicate on the "cc" field.
  542. func CcContains(v string) predicate.Whatsapp {
  543. return predicate.Whatsapp(sql.FieldContains(FieldCc, v))
  544. }
  545. // CcHasPrefix applies the HasPrefix predicate on the "cc" field.
  546. func CcHasPrefix(v string) predicate.Whatsapp {
  547. return predicate.Whatsapp(sql.FieldHasPrefix(FieldCc, v))
  548. }
  549. // CcHasSuffix applies the HasSuffix predicate on the "cc" field.
  550. func CcHasSuffix(v string) predicate.Whatsapp {
  551. return predicate.Whatsapp(sql.FieldHasSuffix(FieldCc, v))
  552. }
  553. // CcEqualFold applies the EqualFold predicate on the "cc" field.
  554. func CcEqualFold(v string) predicate.Whatsapp {
  555. return predicate.Whatsapp(sql.FieldEqualFold(FieldCc, v))
  556. }
  557. // CcContainsFold applies the ContainsFold predicate on the "cc" field.
  558. func CcContainsFold(v string) predicate.Whatsapp {
  559. return predicate.Whatsapp(sql.FieldContainsFold(FieldCc, v))
  560. }
  561. // PhoneEQ applies the EQ predicate on the "phone" field.
  562. func PhoneEQ(v string) predicate.Whatsapp {
  563. return predicate.Whatsapp(sql.FieldEQ(FieldPhone, v))
  564. }
  565. // PhoneNEQ applies the NEQ predicate on the "phone" field.
  566. func PhoneNEQ(v string) predicate.Whatsapp {
  567. return predicate.Whatsapp(sql.FieldNEQ(FieldPhone, v))
  568. }
  569. // PhoneIn applies the In predicate on the "phone" field.
  570. func PhoneIn(vs ...string) predicate.Whatsapp {
  571. return predicate.Whatsapp(sql.FieldIn(FieldPhone, vs...))
  572. }
  573. // PhoneNotIn applies the NotIn predicate on the "phone" field.
  574. func PhoneNotIn(vs ...string) predicate.Whatsapp {
  575. return predicate.Whatsapp(sql.FieldNotIn(FieldPhone, vs...))
  576. }
  577. // PhoneGT applies the GT predicate on the "phone" field.
  578. func PhoneGT(v string) predicate.Whatsapp {
  579. return predicate.Whatsapp(sql.FieldGT(FieldPhone, v))
  580. }
  581. // PhoneGTE applies the GTE predicate on the "phone" field.
  582. func PhoneGTE(v string) predicate.Whatsapp {
  583. return predicate.Whatsapp(sql.FieldGTE(FieldPhone, v))
  584. }
  585. // PhoneLT applies the LT predicate on the "phone" field.
  586. func PhoneLT(v string) predicate.Whatsapp {
  587. return predicate.Whatsapp(sql.FieldLT(FieldPhone, v))
  588. }
  589. // PhoneLTE applies the LTE predicate on the "phone" field.
  590. func PhoneLTE(v string) predicate.Whatsapp {
  591. return predicate.Whatsapp(sql.FieldLTE(FieldPhone, v))
  592. }
  593. // PhoneContains applies the Contains predicate on the "phone" field.
  594. func PhoneContains(v string) predicate.Whatsapp {
  595. return predicate.Whatsapp(sql.FieldContains(FieldPhone, v))
  596. }
  597. // PhoneHasPrefix applies the HasPrefix predicate on the "phone" field.
  598. func PhoneHasPrefix(v string) predicate.Whatsapp {
  599. return predicate.Whatsapp(sql.FieldHasPrefix(FieldPhone, v))
  600. }
  601. // PhoneHasSuffix applies the HasSuffix predicate on the "phone" field.
  602. func PhoneHasSuffix(v string) predicate.Whatsapp {
  603. return predicate.Whatsapp(sql.FieldHasSuffix(FieldPhone, v))
  604. }
  605. // PhoneEqualFold applies the EqualFold predicate on the "phone" field.
  606. func PhoneEqualFold(v string) predicate.Whatsapp {
  607. return predicate.Whatsapp(sql.FieldEqualFold(FieldPhone, v))
  608. }
  609. // PhoneContainsFold applies the ContainsFold predicate on the "phone" field.
  610. func PhoneContainsFold(v string) predicate.Whatsapp {
  611. return predicate.Whatsapp(sql.FieldContainsFold(FieldPhone, v))
  612. }
  613. // PhoneNameEQ applies the EQ predicate on the "phone_name" field.
  614. func PhoneNameEQ(v string) predicate.Whatsapp {
  615. return predicate.Whatsapp(sql.FieldEQ(FieldPhoneName, v))
  616. }
  617. // PhoneNameNEQ applies the NEQ predicate on the "phone_name" field.
  618. func PhoneNameNEQ(v string) predicate.Whatsapp {
  619. return predicate.Whatsapp(sql.FieldNEQ(FieldPhoneName, v))
  620. }
  621. // PhoneNameIn applies the In predicate on the "phone_name" field.
  622. func PhoneNameIn(vs ...string) predicate.Whatsapp {
  623. return predicate.Whatsapp(sql.FieldIn(FieldPhoneName, vs...))
  624. }
  625. // PhoneNameNotIn applies the NotIn predicate on the "phone_name" field.
  626. func PhoneNameNotIn(vs ...string) predicate.Whatsapp {
  627. return predicate.Whatsapp(sql.FieldNotIn(FieldPhoneName, vs...))
  628. }
  629. // PhoneNameGT applies the GT predicate on the "phone_name" field.
  630. func PhoneNameGT(v string) predicate.Whatsapp {
  631. return predicate.Whatsapp(sql.FieldGT(FieldPhoneName, v))
  632. }
  633. // PhoneNameGTE applies the GTE predicate on the "phone_name" field.
  634. func PhoneNameGTE(v string) predicate.Whatsapp {
  635. return predicate.Whatsapp(sql.FieldGTE(FieldPhoneName, v))
  636. }
  637. // PhoneNameLT applies the LT predicate on the "phone_name" field.
  638. func PhoneNameLT(v string) predicate.Whatsapp {
  639. return predicate.Whatsapp(sql.FieldLT(FieldPhoneName, v))
  640. }
  641. // PhoneNameLTE applies the LTE predicate on the "phone_name" field.
  642. func PhoneNameLTE(v string) predicate.Whatsapp {
  643. return predicate.Whatsapp(sql.FieldLTE(FieldPhoneName, v))
  644. }
  645. // PhoneNameContains applies the Contains predicate on the "phone_name" field.
  646. func PhoneNameContains(v string) predicate.Whatsapp {
  647. return predicate.Whatsapp(sql.FieldContains(FieldPhoneName, v))
  648. }
  649. // PhoneNameHasPrefix applies the HasPrefix predicate on the "phone_name" field.
  650. func PhoneNameHasPrefix(v string) predicate.Whatsapp {
  651. return predicate.Whatsapp(sql.FieldHasPrefix(FieldPhoneName, v))
  652. }
  653. // PhoneNameHasSuffix applies the HasSuffix predicate on the "phone_name" field.
  654. func PhoneNameHasSuffix(v string) predicate.Whatsapp {
  655. return predicate.Whatsapp(sql.FieldHasSuffix(FieldPhoneName, v))
  656. }
  657. // PhoneNameEqualFold applies the EqualFold predicate on the "phone_name" field.
  658. func PhoneNameEqualFold(v string) predicate.Whatsapp {
  659. return predicate.Whatsapp(sql.FieldEqualFold(FieldPhoneName, v))
  660. }
  661. // PhoneNameContainsFold applies the ContainsFold predicate on the "phone_name" field.
  662. func PhoneNameContainsFold(v string) predicate.Whatsapp {
  663. return predicate.Whatsapp(sql.FieldContainsFold(FieldPhoneName, v))
  664. }
  665. // PhoneStatusEQ applies the EQ predicate on the "phone_status" field.
  666. func PhoneStatusEQ(v int8) predicate.Whatsapp {
  667. return predicate.Whatsapp(sql.FieldEQ(FieldPhoneStatus, v))
  668. }
  669. // PhoneStatusNEQ applies the NEQ predicate on the "phone_status" field.
  670. func PhoneStatusNEQ(v int8) predicate.Whatsapp {
  671. return predicate.Whatsapp(sql.FieldNEQ(FieldPhoneStatus, v))
  672. }
  673. // PhoneStatusIn applies the In predicate on the "phone_status" field.
  674. func PhoneStatusIn(vs ...int8) predicate.Whatsapp {
  675. return predicate.Whatsapp(sql.FieldIn(FieldPhoneStatus, vs...))
  676. }
  677. // PhoneStatusNotIn applies the NotIn predicate on the "phone_status" field.
  678. func PhoneStatusNotIn(vs ...int8) predicate.Whatsapp {
  679. return predicate.Whatsapp(sql.FieldNotIn(FieldPhoneStatus, vs...))
  680. }
  681. // PhoneStatusGT applies the GT predicate on the "phone_status" field.
  682. func PhoneStatusGT(v int8) predicate.Whatsapp {
  683. return predicate.Whatsapp(sql.FieldGT(FieldPhoneStatus, v))
  684. }
  685. // PhoneStatusGTE applies the GTE predicate on the "phone_status" field.
  686. func PhoneStatusGTE(v int8) predicate.Whatsapp {
  687. return predicate.Whatsapp(sql.FieldGTE(FieldPhoneStatus, v))
  688. }
  689. // PhoneStatusLT applies the LT predicate on the "phone_status" field.
  690. func PhoneStatusLT(v int8) predicate.Whatsapp {
  691. return predicate.Whatsapp(sql.FieldLT(FieldPhoneStatus, v))
  692. }
  693. // PhoneStatusLTE applies the LTE predicate on the "phone_status" field.
  694. func PhoneStatusLTE(v int8) predicate.Whatsapp {
  695. return predicate.Whatsapp(sql.FieldLTE(FieldPhoneStatus, v))
  696. }
  697. // OrganizationIDEQ applies the EQ predicate on the "organization_id" field.
  698. func OrganizationIDEQ(v uint64) predicate.Whatsapp {
  699. return predicate.Whatsapp(sql.FieldEQ(FieldOrganizationID, v))
  700. }
  701. // OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field.
  702. func OrganizationIDNEQ(v uint64) predicate.Whatsapp {
  703. return predicate.Whatsapp(sql.FieldNEQ(FieldOrganizationID, v))
  704. }
  705. // OrganizationIDIn applies the In predicate on the "organization_id" field.
  706. func OrganizationIDIn(vs ...uint64) predicate.Whatsapp {
  707. return predicate.Whatsapp(sql.FieldIn(FieldOrganizationID, vs...))
  708. }
  709. // OrganizationIDNotIn applies the NotIn predicate on the "organization_id" field.
  710. func OrganizationIDNotIn(vs ...uint64) predicate.Whatsapp {
  711. return predicate.Whatsapp(sql.FieldNotIn(FieldOrganizationID, vs...))
  712. }
  713. // OrganizationIDGT applies the GT predicate on the "organization_id" field.
  714. func OrganizationIDGT(v uint64) predicate.Whatsapp {
  715. return predicate.Whatsapp(sql.FieldGT(FieldOrganizationID, v))
  716. }
  717. // OrganizationIDGTE applies the GTE predicate on the "organization_id" field.
  718. func OrganizationIDGTE(v uint64) predicate.Whatsapp {
  719. return predicate.Whatsapp(sql.FieldGTE(FieldOrganizationID, v))
  720. }
  721. // OrganizationIDLT applies the LT predicate on the "organization_id" field.
  722. func OrganizationIDLT(v uint64) predicate.Whatsapp {
  723. return predicate.Whatsapp(sql.FieldLT(FieldOrganizationID, v))
  724. }
  725. // OrganizationIDLTE applies the LTE predicate on the "organization_id" field.
  726. func OrganizationIDLTE(v uint64) predicate.Whatsapp {
  727. return predicate.Whatsapp(sql.FieldLTE(FieldOrganizationID, v))
  728. }
  729. // OrganizationIDIsNil applies the IsNil predicate on the "organization_id" field.
  730. func OrganizationIDIsNil() predicate.Whatsapp {
  731. return predicate.Whatsapp(sql.FieldIsNull(FieldOrganizationID))
  732. }
  733. // OrganizationIDNotNil applies the NotNil predicate on the "organization_id" field.
  734. func OrganizationIDNotNil() predicate.Whatsapp {
  735. return predicate.Whatsapp(sql.FieldNotNull(FieldOrganizationID))
  736. }
  737. // APIBaseEQ applies the EQ predicate on the "api_base" field.
  738. func APIBaseEQ(v string) predicate.Whatsapp {
  739. return predicate.Whatsapp(sql.FieldEQ(FieldAPIBase, v))
  740. }
  741. // APIBaseNEQ applies the NEQ predicate on the "api_base" field.
  742. func APIBaseNEQ(v string) predicate.Whatsapp {
  743. return predicate.Whatsapp(sql.FieldNEQ(FieldAPIBase, v))
  744. }
  745. // APIBaseIn applies the In predicate on the "api_base" field.
  746. func APIBaseIn(vs ...string) predicate.Whatsapp {
  747. return predicate.Whatsapp(sql.FieldIn(FieldAPIBase, vs...))
  748. }
  749. // APIBaseNotIn applies the NotIn predicate on the "api_base" field.
  750. func APIBaseNotIn(vs ...string) predicate.Whatsapp {
  751. return predicate.Whatsapp(sql.FieldNotIn(FieldAPIBase, vs...))
  752. }
  753. // APIBaseGT applies the GT predicate on the "api_base" field.
  754. func APIBaseGT(v string) predicate.Whatsapp {
  755. return predicate.Whatsapp(sql.FieldGT(FieldAPIBase, v))
  756. }
  757. // APIBaseGTE applies the GTE predicate on the "api_base" field.
  758. func APIBaseGTE(v string) predicate.Whatsapp {
  759. return predicate.Whatsapp(sql.FieldGTE(FieldAPIBase, v))
  760. }
  761. // APIBaseLT applies the LT predicate on the "api_base" field.
  762. func APIBaseLT(v string) predicate.Whatsapp {
  763. return predicate.Whatsapp(sql.FieldLT(FieldAPIBase, v))
  764. }
  765. // APIBaseLTE applies the LTE predicate on the "api_base" field.
  766. func APIBaseLTE(v string) predicate.Whatsapp {
  767. return predicate.Whatsapp(sql.FieldLTE(FieldAPIBase, v))
  768. }
  769. // APIBaseContains applies the Contains predicate on the "api_base" field.
  770. func APIBaseContains(v string) predicate.Whatsapp {
  771. return predicate.Whatsapp(sql.FieldContains(FieldAPIBase, v))
  772. }
  773. // APIBaseHasPrefix applies the HasPrefix predicate on the "api_base" field.
  774. func APIBaseHasPrefix(v string) predicate.Whatsapp {
  775. return predicate.Whatsapp(sql.FieldHasPrefix(FieldAPIBase, v))
  776. }
  777. // APIBaseHasSuffix applies the HasSuffix predicate on the "api_base" field.
  778. func APIBaseHasSuffix(v string) predicate.Whatsapp {
  779. return predicate.Whatsapp(sql.FieldHasSuffix(FieldAPIBase, v))
  780. }
  781. // APIBaseIsNil applies the IsNil predicate on the "api_base" field.
  782. func APIBaseIsNil() predicate.Whatsapp {
  783. return predicate.Whatsapp(sql.FieldIsNull(FieldAPIBase))
  784. }
  785. // APIBaseNotNil applies the NotNil predicate on the "api_base" field.
  786. func APIBaseNotNil() predicate.Whatsapp {
  787. return predicate.Whatsapp(sql.FieldNotNull(FieldAPIBase))
  788. }
  789. // APIBaseEqualFold applies the EqualFold predicate on the "api_base" field.
  790. func APIBaseEqualFold(v string) predicate.Whatsapp {
  791. return predicate.Whatsapp(sql.FieldEqualFold(FieldAPIBase, v))
  792. }
  793. // APIBaseContainsFold applies the ContainsFold predicate on the "api_base" field.
  794. func APIBaseContainsFold(v string) predicate.Whatsapp {
  795. return predicate.Whatsapp(sql.FieldContainsFold(FieldAPIBase, v))
  796. }
  797. // APIKeyEQ applies the EQ predicate on the "api_key" field.
  798. func APIKeyEQ(v string) predicate.Whatsapp {
  799. return predicate.Whatsapp(sql.FieldEQ(FieldAPIKey, v))
  800. }
  801. // APIKeyNEQ applies the NEQ predicate on the "api_key" field.
  802. func APIKeyNEQ(v string) predicate.Whatsapp {
  803. return predicate.Whatsapp(sql.FieldNEQ(FieldAPIKey, v))
  804. }
  805. // APIKeyIn applies the In predicate on the "api_key" field.
  806. func APIKeyIn(vs ...string) predicate.Whatsapp {
  807. return predicate.Whatsapp(sql.FieldIn(FieldAPIKey, vs...))
  808. }
  809. // APIKeyNotIn applies the NotIn predicate on the "api_key" field.
  810. func APIKeyNotIn(vs ...string) predicate.Whatsapp {
  811. return predicate.Whatsapp(sql.FieldNotIn(FieldAPIKey, vs...))
  812. }
  813. // APIKeyGT applies the GT predicate on the "api_key" field.
  814. func APIKeyGT(v string) predicate.Whatsapp {
  815. return predicate.Whatsapp(sql.FieldGT(FieldAPIKey, v))
  816. }
  817. // APIKeyGTE applies the GTE predicate on the "api_key" field.
  818. func APIKeyGTE(v string) predicate.Whatsapp {
  819. return predicate.Whatsapp(sql.FieldGTE(FieldAPIKey, v))
  820. }
  821. // APIKeyLT applies the LT predicate on the "api_key" field.
  822. func APIKeyLT(v string) predicate.Whatsapp {
  823. return predicate.Whatsapp(sql.FieldLT(FieldAPIKey, v))
  824. }
  825. // APIKeyLTE applies the LTE predicate on the "api_key" field.
  826. func APIKeyLTE(v string) predicate.Whatsapp {
  827. return predicate.Whatsapp(sql.FieldLTE(FieldAPIKey, v))
  828. }
  829. // APIKeyContains applies the Contains predicate on the "api_key" field.
  830. func APIKeyContains(v string) predicate.Whatsapp {
  831. return predicate.Whatsapp(sql.FieldContains(FieldAPIKey, v))
  832. }
  833. // APIKeyHasPrefix applies the HasPrefix predicate on the "api_key" field.
  834. func APIKeyHasPrefix(v string) predicate.Whatsapp {
  835. return predicate.Whatsapp(sql.FieldHasPrefix(FieldAPIKey, v))
  836. }
  837. // APIKeyHasSuffix applies the HasSuffix predicate on the "api_key" field.
  838. func APIKeyHasSuffix(v string) predicate.Whatsapp {
  839. return predicate.Whatsapp(sql.FieldHasSuffix(FieldAPIKey, v))
  840. }
  841. // APIKeyIsNil applies the IsNil predicate on the "api_key" field.
  842. func APIKeyIsNil() predicate.Whatsapp {
  843. return predicate.Whatsapp(sql.FieldIsNull(FieldAPIKey))
  844. }
  845. // APIKeyNotNil applies the NotNil predicate on the "api_key" field.
  846. func APIKeyNotNil() predicate.Whatsapp {
  847. return predicate.Whatsapp(sql.FieldNotNull(FieldAPIKey))
  848. }
  849. // APIKeyEqualFold applies the EqualFold predicate on the "api_key" field.
  850. func APIKeyEqualFold(v string) predicate.Whatsapp {
  851. return predicate.Whatsapp(sql.FieldEqualFold(FieldAPIKey, v))
  852. }
  853. // APIKeyContainsFold applies the ContainsFold predicate on the "api_key" field.
  854. func APIKeyContainsFold(v string) predicate.Whatsapp {
  855. return predicate.Whatsapp(sql.FieldContainsFold(FieldAPIKey, v))
  856. }
  857. // AllowListIsNil applies the IsNil predicate on the "allow_list" field.
  858. func AllowListIsNil() predicate.Whatsapp {
  859. return predicate.Whatsapp(sql.FieldIsNull(FieldAllowList))
  860. }
  861. // AllowListNotNil applies the NotNil predicate on the "allow_list" field.
  862. func AllowListNotNil() predicate.Whatsapp {
  863. return predicate.Whatsapp(sql.FieldNotNull(FieldAllowList))
  864. }
  865. // GroupAllowListIsNil applies the IsNil predicate on the "group_allow_list" field.
  866. func GroupAllowListIsNil() predicate.Whatsapp {
  867. return predicate.Whatsapp(sql.FieldIsNull(FieldGroupAllowList))
  868. }
  869. // GroupAllowListNotNil applies the NotNil predicate on the "group_allow_list" field.
  870. func GroupAllowListNotNil() predicate.Whatsapp {
  871. return predicate.Whatsapp(sql.FieldNotNull(FieldGroupAllowList))
  872. }
  873. // BlockListIsNil applies the IsNil predicate on the "block_list" field.
  874. func BlockListIsNil() predicate.Whatsapp {
  875. return predicate.Whatsapp(sql.FieldIsNull(FieldBlockList))
  876. }
  877. // BlockListNotNil applies the NotNil predicate on the "block_list" field.
  878. func BlockListNotNil() predicate.Whatsapp {
  879. return predicate.Whatsapp(sql.FieldNotNull(FieldBlockList))
  880. }
  881. // GroupBlockListIsNil applies the IsNil predicate on the "group_block_list" field.
  882. func GroupBlockListIsNil() predicate.Whatsapp {
  883. return predicate.Whatsapp(sql.FieldIsNull(FieldGroupBlockList))
  884. }
  885. // GroupBlockListNotNil applies the NotNil predicate on the "group_block_list" field.
  886. func GroupBlockListNotNil() predicate.Whatsapp {
  887. return predicate.Whatsapp(sql.FieldNotNull(FieldGroupBlockList))
  888. }
  889. // HasAgent applies the HasEdge predicate on the "agent" edge.
  890. func HasAgent() predicate.Whatsapp {
  891. return predicate.Whatsapp(func(s *sql.Selector) {
  892. step := sqlgraph.NewStep(
  893. sqlgraph.From(Table, FieldID),
  894. sqlgraph.Edge(sqlgraph.M2O, true, AgentTable, AgentColumn),
  895. )
  896. sqlgraph.HasNeighbors(s, step)
  897. })
  898. }
  899. // HasAgentWith applies the HasEdge predicate on the "agent" edge with a given conditions (other predicates).
  900. func HasAgentWith(preds ...predicate.Agent) predicate.Whatsapp {
  901. return predicate.Whatsapp(func(s *sql.Selector) {
  902. step := newAgentStep()
  903. sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
  904. for _, p := range preds {
  905. p(s)
  906. }
  907. })
  908. })
  909. }
  910. // And groups predicates with the AND operator between them.
  911. func And(predicates ...predicate.Whatsapp) predicate.Whatsapp {
  912. return predicate.Whatsapp(sql.AndPredicates(predicates...))
  913. }
  914. // Or groups predicates with the OR operator between them.
  915. func Or(predicates ...predicate.Whatsapp) predicate.Whatsapp {
  916. return predicate.Whatsapp(sql.OrPredicates(predicates...))
  917. }
  918. // Not applies the not operator on the given predicate.
  919. func Not(p predicate.Whatsapp) predicate.Whatsapp {
  920. return predicate.Whatsapp(sql.NotPredicates(p))
  921. }