// 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)) } // 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)) } // 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)) }