1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240 |
- // Code generated by ent, DO NOT EDIT.
- package contact
- import (
- "time"
- "wechat-api/ent/predicate"
- "entgo.io/ent/dialect/sql"
- )
- // ID filters vertices based on their ID field.
- func ID(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldID, id))
- }
- // IDEQ applies the EQ predicate on the ID field.
- func IDEQ(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldID, id))
- }
- // IDNEQ applies the NEQ predicate on the ID field.
- func IDNEQ(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldID, id))
- }
- // IDIn applies the In predicate on the ID field.
- func IDIn(ids ...uint64) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldID, ids...))
- }
- // IDNotIn applies the NotIn predicate on the ID field.
- func IDNotIn(ids ...uint64) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldID, ids...))
- }
- // IDGT applies the GT predicate on the ID field.
- func IDGT(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldID, id))
- }
- // IDGTE applies the GTE predicate on the ID field.
- func IDGTE(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldID, id))
- }
- // IDLT applies the LT predicate on the ID field.
- func IDLT(id uint64) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldID, id))
- }
- // IDLTE applies the LTE predicate on the ID field.
- func IDLTE(id uint64) predicate.Contact {
- return predicate.Contact(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.Contact {
- return predicate.Contact(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.Contact {
- return predicate.Contact(sql.FieldEQ(FieldUpdatedAt, v))
- }
- // Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
- func Status(v uint8) predicate.Contact {
- return predicate.Contact(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.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDeletedAt, v))
- }
- // WxWxid applies equality check predicate on the "wx_wxid" field. It's identical to WxWxidEQ.
- func WxWxid(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldWxWxid, v))
- }
- // Type applies equality check predicate on the "type" field. It's identical to TypeEQ.
- func Type(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldType, v))
- }
- // Wxid applies equality check predicate on the "wxid" field. It's identical to WxidEQ.
- func Wxid(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldWxid, v))
- }
- // Account applies equality check predicate on the "account" field. It's identical to AccountEQ.
- func Account(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldAccount, v))
- }
- // Nickname applies equality check predicate on the "nickname" field. It's identical to NicknameEQ.
- func Nickname(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldNickname, v))
- }
- // Markname applies equality check predicate on the "markname" field. It's identical to MarknameEQ.
- func Markname(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldMarkname, v))
- }
- // Headimg applies equality check predicate on the "headimg" field. It's identical to HeadimgEQ.
- func Headimg(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldHeadimg, v))
- }
- // Sex applies equality check predicate on the "sex" field. It's identical to SexEQ.
- func Sex(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldSex, v))
- }
- // Starrole applies equality check predicate on the "starrole" field. It's identical to StarroleEQ.
- func Starrole(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldStarrole, v))
- }
- // Dontseeit applies equality check predicate on the "dontseeit" field. It's identical to DontseeitEQ.
- func Dontseeit(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDontseeit, v))
- }
- // Dontseeme applies equality check predicate on the "dontseeme" field. It's identical to DontseemeEQ.
- func Dontseeme(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDontseeme, v))
- }
- // Lag applies equality check predicate on the "lag" field. It's identical to LagEQ.
- func Lag(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldLag, v))
- }
- // Gid applies equality check predicate on the "gid" field. It's identical to GidEQ.
- func Gid(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldGid, v))
- }
- // Gname applies equality check predicate on the "gname" field. It's identical to GnameEQ.
- func Gname(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldGname, v))
- }
- // V3 applies equality check predicate on the "v3" field. It's identical to V3EQ.
- func V3(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldV3, v))
- }
- // CreatedAtEQ applies the EQ predicate on the "created_at" field.
- func CreatedAtEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldCreatedAt, v))
- }
- // CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
- func CreatedAtNEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldCreatedAt, v))
- }
- // CreatedAtIn applies the In predicate on the "created_at" field.
- func CreatedAtIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldCreatedAt, vs...))
- }
- // CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
- func CreatedAtNotIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldCreatedAt, vs...))
- }
- // CreatedAtGT applies the GT predicate on the "created_at" field.
- func CreatedAtGT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldCreatedAt, v))
- }
- // CreatedAtGTE applies the GTE predicate on the "created_at" field.
- func CreatedAtGTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldCreatedAt, v))
- }
- // CreatedAtLT applies the LT predicate on the "created_at" field.
- func CreatedAtLT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldCreatedAt, v))
- }
- // CreatedAtLTE applies the LTE predicate on the "created_at" field.
- func CreatedAtLTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldCreatedAt, v))
- }
- // UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
- func UpdatedAtEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldUpdatedAt, v))
- }
- // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
- func UpdatedAtNEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldUpdatedAt, v))
- }
- // UpdatedAtIn applies the In predicate on the "updated_at" field.
- func UpdatedAtIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldUpdatedAt, vs...))
- }
- // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
- func UpdatedAtNotIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldUpdatedAt, vs...))
- }
- // UpdatedAtGT applies the GT predicate on the "updated_at" field.
- func UpdatedAtGT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldUpdatedAt, v))
- }
- // UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
- func UpdatedAtGTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldUpdatedAt, v))
- }
- // UpdatedAtLT applies the LT predicate on the "updated_at" field.
- func UpdatedAtLT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldUpdatedAt, v))
- }
- // UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
- func UpdatedAtLTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldUpdatedAt, v))
- }
- // StatusEQ applies the EQ predicate on the "status" field.
- func StatusEQ(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldStatus, v))
- }
- // StatusNEQ applies the NEQ predicate on the "status" field.
- func StatusNEQ(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldStatus, v))
- }
- // StatusIn applies the In predicate on the "status" field.
- func StatusIn(vs ...uint8) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldStatus, vs...))
- }
- // StatusNotIn applies the NotIn predicate on the "status" field.
- func StatusNotIn(vs ...uint8) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldStatus, vs...))
- }
- // StatusGT applies the GT predicate on the "status" field.
- func StatusGT(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldStatus, v))
- }
- // StatusGTE applies the GTE predicate on the "status" field.
- func StatusGTE(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldStatus, v))
- }
- // StatusLT applies the LT predicate on the "status" field.
- func StatusLT(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldStatus, v))
- }
- // StatusLTE applies the LTE predicate on the "status" field.
- func StatusLTE(v uint8) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldStatus, v))
- }
- // StatusIsNil applies the IsNil predicate on the "status" field.
- func StatusIsNil() predicate.Contact {
- return predicate.Contact(sql.FieldIsNull(FieldStatus))
- }
- // StatusNotNil applies the NotNil predicate on the "status" field.
- func StatusNotNil() predicate.Contact {
- return predicate.Contact(sql.FieldNotNull(FieldStatus))
- }
- // DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
- func DeletedAtEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDeletedAt, v))
- }
- // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
- func DeletedAtNEQ(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldDeletedAt, v))
- }
- // DeletedAtIn applies the In predicate on the "deleted_at" field.
- func DeletedAtIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldDeletedAt, vs...))
- }
- // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
- func DeletedAtNotIn(vs ...time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldDeletedAt, vs...))
- }
- // DeletedAtGT applies the GT predicate on the "deleted_at" field.
- func DeletedAtGT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldDeletedAt, v))
- }
- // DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
- func DeletedAtGTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldDeletedAt, v))
- }
- // DeletedAtLT applies the LT predicate on the "deleted_at" field.
- func DeletedAtLT(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldDeletedAt, v))
- }
- // DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
- func DeletedAtLTE(v time.Time) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldDeletedAt, v))
- }
- // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
- func DeletedAtIsNil() predicate.Contact {
- return predicate.Contact(sql.FieldIsNull(FieldDeletedAt))
- }
- // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
- func DeletedAtNotNil() predicate.Contact {
- return predicate.Contact(sql.FieldNotNull(FieldDeletedAt))
- }
- // WxWxidEQ applies the EQ predicate on the "wx_wxid" field.
- func WxWxidEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldWxWxid, v))
- }
- // WxWxidNEQ applies the NEQ predicate on the "wx_wxid" field.
- func WxWxidNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldWxWxid, v))
- }
- // WxWxidIn applies the In predicate on the "wx_wxid" field.
- func WxWxidIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldWxWxid, vs...))
- }
- // WxWxidNotIn applies the NotIn predicate on the "wx_wxid" field.
- func WxWxidNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldWxWxid, vs...))
- }
- // WxWxidGT applies the GT predicate on the "wx_wxid" field.
- func WxWxidGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldWxWxid, v))
- }
- // WxWxidGTE applies the GTE predicate on the "wx_wxid" field.
- func WxWxidGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldWxWxid, v))
- }
- // WxWxidLT applies the LT predicate on the "wx_wxid" field.
- func WxWxidLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldWxWxid, v))
- }
- // WxWxidLTE applies the LTE predicate on the "wx_wxid" field.
- func WxWxidLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldWxWxid, v))
- }
- // WxWxidContains applies the Contains predicate on the "wx_wxid" field.
- func WxWxidContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldWxWxid, v))
- }
- // WxWxidHasPrefix applies the HasPrefix predicate on the "wx_wxid" field.
- func WxWxidHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldWxWxid, v))
- }
- // WxWxidHasSuffix applies the HasSuffix predicate on the "wx_wxid" field.
- func WxWxidHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldWxWxid, v))
- }
- // WxWxidIsNil applies the IsNil predicate on the "wx_wxid" field.
- func WxWxidIsNil() predicate.Contact {
- return predicate.Contact(sql.FieldIsNull(FieldWxWxid))
- }
- // WxWxidNotNil applies the NotNil predicate on the "wx_wxid" field.
- func WxWxidNotNil() predicate.Contact {
- return predicate.Contact(sql.FieldNotNull(FieldWxWxid))
- }
- // WxWxidEqualFold applies the EqualFold predicate on the "wx_wxid" field.
- func WxWxidEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldWxWxid, v))
- }
- // WxWxidContainsFold applies the ContainsFold predicate on the "wx_wxid" field.
- func WxWxidContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldWxWxid, v))
- }
- // TypeEQ applies the EQ predicate on the "type" field.
- func TypeEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldType, v))
- }
- // TypeNEQ applies the NEQ predicate on the "type" field.
- func TypeNEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldType, v))
- }
- // TypeIn applies the In predicate on the "type" field.
- func TypeIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldType, vs...))
- }
- // TypeNotIn applies the NotIn predicate on the "type" field.
- func TypeNotIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldType, vs...))
- }
- // TypeGT applies the GT predicate on the "type" field.
- func TypeGT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldType, v))
- }
- // TypeGTE applies the GTE predicate on the "type" field.
- func TypeGTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldType, v))
- }
- // TypeLT applies the LT predicate on the "type" field.
- func TypeLT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldType, v))
- }
- // TypeLTE applies the LTE predicate on the "type" field.
- func TypeLTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldType, v))
- }
- // TypeIsNil applies the IsNil predicate on the "type" field.
- func TypeIsNil() predicate.Contact {
- return predicate.Contact(sql.FieldIsNull(FieldType))
- }
- // TypeNotNil applies the NotNil predicate on the "type" field.
- func TypeNotNil() predicate.Contact {
- return predicate.Contact(sql.FieldNotNull(FieldType))
- }
- // WxidEQ applies the EQ predicate on the "wxid" field.
- func WxidEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldWxid, v))
- }
- // WxidNEQ applies the NEQ predicate on the "wxid" field.
- func WxidNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldWxid, v))
- }
- // WxidIn applies the In predicate on the "wxid" field.
- func WxidIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldWxid, vs...))
- }
- // WxidNotIn applies the NotIn predicate on the "wxid" field.
- func WxidNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldWxid, vs...))
- }
- // WxidGT applies the GT predicate on the "wxid" field.
- func WxidGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldWxid, v))
- }
- // WxidGTE applies the GTE predicate on the "wxid" field.
- func WxidGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldWxid, v))
- }
- // WxidLT applies the LT predicate on the "wxid" field.
- func WxidLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldWxid, v))
- }
- // WxidLTE applies the LTE predicate on the "wxid" field.
- func WxidLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldWxid, v))
- }
- // WxidContains applies the Contains predicate on the "wxid" field.
- func WxidContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldWxid, v))
- }
- // WxidHasPrefix applies the HasPrefix predicate on the "wxid" field.
- func WxidHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldWxid, v))
- }
- // WxidHasSuffix applies the HasSuffix predicate on the "wxid" field.
- func WxidHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldWxid, v))
- }
- // WxidEqualFold applies the EqualFold predicate on the "wxid" field.
- func WxidEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldWxid, v))
- }
- // WxidContainsFold applies the ContainsFold predicate on the "wxid" field.
- func WxidContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldWxid, v))
- }
- // AccountEQ applies the EQ predicate on the "account" field.
- func AccountEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldAccount, v))
- }
- // AccountNEQ applies the NEQ predicate on the "account" field.
- func AccountNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldAccount, v))
- }
- // AccountIn applies the In predicate on the "account" field.
- func AccountIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldAccount, vs...))
- }
- // AccountNotIn applies the NotIn predicate on the "account" field.
- func AccountNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldAccount, vs...))
- }
- // AccountGT applies the GT predicate on the "account" field.
- func AccountGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldAccount, v))
- }
- // AccountGTE applies the GTE predicate on the "account" field.
- func AccountGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldAccount, v))
- }
- // AccountLT applies the LT predicate on the "account" field.
- func AccountLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldAccount, v))
- }
- // AccountLTE applies the LTE predicate on the "account" field.
- func AccountLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldAccount, v))
- }
- // AccountContains applies the Contains predicate on the "account" field.
- func AccountContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldAccount, v))
- }
- // AccountHasPrefix applies the HasPrefix predicate on the "account" field.
- func AccountHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldAccount, v))
- }
- // AccountHasSuffix applies the HasSuffix predicate on the "account" field.
- func AccountHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldAccount, v))
- }
- // AccountEqualFold applies the EqualFold predicate on the "account" field.
- func AccountEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldAccount, v))
- }
- // AccountContainsFold applies the ContainsFold predicate on the "account" field.
- func AccountContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldAccount, v))
- }
- // NicknameEQ applies the EQ predicate on the "nickname" field.
- func NicknameEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldNickname, v))
- }
- // NicknameNEQ applies the NEQ predicate on the "nickname" field.
- func NicknameNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldNickname, v))
- }
- // NicknameIn applies the In predicate on the "nickname" field.
- func NicknameIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldNickname, vs...))
- }
- // NicknameNotIn applies the NotIn predicate on the "nickname" field.
- func NicknameNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldNickname, vs...))
- }
- // NicknameGT applies the GT predicate on the "nickname" field.
- func NicknameGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldNickname, v))
- }
- // NicknameGTE applies the GTE predicate on the "nickname" field.
- func NicknameGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldNickname, v))
- }
- // NicknameLT applies the LT predicate on the "nickname" field.
- func NicknameLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldNickname, v))
- }
- // NicknameLTE applies the LTE predicate on the "nickname" field.
- func NicknameLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldNickname, v))
- }
- // NicknameContains applies the Contains predicate on the "nickname" field.
- func NicknameContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldNickname, v))
- }
- // NicknameHasPrefix applies the HasPrefix predicate on the "nickname" field.
- func NicknameHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldNickname, v))
- }
- // NicknameHasSuffix applies the HasSuffix predicate on the "nickname" field.
- func NicknameHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldNickname, v))
- }
- // NicknameEqualFold applies the EqualFold predicate on the "nickname" field.
- func NicknameEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldNickname, v))
- }
- // NicknameContainsFold applies the ContainsFold predicate on the "nickname" field.
- func NicknameContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldNickname, v))
- }
- // MarknameEQ applies the EQ predicate on the "markname" field.
- func MarknameEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldMarkname, v))
- }
- // MarknameNEQ applies the NEQ predicate on the "markname" field.
- func MarknameNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldMarkname, v))
- }
- // MarknameIn applies the In predicate on the "markname" field.
- func MarknameIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldMarkname, vs...))
- }
- // MarknameNotIn applies the NotIn predicate on the "markname" field.
- func MarknameNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldMarkname, vs...))
- }
- // MarknameGT applies the GT predicate on the "markname" field.
- func MarknameGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldMarkname, v))
- }
- // MarknameGTE applies the GTE predicate on the "markname" field.
- func MarknameGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldMarkname, v))
- }
- // MarknameLT applies the LT predicate on the "markname" field.
- func MarknameLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldMarkname, v))
- }
- // MarknameLTE applies the LTE predicate on the "markname" field.
- func MarknameLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldMarkname, v))
- }
- // MarknameContains applies the Contains predicate on the "markname" field.
- func MarknameContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldMarkname, v))
- }
- // MarknameHasPrefix applies the HasPrefix predicate on the "markname" field.
- func MarknameHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldMarkname, v))
- }
- // MarknameHasSuffix applies the HasSuffix predicate on the "markname" field.
- func MarknameHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldMarkname, v))
- }
- // MarknameEqualFold applies the EqualFold predicate on the "markname" field.
- func MarknameEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldMarkname, v))
- }
- // MarknameContainsFold applies the ContainsFold predicate on the "markname" field.
- func MarknameContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldMarkname, v))
- }
- // HeadimgEQ applies the EQ predicate on the "headimg" field.
- func HeadimgEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldHeadimg, v))
- }
- // HeadimgNEQ applies the NEQ predicate on the "headimg" field.
- func HeadimgNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldHeadimg, v))
- }
- // HeadimgIn applies the In predicate on the "headimg" field.
- func HeadimgIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldHeadimg, vs...))
- }
- // HeadimgNotIn applies the NotIn predicate on the "headimg" field.
- func HeadimgNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldHeadimg, vs...))
- }
- // HeadimgGT applies the GT predicate on the "headimg" field.
- func HeadimgGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldHeadimg, v))
- }
- // HeadimgGTE applies the GTE predicate on the "headimg" field.
- func HeadimgGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldHeadimg, v))
- }
- // HeadimgLT applies the LT predicate on the "headimg" field.
- func HeadimgLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldHeadimg, v))
- }
- // HeadimgLTE applies the LTE predicate on the "headimg" field.
- func HeadimgLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldHeadimg, v))
- }
- // HeadimgContains applies the Contains predicate on the "headimg" field.
- func HeadimgContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldHeadimg, v))
- }
- // HeadimgHasPrefix applies the HasPrefix predicate on the "headimg" field.
- func HeadimgHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldHeadimg, v))
- }
- // HeadimgHasSuffix applies the HasSuffix predicate on the "headimg" field.
- func HeadimgHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldHeadimg, v))
- }
- // HeadimgEqualFold applies the EqualFold predicate on the "headimg" field.
- func HeadimgEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldHeadimg, v))
- }
- // HeadimgContainsFold applies the ContainsFold predicate on the "headimg" field.
- func HeadimgContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldHeadimg, v))
- }
- // SexEQ applies the EQ predicate on the "sex" field.
- func SexEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldSex, v))
- }
- // SexNEQ applies the NEQ predicate on the "sex" field.
- func SexNEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldSex, v))
- }
- // SexIn applies the In predicate on the "sex" field.
- func SexIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldSex, vs...))
- }
- // SexNotIn applies the NotIn predicate on the "sex" field.
- func SexNotIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldSex, vs...))
- }
- // SexGT applies the GT predicate on the "sex" field.
- func SexGT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldSex, v))
- }
- // SexGTE applies the GTE predicate on the "sex" field.
- func SexGTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldSex, v))
- }
- // SexLT applies the LT predicate on the "sex" field.
- func SexLT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldSex, v))
- }
- // SexLTE applies the LTE predicate on the "sex" field.
- func SexLTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldSex, v))
- }
- // StarroleEQ applies the EQ predicate on the "starrole" field.
- func StarroleEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldStarrole, v))
- }
- // StarroleNEQ applies the NEQ predicate on the "starrole" field.
- func StarroleNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldStarrole, v))
- }
- // StarroleIn applies the In predicate on the "starrole" field.
- func StarroleIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldStarrole, vs...))
- }
- // StarroleNotIn applies the NotIn predicate on the "starrole" field.
- func StarroleNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldStarrole, vs...))
- }
- // StarroleGT applies the GT predicate on the "starrole" field.
- func StarroleGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldStarrole, v))
- }
- // StarroleGTE applies the GTE predicate on the "starrole" field.
- func StarroleGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldStarrole, v))
- }
- // StarroleLT applies the LT predicate on the "starrole" field.
- func StarroleLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldStarrole, v))
- }
- // StarroleLTE applies the LTE predicate on the "starrole" field.
- func StarroleLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldStarrole, v))
- }
- // StarroleContains applies the Contains predicate on the "starrole" field.
- func StarroleContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldStarrole, v))
- }
- // StarroleHasPrefix applies the HasPrefix predicate on the "starrole" field.
- func StarroleHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldStarrole, v))
- }
- // StarroleHasSuffix applies the HasSuffix predicate on the "starrole" field.
- func StarroleHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldStarrole, v))
- }
- // StarroleEqualFold applies the EqualFold predicate on the "starrole" field.
- func StarroleEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldStarrole, v))
- }
- // StarroleContainsFold applies the ContainsFold predicate on the "starrole" field.
- func StarroleContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldStarrole, v))
- }
- // DontseeitEQ applies the EQ predicate on the "dontseeit" field.
- func DontseeitEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDontseeit, v))
- }
- // DontseeitNEQ applies the NEQ predicate on the "dontseeit" field.
- func DontseeitNEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldDontseeit, v))
- }
- // DontseeitIn applies the In predicate on the "dontseeit" field.
- func DontseeitIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldDontseeit, vs...))
- }
- // DontseeitNotIn applies the NotIn predicate on the "dontseeit" field.
- func DontseeitNotIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldDontseeit, vs...))
- }
- // DontseeitGT applies the GT predicate on the "dontseeit" field.
- func DontseeitGT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldDontseeit, v))
- }
- // DontseeitGTE applies the GTE predicate on the "dontseeit" field.
- func DontseeitGTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldDontseeit, v))
- }
- // DontseeitLT applies the LT predicate on the "dontseeit" field.
- func DontseeitLT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldDontseeit, v))
- }
- // DontseeitLTE applies the LTE predicate on the "dontseeit" field.
- func DontseeitLTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldDontseeit, v))
- }
- // DontseemeEQ applies the EQ predicate on the "dontseeme" field.
- func DontseemeEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldDontseeme, v))
- }
- // DontseemeNEQ applies the NEQ predicate on the "dontseeme" field.
- func DontseemeNEQ(v int) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldDontseeme, v))
- }
- // DontseemeIn applies the In predicate on the "dontseeme" field.
- func DontseemeIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldDontseeme, vs...))
- }
- // DontseemeNotIn applies the NotIn predicate on the "dontseeme" field.
- func DontseemeNotIn(vs ...int) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldDontseeme, vs...))
- }
- // DontseemeGT applies the GT predicate on the "dontseeme" field.
- func DontseemeGT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldDontseeme, v))
- }
- // DontseemeGTE applies the GTE predicate on the "dontseeme" field.
- func DontseemeGTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldDontseeme, v))
- }
- // DontseemeLT applies the LT predicate on the "dontseeme" field.
- func DontseemeLT(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldDontseeme, v))
- }
- // DontseemeLTE applies the LTE predicate on the "dontseeme" field.
- func DontseemeLTE(v int) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldDontseeme, v))
- }
- // LagEQ applies the EQ predicate on the "lag" field.
- func LagEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldLag, v))
- }
- // LagNEQ applies the NEQ predicate on the "lag" field.
- func LagNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldLag, v))
- }
- // LagIn applies the In predicate on the "lag" field.
- func LagIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldLag, vs...))
- }
- // LagNotIn applies the NotIn predicate on the "lag" field.
- func LagNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldLag, vs...))
- }
- // LagGT applies the GT predicate on the "lag" field.
- func LagGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldLag, v))
- }
- // LagGTE applies the GTE predicate on the "lag" field.
- func LagGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldLag, v))
- }
- // LagLT applies the LT predicate on the "lag" field.
- func LagLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldLag, v))
- }
- // LagLTE applies the LTE predicate on the "lag" field.
- func LagLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldLag, v))
- }
- // LagContains applies the Contains predicate on the "lag" field.
- func LagContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldLag, v))
- }
- // LagHasPrefix applies the HasPrefix predicate on the "lag" field.
- func LagHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldLag, v))
- }
- // LagHasSuffix applies the HasSuffix predicate on the "lag" field.
- func LagHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldLag, v))
- }
- // LagEqualFold applies the EqualFold predicate on the "lag" field.
- func LagEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldLag, v))
- }
- // LagContainsFold applies the ContainsFold predicate on the "lag" field.
- func LagContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldLag, v))
- }
- // GidEQ applies the EQ predicate on the "gid" field.
- func GidEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldGid, v))
- }
- // GidNEQ applies the NEQ predicate on the "gid" field.
- func GidNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldGid, v))
- }
- // GidIn applies the In predicate on the "gid" field.
- func GidIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldGid, vs...))
- }
- // GidNotIn applies the NotIn predicate on the "gid" field.
- func GidNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldGid, vs...))
- }
- // GidGT applies the GT predicate on the "gid" field.
- func GidGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldGid, v))
- }
- // GidGTE applies the GTE predicate on the "gid" field.
- func GidGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldGid, v))
- }
- // GidLT applies the LT predicate on the "gid" field.
- func GidLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldGid, v))
- }
- // GidLTE applies the LTE predicate on the "gid" field.
- func GidLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldGid, v))
- }
- // GidContains applies the Contains predicate on the "gid" field.
- func GidContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldGid, v))
- }
- // GidHasPrefix applies the HasPrefix predicate on the "gid" field.
- func GidHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldGid, v))
- }
- // GidHasSuffix applies the HasSuffix predicate on the "gid" field.
- func GidHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldGid, v))
- }
- // GidEqualFold applies the EqualFold predicate on the "gid" field.
- func GidEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldGid, v))
- }
- // GidContainsFold applies the ContainsFold predicate on the "gid" field.
- func GidContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldGid, v))
- }
- // GnameEQ applies the EQ predicate on the "gname" field.
- func GnameEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldGname, v))
- }
- // GnameNEQ applies the NEQ predicate on the "gname" field.
- func GnameNEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldGname, v))
- }
- // GnameIn applies the In predicate on the "gname" field.
- func GnameIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldGname, vs...))
- }
- // GnameNotIn applies the NotIn predicate on the "gname" field.
- func GnameNotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldGname, vs...))
- }
- // GnameGT applies the GT predicate on the "gname" field.
- func GnameGT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldGname, v))
- }
- // GnameGTE applies the GTE predicate on the "gname" field.
- func GnameGTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldGname, v))
- }
- // GnameLT applies the LT predicate on the "gname" field.
- func GnameLT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldGname, v))
- }
- // GnameLTE applies the LTE predicate on the "gname" field.
- func GnameLTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldGname, v))
- }
- // GnameContains applies the Contains predicate on the "gname" field.
- func GnameContains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldGname, v))
- }
- // GnameHasPrefix applies the HasPrefix predicate on the "gname" field.
- func GnameHasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldGname, v))
- }
- // GnameHasSuffix applies the HasSuffix predicate on the "gname" field.
- func GnameHasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldGname, v))
- }
- // GnameEqualFold applies the EqualFold predicate on the "gname" field.
- func GnameEqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldGname, v))
- }
- // GnameContainsFold applies the ContainsFold predicate on the "gname" field.
- func GnameContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldGname, v))
- }
- // V3EQ applies the EQ predicate on the "v3" field.
- func V3EQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEQ(FieldV3, v))
- }
- // V3NEQ applies the NEQ predicate on the "v3" field.
- func V3NEQ(v string) predicate.Contact {
- return predicate.Contact(sql.FieldNEQ(FieldV3, v))
- }
- // V3In applies the In predicate on the "v3" field.
- func V3In(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldIn(FieldV3, vs...))
- }
- // V3NotIn applies the NotIn predicate on the "v3" field.
- func V3NotIn(vs ...string) predicate.Contact {
- return predicate.Contact(sql.FieldNotIn(FieldV3, vs...))
- }
- // V3GT applies the GT predicate on the "v3" field.
- func V3GT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGT(FieldV3, v))
- }
- // V3GTE applies the GTE predicate on the "v3" field.
- func V3GTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldGTE(FieldV3, v))
- }
- // V3LT applies the LT predicate on the "v3" field.
- func V3LT(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLT(FieldV3, v))
- }
- // V3LTE applies the LTE predicate on the "v3" field.
- func V3LTE(v string) predicate.Contact {
- return predicate.Contact(sql.FieldLTE(FieldV3, v))
- }
- // V3Contains applies the Contains predicate on the "v3" field.
- func V3Contains(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContains(FieldV3, v))
- }
- // V3HasPrefix applies the HasPrefix predicate on the "v3" field.
- func V3HasPrefix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasPrefix(FieldV3, v))
- }
- // V3HasSuffix applies the HasSuffix predicate on the "v3" field.
- func V3HasSuffix(v string) predicate.Contact {
- return predicate.Contact(sql.FieldHasSuffix(FieldV3, v))
- }
- // V3EqualFold applies the EqualFold predicate on the "v3" field.
- func V3EqualFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldEqualFold(FieldV3, v))
- }
- // V3ContainsFold applies the ContainsFold predicate on the "v3" field.
- func V3ContainsFold(v string) predicate.Contact {
- return predicate.Contact(sql.FieldContainsFold(FieldV3, v))
- }
- // And groups predicates with the AND operator between them.
- func And(predicates ...predicate.Contact) predicate.Contact {
- return predicate.Contact(sql.AndPredicates(predicates...))
- }
- // Or groups predicates with the OR operator between them.
- func Or(predicates ...predicate.Contact) predicate.Contact {
- return predicate.Contact(sql.OrPredicates(predicates...))
- }
- // Not applies the not operator on the given predicate.
- func Not(p predicate.Contact) predicate.Contact {
- return predicate.Contact(sql.NotPredicates(p))
- }
|