|
@@ -2,6 +2,7 @@ package controller
|
|
|
|
|
|
import (
|
|
|
"github.com/gin-gonic/gin"
|
|
|
+ "iot_manager_service/app/system/dao"
|
|
|
"iot_manager_service/app/system/model"
|
|
|
"iot_manager_service/app/system/service"
|
|
|
"iot_manager_service/util"
|
|
@@ -21,12 +22,20 @@ func (c *user) GetDetail(ctx *gin.Context) {
|
|
|
ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
return
|
|
|
}
|
|
|
- service.UserService.Get(iId)
|
|
|
+ detail, err := service.UserService.Get(iId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, detail))
|
|
|
+
|
|
|
}
|
|
|
|
|
|
func (c *user) List(ctx *gin.Context) {
|
|
|
current, _ := strconv.Atoi(ctx.Query("current"))
|
|
|
size, _ := strconv.Atoi(ctx.Query("size"))
|
|
|
+ account := ctx.Query("account")
|
|
|
+ realName := ctx.Query("realName")
|
|
|
if current == 0 {
|
|
|
current = 1
|
|
|
}
|
|
@@ -34,7 +43,7 @@ func (c *user) List(ctx *gin.Context) {
|
|
|
size = 10
|
|
|
}
|
|
|
|
|
|
- users, err := service.UserService.List(current, size)
|
|
|
+ users, err := service.UserService.List(account, realName, current, size)
|
|
|
if err != nil {
|
|
|
ctx.JSON(http.StatusOK, err)
|
|
|
return
|
|
@@ -45,9 +54,33 @@ func (c *user) List(ctx *gin.Context) {
|
|
|
Size: size,
|
|
|
Total: len(users),
|
|
|
Pages: int(pages),
|
|
|
- }
|
|
|
- for _, device := range users {
|
|
|
- rsp.Records = append(rsp.Records, device)
|
|
|
+ Records: users,
|
|
|
}
|
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, rsp))
|
|
|
}
|
|
|
+
|
|
|
+func (c *user) Submit(ctx *gin.Context) {
|
|
|
+ var req dao.User
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.UserService.Submit(req)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|
|
|
+
|
|
|
+func (c *user) Update(ctx *gin.Context) {
|
|
|
+ var req dao.User
|
|
|
+ if err := ctx.ShouldBindJSON(&req); err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, util.ParamsInvalidResponse(err.Error(), nil))
|
|
|
+ return
|
|
|
+ }
|
|
|
+ err := service.UserService.Update(req)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|
|
|
+
|
|
|
+func (c *user) Remove(ctx *gin.Context) {
|
|
|
+ id, _ := strconv.ParseInt(ctx.Query("id"), 10, 64)
|
|
|
+ err := service.UserService.Remove(id)
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+}
|