| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package system
- import (
- "github.com/gin-gonic/gin"
- "device-manage/app/admin/models"
- "device-manage/tools"
- "device-manage/tools/app"
- )
- // @Summary 岗位列表数据
- // @Description 获取JSON
- // @Tags 岗位
- // @Param postName query string false "postName"
- // @Param postCode query string false "postCode"
- // @Param postId query string false "postId"
- // @Param status query string false "status"
- // @Success 200 {object} app.Response "{"code": 200, "data": [...]}"
- // @Router /api/v1/post [get]
- // @Security Bearer
- func GetPostList(c *gin.Context) {
- var data models.Post
- var err error
- var pageSize = 10
- var pageIndex = 1
- if size := c.Request.FormValue("pageSize"); size != "" {
- pageSize, err = tools.StringToInt(size)
- }
- if index := c.Request.FormValue("pageIndex"); index != "" {
- pageIndex, err = tools.StringToInt(index)
- }
- id := c.Request.FormValue("postId")
- data.PostId, _ = tools.StringToInt(id)
- data.PostCode = c.Request.FormValue("postCode")
- data.PostName = c.Request.FormValue("postName")
- data.Status = c.Request.FormValue("status")
- data.DataScope = tools.GetUserIdStr(c)
- result, count, err := data.GetPage(pageSize, pageIndex)
- tools.HasError(err, "", -1)
- app.PageOK(c, result, count, pageIndex, pageSize, "")
- }
- // @Summary 获取岗位信息
- // @Description 获取JSON
- // @Tags 岗位
- // @Param postId path int true "postId"
- // @Success 200 {object} app.Response "{"code": 200, "data": [...]}"
- // @Router /api/v1/post/{postId} [get]
- // @Security Bearer
- func GetPost(c *gin.Context) {
- var Post models.Post
- Post.PostId, _ = tools.StringToInt(c.Param("postId"))
- result, err := Post.Get()
- tools.HasError(err, "抱歉未找到相关信息", -1)
- app.OK(c, result, "")
- }
- // @Summary 添加岗位
- // @Description 获取JSON
- // @Tags 岗位
- // @Accept application/json
- // @Product application/json
- // @Param data body models.Post true "data"
- // @Success 200 {string} string "{"code": 200, "message": "添加成功"}"
- // @Success 200 {string} string "{"code": -1, "message": "添加失败"}"
- // @Router /api/v1/post [post]
- // @Security Bearer
- func InsertPost(c *gin.Context) {
- var data models.Post
- err := c.Bind(&data)
- data.CreateBy = tools.GetUserIdStr(c)
- tools.HasError(err, "", 500)
- result, err := data.Create()
- tools.HasError(err, "", -1)
- app.OK(c, result, "")
- }
- // @Summary 修改岗位
- // @Description 获取JSON
- // @Tags 岗位
- // @Accept application/json
- // @Product application/json
- // @Param data body models.Post true "body"
- // @Success 200 {string} string "{"code": 200, "message": "添加成功"}"
- // @Success 200 {string} string "{"code": -1, "message": "添加失败"}"
- // @Router /api/v1/post/ [put]
- // @Security Bearer
- func UpdatePost(c *gin.Context) {
- var data models.Post
- err := c.Bind(&data)
- data.UpdateBy = tools.GetUserIdStr(c)
- tools.HasError(err, "", -1)
- result, err := data.Update(data.PostId)
- tools.HasError(err, "", -1)
- app.OK(c, result, "修改成功")
- }
- // @Summary 删除岗位
- // @Description 删除数据
- // @Tags 岗位
- // @Param id path int true "id"
- // @Success 200 {string} string "{"code": 200, "message": "删除成功"}"
- // @Success 500 {string} string "{"code": 500, "message": "删除失败"}"
- // @Router /api/v1/post/{postId} [delete]
- func DeletePost(c *gin.Context) {
- var data models.Post
- data.UpdateBy = tools.GetUserIdStr(c)
- IDS := tools.IdsStrToIdsIntGroup("postId", c)
- result, err := data.BatchDelete(IDS)
- tools.HasError(err, "删除失败", 500)
- app.OK(c, result, "删除成功")
- }
|