From 0ee79f63bfd53c62d2e20a5689c0bca03a4900ca Mon Sep 17 00:00:00 2001 From: chenweijian <820961417@qq.com> Date: Mon, 3 Jul 2023 15:58:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BE=E5=AF=B9=E9=82=80=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- domain/model/invite_m/invite_apply.go | 4 ++-- route/invite_r/party_invite.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/domain/model/invite_m/invite_apply.go b/domain/model/invite_m/invite_apply.go index 44671a8..2ae9124 100644 --- a/domain/model/invite_m/invite_apply.go +++ b/domain/model/invite_m/invite_apply.go @@ -65,9 +65,9 @@ func IsInInviteApply(model *domain.Model, userId mysql.ID) (bool, error) { } // 检查被邀请人是否存在 -func GetInviteApplyNumByType(model *domain.Model, gType int, beginTime, endTime time.Time) (int, error) { +func GetInviteApplyNumByType(model *domain.Model, gType int, beginTime, endTime time.Time, userId uint64) (int, error) { var count int64 - db := model.Db.Model(InviteApply{}).Where("created_time >= ? and created_time <= ?", beginTime, endTime) + db := model.Db.Model(InviteApply{}).Where("user_id=?", userId).Where("created_time >= ? and created_time <= ?", beginTime, endTime) switch gType { // 1.已申请2.待审核3.已通过4.已拒绝 case 2: db = db.Where("`status` = ?", 0) diff --git a/route/invite_r/party_invite.go b/route/invite_r/party_invite.go index a6b904b..f79c4ea 100644 --- a/route/invite_r/party_invite.go +++ b/route/invite_r/party_invite.go @@ -163,7 +163,7 @@ func InviteApplyList(c *gin.Context) (*mycontext.MyContext, error) { if param.Type == 0 { // 返回所有Type类型有多少条数 numList := make([]*invite_cv.InviteApplyNumRes, 0, 4) for _, gType := range []int{1, 2, 3, 4} { // 1.已申请2.待审核3.已通过4.已拒绝 - num, err := invite_m.GetInviteApplyNumByType(model, gType, param.BeginTime, param.EndTime) + num, err := invite_m.GetInviteApplyNumByType(model, gType, param.BeginTime, param.EndTime, userId) if err != nil { return myCtx, err } -- 2.22.0