// Code generated by ent, DO NOT EDIT. package addwechatfriendlog import ( "wechat-api/ent/predicate" "entgo.io/ent/dialect/sql" ) // ID filters vertices based on their ID field. func ID(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldID, id)) } // IDEQ applies the EQ predicate on the ID field. func IDEQ(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldID, id)) } // IDNEQ applies the NEQ predicate on the ID field. func IDNEQ(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldID, id)) } // IDIn applies the In predicate on the ID field. func IDIn(ids ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldID, ids...)) } // IDNotIn applies the NotIn predicate on the ID field. func IDNotIn(ids ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldID, ids...)) } // IDGT applies the GT predicate on the ID field. func IDGT(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldID, id)) } // IDGTE applies the GTE predicate on the ID field. func IDGTE(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldID, id)) } // IDLT applies the LT predicate on the ID field. func IDLT(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldID, id)) } // IDLTE applies the LTE predicate on the ID field. func IDLTE(id int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldID, id)) } // OwnerWxID applies equality check predicate on the "owner_wx_id" field. It's identical to OwnerWxIDEQ. func OwnerWxID(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOwnerWxID, v)) } // OwnerWxType applies equality check predicate on the "owner_wx_type" field. It's identical to OwnerWxTypeEQ. func OwnerWxType(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOwnerWxType, v)) } // FindContent applies equality check predicate on the "find_content" field. It's identical to FindContentEQ. func FindContent(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldFindContent, v)) } // Message applies equality check predicate on the "message" field. It's identical to MessageEQ. func Message(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldMessage, v)) } // IsCanAdd applies equality check predicate on the "is_can_add" field. It's identical to IsCanAddEQ. func IsCanAdd(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldIsCanAdd, v)) } // TaskCount applies equality check predicate on the "task_count" field. It's identical to TaskCountEQ. func TaskCount(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldTaskCount, v)) } // TaskID applies equality check predicate on the "task_id" field. It's identical to TaskIDEQ. func TaskID(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldTaskID, v)) } // CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ. func CreatedAt(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldCreatedAt, v)) } // UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ. func UpdatedAt(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldUpdatedAt, v)) } // Source applies equality check predicate on the "source" field. It's identical to SourceEQ. func Source(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldSource, v)) } // NickName applies equality check predicate on the "nick_name" field. It's identical to NickNameEQ. func NickName(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldNickName, v)) } // Avatar applies equality check predicate on the "avatar" field. It's identical to AvatarEQ. func Avatar(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldAvatar, v)) } // OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ. func OrganizationID(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOrganizationID, v)) } // OwnerWxIDEQ applies the EQ predicate on the "owner_wx_id" field. func OwnerWxIDEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOwnerWxID, v)) } // OwnerWxIDNEQ applies the NEQ predicate on the "owner_wx_id" field. func OwnerWxIDNEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldOwnerWxID, v)) } // OwnerWxIDIn applies the In predicate on the "owner_wx_id" field. func OwnerWxIDIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldOwnerWxID, vs...)) } // OwnerWxIDNotIn applies the NotIn predicate on the "owner_wx_id" field. func OwnerWxIDNotIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldOwnerWxID, vs...)) } // OwnerWxIDGT applies the GT predicate on the "owner_wx_id" field. func OwnerWxIDGT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldOwnerWxID, v)) } // OwnerWxIDGTE applies the GTE predicate on the "owner_wx_id" field. func OwnerWxIDGTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldOwnerWxID, v)) } // OwnerWxIDLT applies the LT predicate on the "owner_wx_id" field. func OwnerWxIDLT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldOwnerWxID, v)) } // OwnerWxIDLTE applies the LTE predicate on the "owner_wx_id" field. func OwnerWxIDLTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldOwnerWxID, v)) } // OwnerWxIDContains applies the Contains predicate on the "owner_wx_id" field. func OwnerWxIDContains(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContains(FieldOwnerWxID, v)) } // OwnerWxIDHasPrefix applies the HasPrefix predicate on the "owner_wx_id" field. func OwnerWxIDHasPrefix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasPrefix(FieldOwnerWxID, v)) } // OwnerWxIDHasSuffix applies the HasSuffix predicate on the "owner_wx_id" field. func OwnerWxIDHasSuffix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasSuffix(FieldOwnerWxID, v)) } // OwnerWxIDEqualFold applies the EqualFold predicate on the "owner_wx_id" field. func OwnerWxIDEqualFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEqualFold(FieldOwnerWxID, v)) } // OwnerWxIDContainsFold applies the ContainsFold predicate on the "owner_wx_id" field. func OwnerWxIDContainsFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContainsFold(FieldOwnerWxID, v)) } // OwnerWxTypeEQ applies the EQ predicate on the "owner_wx_type" field. func OwnerWxTypeEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOwnerWxType, v)) } // OwnerWxTypeNEQ applies the NEQ predicate on the "owner_wx_type" field. func OwnerWxTypeNEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldOwnerWxType, v)) } // OwnerWxTypeIn applies the In predicate on the "owner_wx_type" field. func OwnerWxTypeIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldOwnerWxType, vs...)) } // OwnerWxTypeNotIn applies the NotIn predicate on the "owner_wx_type" field. func OwnerWxTypeNotIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldOwnerWxType, vs...)) } // OwnerWxTypeGT applies the GT predicate on the "owner_wx_type" field. func OwnerWxTypeGT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldOwnerWxType, v)) } // OwnerWxTypeGTE applies the GTE predicate on the "owner_wx_type" field. func OwnerWxTypeGTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldOwnerWxType, v)) } // OwnerWxTypeLT applies the LT predicate on the "owner_wx_type" field. func OwnerWxTypeLT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldOwnerWxType, v)) } // OwnerWxTypeLTE applies the LTE predicate on the "owner_wx_type" field. func OwnerWxTypeLTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldOwnerWxType, v)) } // FindContentEQ applies the EQ predicate on the "find_content" field. func FindContentEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldFindContent, v)) } // FindContentNEQ applies the NEQ predicate on the "find_content" field. func FindContentNEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldFindContent, v)) } // FindContentIn applies the In predicate on the "find_content" field. func FindContentIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldFindContent, vs...)) } // FindContentNotIn applies the NotIn predicate on the "find_content" field. func FindContentNotIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldFindContent, vs...)) } // FindContentGT applies the GT predicate on the "find_content" field. func FindContentGT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldFindContent, v)) } // FindContentGTE applies the GTE predicate on the "find_content" field. func FindContentGTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldFindContent, v)) } // FindContentLT applies the LT predicate on the "find_content" field. func FindContentLT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldFindContent, v)) } // FindContentLTE applies the LTE predicate on the "find_content" field. func FindContentLTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldFindContent, v)) } // FindContentContains applies the Contains predicate on the "find_content" field. func FindContentContains(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContains(FieldFindContent, v)) } // FindContentHasPrefix applies the HasPrefix predicate on the "find_content" field. func FindContentHasPrefix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasPrefix(FieldFindContent, v)) } // FindContentHasSuffix applies the HasSuffix predicate on the "find_content" field. func FindContentHasSuffix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasSuffix(FieldFindContent, v)) } // FindContentEqualFold applies the EqualFold predicate on the "find_content" field. func FindContentEqualFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEqualFold(FieldFindContent, v)) } // FindContentContainsFold applies the ContainsFold predicate on the "find_content" field. func FindContentContainsFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContainsFold(FieldFindContent, v)) } // MessageEQ applies the EQ predicate on the "message" field. func MessageEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldMessage, v)) } // MessageNEQ applies the NEQ predicate on the "message" field. func MessageNEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldMessage, v)) } // MessageIn applies the In predicate on the "message" field. func MessageIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldMessage, vs...)) } // MessageNotIn applies the NotIn predicate on the "message" field. func MessageNotIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldMessage, vs...)) } // MessageGT applies the GT predicate on the "message" field. func MessageGT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldMessage, v)) } // MessageGTE applies the GTE predicate on the "message" field. func MessageGTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldMessage, v)) } // MessageLT applies the LT predicate on the "message" field. func MessageLT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldMessage, v)) } // MessageLTE applies the LTE predicate on the "message" field. func MessageLTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldMessage, v)) } // MessageContains applies the Contains predicate on the "message" field. func MessageContains(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContains(FieldMessage, v)) } // MessageHasPrefix applies the HasPrefix predicate on the "message" field. func MessageHasPrefix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasPrefix(FieldMessage, v)) } // MessageHasSuffix applies the HasSuffix predicate on the "message" field. func MessageHasSuffix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasSuffix(FieldMessage, v)) } // MessageEqualFold applies the EqualFold predicate on the "message" field. func MessageEqualFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEqualFold(FieldMessage, v)) } // MessageContainsFold applies the ContainsFold predicate on the "message" field. func MessageContainsFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContainsFold(FieldMessage, v)) } // FindRequestIsNil applies the IsNil predicate on the "find_request" field. func FindRequestIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldFindRequest)) } // FindRequestNotNil applies the NotNil predicate on the "find_request" field. func FindRequestNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldFindRequest)) } // FindResultIsNil applies the IsNil predicate on the "find_result" field. func FindResultIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldFindResult)) } // FindResultNotNil applies the NotNil predicate on the "find_result" field. func FindResultNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldFindResult)) } // IsCanAddEQ applies the EQ predicate on the "is_can_add" field. func IsCanAddEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldIsCanAdd, v)) } // IsCanAddNEQ applies the NEQ predicate on the "is_can_add" field. func IsCanAddNEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldIsCanAdd, v)) } // IsCanAddIn applies the In predicate on the "is_can_add" field. func IsCanAddIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldIsCanAdd, vs...)) } // IsCanAddNotIn applies the NotIn predicate on the "is_can_add" field. func IsCanAddNotIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldIsCanAdd, vs...)) } // IsCanAddGT applies the GT predicate on the "is_can_add" field. func IsCanAddGT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldIsCanAdd, v)) } // IsCanAddGTE applies the GTE predicate on the "is_can_add" field. func IsCanAddGTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldIsCanAdd, v)) } // IsCanAddLT applies the LT predicate on the "is_can_add" field. func IsCanAddLT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldIsCanAdd, v)) } // IsCanAddLTE applies the LTE predicate on the "is_can_add" field. func IsCanAddLTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldIsCanAdd, v)) } // TaskCountEQ applies the EQ predicate on the "task_count" field. func TaskCountEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldTaskCount, v)) } // TaskCountNEQ applies the NEQ predicate on the "task_count" field. func TaskCountNEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldTaskCount, v)) } // TaskCountIn applies the In predicate on the "task_count" field. func TaskCountIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldTaskCount, vs...)) } // TaskCountNotIn applies the NotIn predicate on the "task_count" field. func TaskCountNotIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldTaskCount, vs...)) } // TaskCountGT applies the GT predicate on the "task_count" field. func TaskCountGT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldTaskCount, v)) } // TaskCountGTE applies the GTE predicate on the "task_count" field. func TaskCountGTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldTaskCount, v)) } // TaskCountLT applies the LT predicate on the "task_count" field. func TaskCountLT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldTaskCount, v)) } // TaskCountLTE applies the LTE predicate on the "task_count" field. func TaskCountLTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldTaskCount, v)) } // TaskIDEQ applies the EQ predicate on the "task_id" field. func TaskIDEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldTaskID, v)) } // TaskIDNEQ applies the NEQ predicate on the "task_id" field. func TaskIDNEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldTaskID, v)) } // TaskIDIn applies the In predicate on the "task_id" field. func TaskIDIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldTaskID, vs...)) } // TaskIDNotIn applies the NotIn predicate on the "task_id" field. func TaskIDNotIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldTaskID, vs...)) } // TaskIDGT applies the GT predicate on the "task_id" field. func TaskIDGT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldTaskID, v)) } // TaskIDGTE applies the GTE predicate on the "task_id" field. func TaskIDGTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldTaskID, v)) } // TaskIDLT applies the LT predicate on the "task_id" field. func TaskIDLT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldTaskID, v)) } // TaskIDLTE applies the LTE predicate on the "task_id" field. func TaskIDLTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldTaskID, v)) } // AddRequestIsNil applies the IsNil predicate on the "add_request" field. func AddRequestIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldAddRequest)) } // AddRequestNotNil applies the NotNil predicate on the "add_request" field. func AddRequestNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldAddRequest)) } // AddResultIsNil applies the IsNil predicate on the "add_result" field. func AddResultIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldAddResult)) } // AddResultNotNil applies the NotNil predicate on the "add_result" field. func AddResultNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldAddResult)) } // CreatedAtEQ applies the EQ predicate on the "created_at" field. func CreatedAtEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldCreatedAt, v)) } // CreatedAtNEQ applies the NEQ predicate on the "created_at" field. func CreatedAtNEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldCreatedAt, v)) } // CreatedAtIn applies the In predicate on the "created_at" field. func CreatedAtIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldCreatedAt, vs...)) } // CreatedAtNotIn applies the NotIn predicate on the "created_at" field. func CreatedAtNotIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldCreatedAt, vs...)) } // CreatedAtGT applies the GT predicate on the "created_at" field. func CreatedAtGT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldCreatedAt, v)) } // CreatedAtGTE applies the GTE predicate on the "created_at" field. func CreatedAtGTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldCreatedAt, v)) } // CreatedAtLT applies the LT predicate on the "created_at" field. func CreatedAtLT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldCreatedAt, v)) } // CreatedAtLTE applies the LTE predicate on the "created_at" field. func CreatedAtLTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldCreatedAt, v)) } // UpdatedAtEQ applies the EQ predicate on the "updated_at" field. func UpdatedAtEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldUpdatedAt, v)) } // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field. func UpdatedAtNEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldUpdatedAt, v)) } // UpdatedAtIn applies the In predicate on the "updated_at" field. func UpdatedAtIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldUpdatedAt, vs...)) } // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field. func UpdatedAtNotIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldUpdatedAt, vs...)) } // UpdatedAtGT applies the GT predicate on the "updated_at" field. func UpdatedAtGT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldUpdatedAt, v)) } // UpdatedAtGTE applies the GTE predicate on the "updated_at" field. func UpdatedAtGTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldUpdatedAt, v)) } // UpdatedAtLT applies the LT predicate on the "updated_at" field. func UpdatedAtLT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldUpdatedAt, v)) } // UpdatedAtLTE applies the LTE predicate on the "updated_at" field. func UpdatedAtLTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldUpdatedAt, v)) } // SourceEQ applies the EQ predicate on the "source" field. func SourceEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldSource, v)) } // SourceNEQ applies the NEQ predicate on the "source" field. func SourceNEQ(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldSource, v)) } // SourceIn applies the In predicate on the "source" field. func SourceIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldSource, vs...)) } // SourceNotIn applies the NotIn predicate on the "source" field. func SourceNotIn(vs ...int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldSource, vs...)) } // SourceGT applies the GT predicate on the "source" field. func SourceGT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldSource, v)) } // SourceGTE applies the GTE predicate on the "source" field. func SourceGTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldSource, v)) } // SourceLT applies the LT predicate on the "source" field. func SourceLT(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldSource, v)) } // SourceLTE applies the LTE predicate on the "source" field. func SourceLTE(v int) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldSource, v)) } // SourceIsNil applies the IsNil predicate on the "source" field. func SourceIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldSource)) } // SourceNotNil applies the NotNil predicate on the "source" field. func SourceNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldSource)) } // NickNameEQ applies the EQ predicate on the "nick_name" field. func NickNameEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldNickName, v)) } // NickNameNEQ applies the NEQ predicate on the "nick_name" field. func NickNameNEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldNickName, v)) } // NickNameIn applies the In predicate on the "nick_name" field. func NickNameIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldNickName, vs...)) } // NickNameNotIn applies the NotIn predicate on the "nick_name" field. func NickNameNotIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldNickName, vs...)) } // NickNameGT applies the GT predicate on the "nick_name" field. func NickNameGT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldNickName, v)) } // NickNameGTE applies the GTE predicate on the "nick_name" field. func NickNameGTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldNickName, v)) } // NickNameLT applies the LT predicate on the "nick_name" field. func NickNameLT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldNickName, v)) } // NickNameLTE applies the LTE predicate on the "nick_name" field. func NickNameLTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldNickName, v)) } // NickNameContains applies the Contains predicate on the "nick_name" field. func NickNameContains(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContains(FieldNickName, v)) } // NickNameHasPrefix applies the HasPrefix predicate on the "nick_name" field. func NickNameHasPrefix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasPrefix(FieldNickName, v)) } // NickNameHasSuffix applies the HasSuffix predicate on the "nick_name" field. func NickNameHasSuffix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasSuffix(FieldNickName, v)) } // NickNameIsNil applies the IsNil predicate on the "nick_name" field. func NickNameIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldNickName)) } // NickNameNotNil applies the NotNil predicate on the "nick_name" field. func NickNameNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldNickName)) } // NickNameEqualFold applies the EqualFold predicate on the "nick_name" field. func NickNameEqualFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEqualFold(FieldNickName, v)) } // NickNameContainsFold applies the ContainsFold predicate on the "nick_name" field. func NickNameContainsFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContainsFold(FieldNickName, v)) } // AvatarEQ applies the EQ predicate on the "avatar" field. func AvatarEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldAvatar, v)) } // AvatarNEQ applies the NEQ predicate on the "avatar" field. func AvatarNEQ(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldAvatar, v)) } // AvatarIn applies the In predicate on the "avatar" field. func AvatarIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldAvatar, vs...)) } // AvatarNotIn applies the NotIn predicate on the "avatar" field. func AvatarNotIn(vs ...string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldAvatar, vs...)) } // AvatarGT applies the GT predicate on the "avatar" field. func AvatarGT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldAvatar, v)) } // AvatarGTE applies the GTE predicate on the "avatar" field. func AvatarGTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldAvatar, v)) } // AvatarLT applies the LT predicate on the "avatar" field. func AvatarLT(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldAvatar, v)) } // AvatarLTE applies the LTE predicate on the "avatar" field. func AvatarLTE(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldAvatar, v)) } // AvatarContains applies the Contains predicate on the "avatar" field. func AvatarContains(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContains(FieldAvatar, v)) } // AvatarHasPrefix applies the HasPrefix predicate on the "avatar" field. func AvatarHasPrefix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasPrefix(FieldAvatar, v)) } // AvatarHasSuffix applies the HasSuffix predicate on the "avatar" field. func AvatarHasSuffix(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldHasSuffix(FieldAvatar, v)) } // AvatarIsNil applies the IsNil predicate on the "avatar" field. func AvatarIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldAvatar)) } // AvatarNotNil applies the NotNil predicate on the "avatar" field. func AvatarNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldAvatar)) } // AvatarEqualFold applies the EqualFold predicate on the "avatar" field. func AvatarEqualFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEqualFold(FieldAvatar, v)) } // AvatarContainsFold applies the ContainsFold predicate on the "avatar" field. func AvatarContainsFold(v string) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldContainsFold(FieldAvatar, v)) } // OrganizationIDEQ applies the EQ predicate on the "organization_id" field. func OrganizationIDEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldEQ(FieldOrganizationID, v)) } // OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field. func OrganizationIDNEQ(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNEQ(FieldOrganizationID, v)) } // OrganizationIDIn applies the In predicate on the "organization_id" field. func OrganizationIDIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIn(FieldOrganizationID, vs...)) } // OrganizationIDNotIn applies the NotIn predicate on the "organization_id" field. func OrganizationIDNotIn(vs ...int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotIn(FieldOrganizationID, vs...)) } // OrganizationIDGT applies the GT predicate on the "organization_id" field. func OrganizationIDGT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGT(FieldOrganizationID, v)) } // OrganizationIDGTE applies the GTE predicate on the "organization_id" field. func OrganizationIDGTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldGTE(FieldOrganizationID, v)) } // OrganizationIDLT applies the LT predicate on the "organization_id" field. func OrganizationIDLT(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLT(FieldOrganizationID, v)) } // OrganizationIDLTE applies the LTE predicate on the "organization_id" field. func OrganizationIDLTE(v int64) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldLTE(FieldOrganizationID, v)) } // OrganizationIDIsNil applies the IsNil predicate on the "organization_id" field. func OrganizationIDIsNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldIsNull(FieldOrganizationID)) } // OrganizationIDNotNil applies the NotNil predicate on the "organization_id" field. func OrganizationIDNotNil() predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.FieldNotNull(FieldOrganizationID)) } // And groups predicates with the AND operator between them. func And(predicates ...predicate.AddWechatFriendLog) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.AndPredicates(predicates...)) } // Or groups predicates with the OR operator between them. func Or(predicates ...predicate.AddWechatFriendLog) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.OrPredicates(predicates...)) } // Not applies the not operator on the given predicate. func Not(p predicate.AddWechatFriendLog) predicate.AddWechatFriendLog { return predicate.AddWechatFriendLog(sql.NotPredicates(p)) }