You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.3 KiB
118 lines
4.3 KiB
package system
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/common/response"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/system/request"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/utils"
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type DictionaryApi struct {
|
|
}
|
|
|
|
// @Tags SysDictionary
|
|
// @Summary 创建SysDictionary
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body system.SysDictionary true "SysDictionary模型"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}"
|
|
// @Router /sysDictionary/createSysDictionary [post]
|
|
func (s *DictionaryApi) CreateSysDictionary(c *gin.Context) {
|
|
var dictionary system.SysDictionary
|
|
_ = c.ShouldBindJSON(&dictionary)
|
|
if err := dictionaryService.CreateSysDictionary(dictionary); err != nil {
|
|
global.GVA_LOG.Error("创建失败!", zap.Any("err", err))
|
|
response.FailWithMessage("创建失败", c)
|
|
} else {
|
|
response.OkWithMessage("创建成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags SysDictionary
|
|
// @Summary 删除SysDictionary
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body system.SysDictionary true "SysDictionary模型"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
|
|
// @Router /sysDictionary/deleteSysDictionary [delete]
|
|
func (s *DictionaryApi) DeleteSysDictionary(c *gin.Context) {
|
|
var dictionary system.SysDictionary
|
|
_ = c.ShouldBindJSON(&dictionary)
|
|
if err := dictionaryService.DeleteSysDictionary(dictionary); err != nil {
|
|
global.GVA_LOG.Error("删除失败!", zap.Any("err", err))
|
|
response.FailWithMessage("删除失败", c)
|
|
} else {
|
|
response.OkWithMessage("删除成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags SysDictionary
|
|
// @Summary 更新SysDictionary
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data body system.SysDictionary true "SysDictionary模型"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
|
|
// @Router /sysDictionary/updateSysDictionary [put]
|
|
func (s *DictionaryApi) UpdateSysDictionary(c *gin.Context) {
|
|
var dictionary system.SysDictionary
|
|
_ = c.ShouldBindJSON(&dictionary)
|
|
if err := dictionaryService.UpdateSysDictionary(&dictionary); err != nil {
|
|
global.GVA_LOG.Error("更新失败!", zap.Any("err", err))
|
|
response.FailWithMessage("更新失败", c)
|
|
} else {
|
|
response.OkWithMessage("更新成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags SysDictionary
|
|
// @Summary 用id查询SysDictionary
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data query system.SysDictionary true "ID或字典英名"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
|
|
// @Router /sysDictionary/findSysDictionary [get]
|
|
func (s *DictionaryApi) FindSysDictionary(c *gin.Context) {
|
|
var dictionary system.SysDictionary
|
|
_ = c.ShouldBindQuery(&dictionary)
|
|
if err, sysDictionary := dictionaryService.GetSysDictionary(dictionary.Type, dictionary.ID); err != nil {
|
|
global.GVA_LOG.Error("查询失败!", zap.Any("err", err))
|
|
response.FailWithMessage("查询失败", c)
|
|
} else {
|
|
response.OkWithDetailed(gin.H{"resysDictionary": sysDictionary}, "查询成功", c)
|
|
}
|
|
}
|
|
|
|
// @Tags SysDictionary
|
|
// @Summary 分页获取SysDictionary列表
|
|
// @Security ApiKeyAuth
|
|
// @accept application/json
|
|
// @Produce application/json
|
|
// @Param data query request.SysDictionarySearch true "页码, 每页大小, 搜索条件"
|
|
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
|
|
// @Router /sysDictionary/getSysDictionaryList [get]
|
|
func (s *DictionaryApi) GetSysDictionaryList(c *gin.Context) {
|
|
var pageInfo request.SysDictionarySearch
|
|
_ = c.ShouldBindQuery(&pageInfo)
|
|
if err := utils.Verify(pageInfo.PageInfo, utils.PageInfoVerify); err != nil {
|
|
response.FailWithMessage(err.Error(), c)
|
|
return
|
|
}
|
|
if err, list, total := dictionaryService.GetSysDictionaryInfoList(pageInfo); err != nil {
|
|
global.GVA_LOG.Error("获取失败!", zap.Any("err", err))
|
|
response.FailWithMessage("获取失败", c)
|
|
} else {
|
|
response.OkWithDetailed(response.PageResult{
|
|
List: list,
|
|
Total: total,
|
|
Page: pageInfo.Page,
|
|
PageSize: pageInfo.PageSize,
|
|
}, "获取成功", c)
|
|
}
|
|
}
|