1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207 |
- // Code generated by ent, DO NOT EDIT.
- package wx
- import (
- "time"
- "wechat-api/ent/predicate"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- )
- // ID filters vertices based on their ID field.
- func ID(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldID, id))
- }
- // IDEQ applies the EQ predicate on the ID field.
- func IDEQ(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldID, id))
- }
- // IDNEQ applies the NEQ predicate on the ID field.
- func IDNEQ(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldID, id))
- }
- // IDIn applies the In predicate on the ID field.
- func IDIn(ids ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldID, ids...))
- }
- // IDNotIn applies the NotIn predicate on the ID field.
- func IDNotIn(ids ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldID, ids...))
- }
- // IDGT applies the GT predicate on the ID field.
- func IDGT(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldID, id))
- }
- // IDGTE applies the GTE predicate on the ID field.
- func IDGTE(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldID, id))
- }
- // IDLT applies the LT predicate on the ID field.
- func IDLT(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldID, id))
- }
- // IDLTE applies the LTE predicate on the ID field.
- func IDLTE(id uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldID, id))
- }
- // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
- func CreatedAt(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCreatedAt, v))
- }
- // UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
- func UpdatedAt(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldUpdatedAt, v))
- }
- // Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
- func Status(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldStatus, v))
- }
- // DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
- func DeletedAt(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldDeletedAt, v))
- }
- // ServerID applies equality check predicate on the "server_id" field. It's identical to ServerIDEQ.
- func ServerID(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldServerID, v))
- }
- // Port applies equality check predicate on the "port" field. It's identical to PortEQ.
- func Port(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldPort, v))
- }
- // ProcessID applies equality check predicate on the "process_id" field. It's identical to ProcessIDEQ.
- func ProcessID(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldProcessID, v))
- }
- // Callback applies equality check predicate on the "callback" field. It's identical to CallbackEQ.
- func Callback(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCallback, v))
- }
- // Wxid applies equality check predicate on the "wxid" field. It's identical to WxidEQ.
- func Wxid(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldWxid, v))
- }
- // Account applies equality check predicate on the "account" field. It's identical to AccountEQ.
- func Account(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAccount, v))
- }
- // Nickname applies equality check predicate on the "nickname" field. It's identical to NicknameEQ.
- func Nickname(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldNickname, v))
- }
- // Tel applies equality check predicate on the "tel" field. It's identical to TelEQ.
- func Tel(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldTel, v))
- }
- // HeadBig applies equality check predicate on the "head_big" field. It's identical to HeadBigEQ.
- func HeadBig(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldHeadBig, v))
- }
- // OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ.
- func OrganizationID(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldOrganizationID, v))
- }
- // AgentID applies equality check predicate on the "agent_id" field. It's identical to AgentIDEQ.
- func AgentID(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAgentID, v))
- }
- // APIBase applies equality check predicate on the "api_base" field. It's identical to APIBaseEQ.
- func APIBase(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAPIBase, v))
- }
- // APIKey applies equality check predicate on the "api_key" field. It's identical to APIKeyEQ.
- func APIKey(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAPIKey, v))
- }
- // Ctype applies equality check predicate on the "ctype" field. It's identical to CtypeEQ.
- func Ctype(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCtype, v))
- }
- // CreatedAtEQ applies the EQ predicate on the "created_at" field.
- func CreatedAtEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCreatedAt, v))
- }
- // CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
- func CreatedAtNEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldCreatedAt, v))
- }
- // CreatedAtIn applies the In predicate on the "created_at" field.
- func CreatedAtIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldCreatedAt, vs...))
- }
- // CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
- func CreatedAtNotIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldCreatedAt, vs...))
- }
- // CreatedAtGT applies the GT predicate on the "created_at" field.
- func CreatedAtGT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldCreatedAt, v))
- }
- // CreatedAtGTE applies the GTE predicate on the "created_at" field.
- func CreatedAtGTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldCreatedAt, v))
- }
- // CreatedAtLT applies the LT predicate on the "created_at" field.
- func CreatedAtLT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldCreatedAt, v))
- }
- // CreatedAtLTE applies the LTE predicate on the "created_at" field.
- func CreatedAtLTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldCreatedAt, v))
- }
- // UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
- func UpdatedAtEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldUpdatedAt, v))
- }
- // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
- func UpdatedAtNEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldUpdatedAt, v))
- }
- // UpdatedAtIn applies the In predicate on the "updated_at" field.
- func UpdatedAtIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldUpdatedAt, vs...))
- }
- // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
- func UpdatedAtNotIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldUpdatedAt, vs...))
- }
- // UpdatedAtGT applies the GT predicate on the "updated_at" field.
- func UpdatedAtGT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldUpdatedAt, v))
- }
- // UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
- func UpdatedAtGTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldUpdatedAt, v))
- }
- // UpdatedAtLT applies the LT predicate on the "updated_at" field.
- func UpdatedAtLT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldUpdatedAt, v))
- }
- // UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
- func UpdatedAtLTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldUpdatedAt, v))
- }
- // StatusEQ applies the EQ predicate on the "status" field.
- func StatusEQ(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldStatus, v))
- }
- // StatusNEQ applies the NEQ predicate on the "status" field.
- func StatusNEQ(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldStatus, v))
- }
- // StatusIn applies the In predicate on the "status" field.
- func StatusIn(vs ...uint8) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldStatus, vs...))
- }
- // StatusNotIn applies the NotIn predicate on the "status" field.
- func StatusNotIn(vs ...uint8) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldStatus, vs...))
- }
- // StatusGT applies the GT predicate on the "status" field.
- func StatusGT(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldStatus, v))
- }
- // StatusGTE applies the GTE predicate on the "status" field.
- func StatusGTE(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldStatus, v))
- }
- // StatusLT applies the LT predicate on the "status" field.
- func StatusLT(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldStatus, v))
- }
- // StatusLTE applies the LTE predicate on the "status" field.
- func StatusLTE(v uint8) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldStatus, v))
- }
- // StatusIsNil applies the IsNil predicate on the "status" field.
- func StatusIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldStatus))
- }
- // StatusNotNil applies the NotNil predicate on the "status" field.
- func StatusNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldStatus))
- }
- // DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
- func DeletedAtEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldDeletedAt, v))
- }
- // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
- func DeletedAtNEQ(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldDeletedAt, v))
- }
- // DeletedAtIn applies the In predicate on the "deleted_at" field.
- func DeletedAtIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldDeletedAt, vs...))
- }
- // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
- func DeletedAtNotIn(vs ...time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldDeletedAt, vs...))
- }
- // DeletedAtGT applies the GT predicate on the "deleted_at" field.
- func DeletedAtGT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldDeletedAt, v))
- }
- // DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
- func DeletedAtGTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldDeletedAt, v))
- }
- // DeletedAtLT applies the LT predicate on the "deleted_at" field.
- func DeletedAtLT(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldDeletedAt, v))
- }
- // DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
- func DeletedAtLTE(v time.Time) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldDeletedAt, v))
- }
- // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
- func DeletedAtIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldDeletedAt))
- }
- // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
- func DeletedAtNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldDeletedAt))
- }
- // ServerIDEQ applies the EQ predicate on the "server_id" field.
- func ServerIDEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldServerID, v))
- }
- // ServerIDNEQ applies the NEQ predicate on the "server_id" field.
- func ServerIDNEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldServerID, v))
- }
- // ServerIDIn applies the In predicate on the "server_id" field.
- func ServerIDIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldServerID, vs...))
- }
- // ServerIDNotIn applies the NotIn predicate on the "server_id" field.
- func ServerIDNotIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldServerID, vs...))
- }
- // ServerIDIsNil applies the IsNil predicate on the "server_id" field.
- func ServerIDIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldServerID))
- }
- // ServerIDNotNil applies the NotNil predicate on the "server_id" field.
- func ServerIDNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldServerID))
- }
- // PortEQ applies the EQ predicate on the "port" field.
- func PortEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldPort, v))
- }
- // PortNEQ applies the NEQ predicate on the "port" field.
- func PortNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldPort, v))
- }
- // PortIn applies the In predicate on the "port" field.
- func PortIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldPort, vs...))
- }
- // PortNotIn applies the NotIn predicate on the "port" field.
- func PortNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldPort, vs...))
- }
- // PortGT applies the GT predicate on the "port" field.
- func PortGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldPort, v))
- }
- // PortGTE applies the GTE predicate on the "port" field.
- func PortGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldPort, v))
- }
- // PortLT applies the LT predicate on the "port" field.
- func PortLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldPort, v))
- }
- // PortLTE applies the LTE predicate on the "port" field.
- func PortLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldPort, v))
- }
- // PortContains applies the Contains predicate on the "port" field.
- func PortContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldPort, v))
- }
- // PortHasPrefix applies the HasPrefix predicate on the "port" field.
- func PortHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldPort, v))
- }
- // PortHasSuffix applies the HasSuffix predicate on the "port" field.
- func PortHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldPort, v))
- }
- // PortEqualFold applies the EqualFold predicate on the "port" field.
- func PortEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldPort, v))
- }
- // PortContainsFold applies the ContainsFold predicate on the "port" field.
- func PortContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldPort, v))
- }
- // ProcessIDEQ applies the EQ predicate on the "process_id" field.
- func ProcessIDEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldProcessID, v))
- }
- // ProcessIDNEQ applies the NEQ predicate on the "process_id" field.
- func ProcessIDNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldProcessID, v))
- }
- // ProcessIDIn applies the In predicate on the "process_id" field.
- func ProcessIDIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldProcessID, vs...))
- }
- // ProcessIDNotIn applies the NotIn predicate on the "process_id" field.
- func ProcessIDNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldProcessID, vs...))
- }
- // ProcessIDGT applies the GT predicate on the "process_id" field.
- func ProcessIDGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldProcessID, v))
- }
- // ProcessIDGTE applies the GTE predicate on the "process_id" field.
- func ProcessIDGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldProcessID, v))
- }
- // ProcessIDLT applies the LT predicate on the "process_id" field.
- func ProcessIDLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldProcessID, v))
- }
- // ProcessIDLTE applies the LTE predicate on the "process_id" field.
- func ProcessIDLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldProcessID, v))
- }
- // ProcessIDContains applies the Contains predicate on the "process_id" field.
- func ProcessIDContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldProcessID, v))
- }
- // ProcessIDHasPrefix applies the HasPrefix predicate on the "process_id" field.
- func ProcessIDHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldProcessID, v))
- }
- // ProcessIDHasSuffix applies the HasSuffix predicate on the "process_id" field.
- func ProcessIDHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldProcessID, v))
- }
- // ProcessIDEqualFold applies the EqualFold predicate on the "process_id" field.
- func ProcessIDEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldProcessID, v))
- }
- // ProcessIDContainsFold applies the ContainsFold predicate on the "process_id" field.
- func ProcessIDContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldProcessID, v))
- }
- // CallbackEQ applies the EQ predicate on the "callback" field.
- func CallbackEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCallback, v))
- }
- // CallbackNEQ applies the NEQ predicate on the "callback" field.
- func CallbackNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldCallback, v))
- }
- // CallbackIn applies the In predicate on the "callback" field.
- func CallbackIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldCallback, vs...))
- }
- // CallbackNotIn applies the NotIn predicate on the "callback" field.
- func CallbackNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldCallback, vs...))
- }
- // CallbackGT applies the GT predicate on the "callback" field.
- func CallbackGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldCallback, v))
- }
- // CallbackGTE applies the GTE predicate on the "callback" field.
- func CallbackGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldCallback, v))
- }
- // CallbackLT applies the LT predicate on the "callback" field.
- func CallbackLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldCallback, v))
- }
- // CallbackLTE applies the LTE predicate on the "callback" field.
- func CallbackLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldCallback, v))
- }
- // CallbackContains applies the Contains predicate on the "callback" field.
- func CallbackContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldCallback, v))
- }
- // CallbackHasPrefix applies the HasPrefix predicate on the "callback" field.
- func CallbackHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldCallback, v))
- }
- // CallbackHasSuffix applies the HasSuffix predicate on the "callback" field.
- func CallbackHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldCallback, v))
- }
- // CallbackEqualFold applies the EqualFold predicate on the "callback" field.
- func CallbackEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldCallback, v))
- }
- // CallbackContainsFold applies the ContainsFold predicate on the "callback" field.
- func CallbackContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldCallback, v))
- }
- // WxidEQ applies the EQ predicate on the "wxid" field.
- func WxidEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldWxid, v))
- }
- // WxidNEQ applies the NEQ predicate on the "wxid" field.
- func WxidNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldWxid, v))
- }
- // WxidIn applies the In predicate on the "wxid" field.
- func WxidIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldWxid, vs...))
- }
- // WxidNotIn applies the NotIn predicate on the "wxid" field.
- func WxidNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldWxid, vs...))
- }
- // WxidGT applies the GT predicate on the "wxid" field.
- func WxidGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldWxid, v))
- }
- // WxidGTE applies the GTE predicate on the "wxid" field.
- func WxidGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldWxid, v))
- }
- // WxidLT applies the LT predicate on the "wxid" field.
- func WxidLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldWxid, v))
- }
- // WxidLTE applies the LTE predicate on the "wxid" field.
- func WxidLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldWxid, v))
- }
- // WxidContains applies the Contains predicate on the "wxid" field.
- func WxidContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldWxid, v))
- }
- // WxidHasPrefix applies the HasPrefix predicate on the "wxid" field.
- func WxidHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldWxid, v))
- }
- // WxidHasSuffix applies the HasSuffix predicate on the "wxid" field.
- func WxidHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldWxid, v))
- }
- // WxidEqualFold applies the EqualFold predicate on the "wxid" field.
- func WxidEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldWxid, v))
- }
- // WxidContainsFold applies the ContainsFold predicate on the "wxid" field.
- func WxidContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldWxid, v))
- }
- // AccountEQ applies the EQ predicate on the "account" field.
- func AccountEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAccount, v))
- }
- // AccountNEQ applies the NEQ predicate on the "account" field.
- func AccountNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldAccount, v))
- }
- // AccountIn applies the In predicate on the "account" field.
- func AccountIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldAccount, vs...))
- }
- // AccountNotIn applies the NotIn predicate on the "account" field.
- func AccountNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldAccount, vs...))
- }
- // AccountGT applies the GT predicate on the "account" field.
- func AccountGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldAccount, v))
- }
- // AccountGTE applies the GTE predicate on the "account" field.
- func AccountGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldAccount, v))
- }
- // AccountLT applies the LT predicate on the "account" field.
- func AccountLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldAccount, v))
- }
- // AccountLTE applies the LTE predicate on the "account" field.
- func AccountLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldAccount, v))
- }
- // AccountContains applies the Contains predicate on the "account" field.
- func AccountContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldAccount, v))
- }
- // AccountHasPrefix applies the HasPrefix predicate on the "account" field.
- func AccountHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldAccount, v))
- }
- // AccountHasSuffix applies the HasSuffix predicate on the "account" field.
- func AccountHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldAccount, v))
- }
- // AccountEqualFold applies the EqualFold predicate on the "account" field.
- func AccountEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldAccount, v))
- }
- // AccountContainsFold applies the ContainsFold predicate on the "account" field.
- func AccountContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldAccount, v))
- }
- // NicknameEQ applies the EQ predicate on the "nickname" field.
- func NicknameEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldNickname, v))
- }
- // NicknameNEQ applies the NEQ predicate on the "nickname" field.
- func NicknameNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldNickname, v))
- }
- // NicknameIn applies the In predicate on the "nickname" field.
- func NicknameIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldNickname, vs...))
- }
- // NicknameNotIn applies the NotIn predicate on the "nickname" field.
- func NicknameNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldNickname, vs...))
- }
- // NicknameGT applies the GT predicate on the "nickname" field.
- func NicknameGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldNickname, v))
- }
- // NicknameGTE applies the GTE predicate on the "nickname" field.
- func NicknameGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldNickname, v))
- }
- // NicknameLT applies the LT predicate on the "nickname" field.
- func NicknameLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldNickname, v))
- }
- // NicknameLTE applies the LTE predicate on the "nickname" field.
- func NicknameLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldNickname, v))
- }
- // NicknameContains applies the Contains predicate on the "nickname" field.
- func NicknameContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldNickname, v))
- }
- // NicknameHasPrefix applies the HasPrefix predicate on the "nickname" field.
- func NicknameHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldNickname, v))
- }
- // NicknameHasSuffix applies the HasSuffix predicate on the "nickname" field.
- func NicknameHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldNickname, v))
- }
- // NicknameEqualFold applies the EqualFold predicate on the "nickname" field.
- func NicknameEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldNickname, v))
- }
- // NicknameContainsFold applies the ContainsFold predicate on the "nickname" field.
- func NicknameContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldNickname, v))
- }
- // TelEQ applies the EQ predicate on the "tel" field.
- func TelEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldTel, v))
- }
- // TelNEQ applies the NEQ predicate on the "tel" field.
- func TelNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldTel, v))
- }
- // TelIn applies the In predicate on the "tel" field.
- func TelIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldTel, vs...))
- }
- // TelNotIn applies the NotIn predicate on the "tel" field.
- func TelNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldTel, vs...))
- }
- // TelGT applies the GT predicate on the "tel" field.
- func TelGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldTel, v))
- }
- // TelGTE applies the GTE predicate on the "tel" field.
- func TelGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldTel, v))
- }
- // TelLT applies the LT predicate on the "tel" field.
- func TelLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldTel, v))
- }
- // TelLTE applies the LTE predicate on the "tel" field.
- func TelLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldTel, v))
- }
- // TelContains applies the Contains predicate on the "tel" field.
- func TelContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldTel, v))
- }
- // TelHasPrefix applies the HasPrefix predicate on the "tel" field.
- func TelHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldTel, v))
- }
- // TelHasSuffix applies the HasSuffix predicate on the "tel" field.
- func TelHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldTel, v))
- }
- // TelEqualFold applies the EqualFold predicate on the "tel" field.
- func TelEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldTel, v))
- }
- // TelContainsFold applies the ContainsFold predicate on the "tel" field.
- func TelContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldTel, v))
- }
- // HeadBigEQ applies the EQ predicate on the "head_big" field.
- func HeadBigEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldHeadBig, v))
- }
- // HeadBigNEQ applies the NEQ predicate on the "head_big" field.
- func HeadBigNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldHeadBig, v))
- }
- // HeadBigIn applies the In predicate on the "head_big" field.
- func HeadBigIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldHeadBig, vs...))
- }
- // HeadBigNotIn applies the NotIn predicate on the "head_big" field.
- func HeadBigNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldHeadBig, vs...))
- }
- // HeadBigGT applies the GT predicate on the "head_big" field.
- func HeadBigGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldHeadBig, v))
- }
- // HeadBigGTE applies the GTE predicate on the "head_big" field.
- func HeadBigGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldHeadBig, v))
- }
- // HeadBigLT applies the LT predicate on the "head_big" field.
- func HeadBigLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldHeadBig, v))
- }
- // HeadBigLTE applies the LTE predicate on the "head_big" field.
- func HeadBigLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldHeadBig, v))
- }
- // HeadBigContains applies the Contains predicate on the "head_big" field.
- func HeadBigContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldHeadBig, v))
- }
- // HeadBigHasPrefix applies the HasPrefix predicate on the "head_big" field.
- func HeadBigHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldHeadBig, v))
- }
- // HeadBigHasSuffix applies the HasSuffix predicate on the "head_big" field.
- func HeadBigHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldHeadBig, v))
- }
- // HeadBigEqualFold applies the EqualFold predicate on the "head_big" field.
- func HeadBigEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldHeadBig, v))
- }
- // HeadBigContainsFold applies the ContainsFold predicate on the "head_big" field.
- func HeadBigContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldHeadBig, v))
- }
- // OrganizationIDEQ applies the EQ predicate on the "organization_id" field.
- func OrganizationIDEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldOrganizationID, v))
- }
- // OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field.
- func OrganizationIDNEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldOrganizationID, v))
- }
- // OrganizationIDIn applies the In predicate on the "organization_id" field.
- func OrganizationIDIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldOrganizationID, vs...))
- }
- // OrganizationIDNotIn applies the NotIn predicate on the "organization_id" field.
- func OrganizationIDNotIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldOrganizationID, vs...))
- }
- // OrganizationIDGT applies the GT predicate on the "organization_id" field.
- func OrganizationIDGT(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldOrganizationID, v))
- }
- // OrganizationIDGTE applies the GTE predicate on the "organization_id" field.
- func OrganizationIDGTE(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldOrganizationID, v))
- }
- // OrganizationIDLT applies the LT predicate on the "organization_id" field.
- func OrganizationIDLT(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldOrganizationID, v))
- }
- // OrganizationIDLTE applies the LTE predicate on the "organization_id" field.
- func OrganizationIDLTE(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldOrganizationID, v))
- }
- // OrganizationIDIsNil applies the IsNil predicate on the "organization_id" field.
- func OrganizationIDIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldOrganizationID))
- }
- // OrganizationIDNotNil applies the NotNil predicate on the "organization_id" field.
- func OrganizationIDNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldOrganizationID))
- }
- // AgentIDEQ applies the EQ predicate on the "agent_id" field.
- func AgentIDEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAgentID, v))
- }
- // AgentIDNEQ applies the NEQ predicate on the "agent_id" field.
- func AgentIDNEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldAgentID, v))
- }
- // AgentIDIn applies the In predicate on the "agent_id" field.
- func AgentIDIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldAgentID, vs...))
- }
- // AgentIDNotIn applies the NotIn predicate on the "agent_id" field.
- func AgentIDNotIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldAgentID, vs...))
- }
- // APIBaseEQ applies the EQ predicate on the "api_base" field.
- func APIBaseEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAPIBase, v))
- }
- // APIBaseNEQ applies the NEQ predicate on the "api_base" field.
- func APIBaseNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldAPIBase, v))
- }
- // APIBaseIn applies the In predicate on the "api_base" field.
- func APIBaseIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldAPIBase, vs...))
- }
- // APIBaseNotIn applies the NotIn predicate on the "api_base" field.
- func APIBaseNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldAPIBase, vs...))
- }
- // APIBaseGT applies the GT predicate on the "api_base" field.
- func APIBaseGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldAPIBase, v))
- }
- // APIBaseGTE applies the GTE predicate on the "api_base" field.
- func APIBaseGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldAPIBase, v))
- }
- // APIBaseLT applies the LT predicate on the "api_base" field.
- func APIBaseLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldAPIBase, v))
- }
- // APIBaseLTE applies the LTE predicate on the "api_base" field.
- func APIBaseLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldAPIBase, v))
- }
- // APIBaseContains applies the Contains predicate on the "api_base" field.
- func APIBaseContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldAPIBase, v))
- }
- // APIBaseHasPrefix applies the HasPrefix predicate on the "api_base" field.
- func APIBaseHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldAPIBase, v))
- }
- // APIBaseHasSuffix applies the HasSuffix predicate on the "api_base" field.
- func APIBaseHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldAPIBase, v))
- }
- // APIBaseIsNil applies the IsNil predicate on the "api_base" field.
- func APIBaseIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldAPIBase))
- }
- // APIBaseNotNil applies the NotNil predicate on the "api_base" field.
- func APIBaseNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldAPIBase))
- }
- // APIBaseEqualFold applies the EqualFold predicate on the "api_base" field.
- func APIBaseEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldAPIBase, v))
- }
- // APIBaseContainsFold applies the ContainsFold predicate on the "api_base" field.
- func APIBaseContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldAPIBase, v))
- }
- // APIKeyEQ applies the EQ predicate on the "api_key" field.
- func APIKeyEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldAPIKey, v))
- }
- // APIKeyNEQ applies the NEQ predicate on the "api_key" field.
- func APIKeyNEQ(v string) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldAPIKey, v))
- }
- // APIKeyIn applies the In predicate on the "api_key" field.
- func APIKeyIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldAPIKey, vs...))
- }
- // APIKeyNotIn applies the NotIn predicate on the "api_key" field.
- func APIKeyNotIn(vs ...string) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldAPIKey, vs...))
- }
- // APIKeyGT applies the GT predicate on the "api_key" field.
- func APIKeyGT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldAPIKey, v))
- }
- // APIKeyGTE applies the GTE predicate on the "api_key" field.
- func APIKeyGTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldAPIKey, v))
- }
- // APIKeyLT applies the LT predicate on the "api_key" field.
- func APIKeyLT(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldAPIKey, v))
- }
- // APIKeyLTE applies the LTE predicate on the "api_key" field.
- func APIKeyLTE(v string) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldAPIKey, v))
- }
- // APIKeyContains applies the Contains predicate on the "api_key" field.
- func APIKeyContains(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContains(FieldAPIKey, v))
- }
- // APIKeyHasPrefix applies the HasPrefix predicate on the "api_key" field.
- func APIKeyHasPrefix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasPrefix(FieldAPIKey, v))
- }
- // APIKeyHasSuffix applies the HasSuffix predicate on the "api_key" field.
- func APIKeyHasSuffix(v string) predicate.Wx {
- return predicate.Wx(sql.FieldHasSuffix(FieldAPIKey, v))
- }
- // APIKeyIsNil applies the IsNil predicate on the "api_key" field.
- func APIKeyIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldAPIKey))
- }
- // APIKeyNotNil applies the NotNil predicate on the "api_key" field.
- func APIKeyNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldAPIKey))
- }
- // APIKeyEqualFold applies the EqualFold predicate on the "api_key" field.
- func APIKeyEqualFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldEqualFold(FieldAPIKey, v))
- }
- // APIKeyContainsFold applies the ContainsFold predicate on the "api_key" field.
- func APIKeyContainsFold(v string) predicate.Wx {
- return predicate.Wx(sql.FieldContainsFold(FieldAPIKey, v))
- }
- // CtypeEQ applies the EQ predicate on the "ctype" field.
- func CtypeEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldEQ(FieldCtype, v))
- }
- // CtypeNEQ applies the NEQ predicate on the "ctype" field.
- func CtypeNEQ(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNEQ(FieldCtype, v))
- }
- // CtypeIn applies the In predicate on the "ctype" field.
- func CtypeIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldIn(FieldCtype, vs...))
- }
- // CtypeNotIn applies the NotIn predicate on the "ctype" field.
- func CtypeNotIn(vs ...uint64) predicate.Wx {
- return predicate.Wx(sql.FieldNotIn(FieldCtype, vs...))
- }
- // CtypeGT applies the GT predicate on the "ctype" field.
- func CtypeGT(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGT(FieldCtype, v))
- }
- // CtypeGTE applies the GTE predicate on the "ctype" field.
- func CtypeGTE(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldGTE(FieldCtype, v))
- }
- // CtypeLT applies the LT predicate on the "ctype" field.
- func CtypeLT(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLT(FieldCtype, v))
- }
- // CtypeLTE applies the LTE predicate on the "ctype" field.
- func CtypeLTE(v uint64) predicate.Wx {
- return predicate.Wx(sql.FieldLTE(FieldCtype, v))
- }
- // CtypeIsNil applies the IsNil predicate on the "ctype" field.
- func CtypeIsNil() predicate.Wx {
- return predicate.Wx(sql.FieldIsNull(FieldCtype))
- }
- // CtypeNotNil applies the NotNil predicate on the "ctype" field.
- func CtypeNotNil() predicate.Wx {
- return predicate.Wx(sql.FieldNotNull(FieldCtype))
- }
- // HasServer applies the HasEdge predicate on the "server" edge.
- func HasServer() predicate.Wx {
- return predicate.Wx(func(s *sql.Selector) {
- step := sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.Edge(sqlgraph.M2O, true, ServerTable, ServerColumn),
- )
- sqlgraph.HasNeighbors(s, step)
- })
- }
- // HasServerWith applies the HasEdge predicate on the "server" edge with a given conditions (other predicates).
- func HasServerWith(preds ...predicate.Server) predicate.Wx {
- return predicate.Wx(func(s *sql.Selector) {
- step := newServerStep()
- sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
- for _, p := range preds {
- p(s)
- }
- })
- })
- }
- // HasAgent applies the HasEdge predicate on the "agent" edge.
- func HasAgent() predicate.Wx {
- return predicate.Wx(func(s *sql.Selector) {
- step := sqlgraph.NewStep(
- sqlgraph.From(Table, FieldID),
- sqlgraph.Edge(sqlgraph.M2O, true, AgentTable, AgentColumn),
- )
- sqlgraph.HasNeighbors(s, step)
- })
- }
- // HasAgentWith applies the HasEdge predicate on the "agent" edge with a given conditions (other predicates).
- func HasAgentWith(preds ...predicate.Agent) predicate.Wx {
- return predicate.Wx(func(s *sql.Selector) {
- step := newAgentStep()
- sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
- for _, p := range preds {
- p(s)
- }
- })
- })
- }
- // And groups predicates with the AND operator between them.
- func And(predicates ...predicate.Wx) predicate.Wx {
- return predicate.Wx(sql.AndPredicates(predicates...))
- }
- // Or groups predicates with the OR operator between them.
- func Or(predicates ...predicate.Wx) predicate.Wx {
- return predicate.Wx(sql.OrPredicates(predicates...))
- }
- // Not applies the not operator on the given predicate.
- func Not(p predicate.Wx) predicate.Wx {
- return predicate.Wx(sql.NotPredicates(p))
- }
|