32 lines
745 B
Go
32 lines
745 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"go-wechat/client"
|
||
|
"go-wechat/entity"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type getGroupUser struct {
|
||
|
GroupId string `json:"groupId" form:"groupId" binding:"required"` // 群Id
|
||
|
}
|
||
|
|
||
|
// GetGroupUsers
|
||
|
// @description: 获取群成员列表
|
||
|
// @param ctx
|
||
|
func GetGroupUsers(ctx *gin.Context) {
|
||
|
var p getGroupUser
|
||
|
if err := ctx.ShouldBind(&p); err != nil {
|
||
|
ctx.String(http.StatusBadRequest, "参数错误")
|
||
|
return
|
||
|
}
|
||
|
// 查询数据
|
||
|
var users []entity.GroupUser
|
||
|
if err := client.MySQL.Where("group_id = ?", p.GroupId).Find(&users).Error; err != nil {
|
||
|
ctx.String(http.StatusInternalServerError, "查询数据失败")
|
||
|
return
|
||
|
}
|
||
|
// 暂时先就这样写着,跑通了再改
|
||
|
ctx.JSON(http.StatusOK, users)
|
||
|
}
|