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.

111 lines
3.9 KiB

  1. package v1
  2. import (
  3. "fmt"
  4. "gin-vue-admin/global/response"
  5. "gin-vue-admin/model"
  6. "gin-vue-admin/model/request"
  7. resp "gin-vue-admin/model/response"
  8. "gin-vue-admin/service"
  9. "github.com/gin-gonic/gin"
  10. )
  11. // @Tags SysDictionaryDetail
  12. // @Summary 创建SysDictionaryDetail
  13. // @Security ApiKeyAuth
  14. // @accept application/json
  15. // @Produce application/json
  16. // @Param data body model.SysDictionaryDetail true "创建SysDictionaryDetail"
  17. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  18. // @Router /sysDictionaryDetail/createSysDictionaryDetail [post]
  19. func CreateSysDictionaryDetail(c *gin.Context) {
  20. var sysDictionaryDetail model.SysDictionaryDetail
  21. _ = c.ShouldBindJSON(&sysDictionaryDetail)
  22. err := service.CreateSysDictionaryDetail(sysDictionaryDetail)
  23. if err != nil {
  24. response.FailWithMessage(fmt.Sprintf("创建失败,%v", err), c)
  25. } else {
  26. response.OkWithMessage("创建成功", c)
  27. }
  28. }
  29. // @Tags SysDictionaryDetail
  30. // @Summary 删除SysDictionaryDetail
  31. // @Security ApiKeyAuth
  32. // @accept application/json
  33. // @Produce application/json
  34. // @Param data body model.SysDictionaryDetail true "删除SysDictionaryDetail"
  35. // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
  36. // @Router /sysDictionaryDetail/deleteSysDictionaryDetail [delete]
  37. func DeleteSysDictionaryDetail(c *gin.Context) {
  38. var sysDictionaryDetail model.SysDictionaryDetail
  39. _ = c.ShouldBindJSON(&sysDictionaryDetail)
  40. err := service.DeleteSysDictionaryDetail(sysDictionaryDetail)
  41. if err != nil {
  42. response.FailWithMessage(fmt.Sprintf("删除失败,%v", err), c)
  43. } else {
  44. response.OkWithMessage("删除成功", c)
  45. }
  46. }
  47. // @Tags SysDictionaryDetail
  48. // @Summary 更新SysDictionaryDetail
  49. // @Security ApiKeyAuth
  50. // @accept application/json
  51. // @Produce application/json
  52. // @Param data body model.SysDictionaryDetail true "更新SysDictionaryDetail"
  53. // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
  54. // @Router /sysDictionaryDetail/updateSysDictionaryDetail [put]
  55. func UpdateSysDictionaryDetail(c *gin.Context) {
  56. var sysDictionaryDetail model.SysDictionaryDetail
  57. _ = c.ShouldBindJSON(&sysDictionaryDetail)
  58. err := service.UpdateSysDictionaryDetail(&sysDictionaryDetail)
  59. if err != nil {
  60. response.FailWithMessage(fmt.Sprintf("更新失败,%v", err), c)
  61. } else {
  62. response.OkWithMessage("更新成功", c)
  63. }
  64. }
  65. // @Tags SysDictionaryDetail
  66. // @Summary 用id查询SysDictionaryDetail
  67. // @Security ApiKeyAuth
  68. // @accept application/json
  69. // @Produce application/json
  70. // @Param data body model.SysDictionaryDetail true "用id查询SysDictionaryDetail"
  71. // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
  72. // @Router /sysDictionaryDetail/findSysDictionaryDetail [get]
  73. func FindSysDictionaryDetail(c *gin.Context) {
  74. var sysDictionaryDetail model.SysDictionaryDetail
  75. _ = c.ShouldBindQuery(&sysDictionaryDetail)
  76. err, resysDictionaryDetail := service.GetSysDictionaryDetail(sysDictionaryDetail.ID)
  77. if err != nil {
  78. response.FailWithMessage(fmt.Sprintf("查询失败,%v", err), c)
  79. } else {
  80. response.OkWithData(gin.H{"resysDictionaryDetail": resysDictionaryDetail}, c)
  81. }
  82. }
  83. // @Tags SysDictionaryDetail
  84. // @Summary 分页获取SysDictionaryDetail列表
  85. // @Security ApiKeyAuth
  86. // @accept application/json
  87. // @Produce application/json
  88. // @Param data body request.SysDictionaryDetailSearch true "分页获取SysDictionaryDetail列表"
  89. // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
  90. // @Router /sysDictionaryDetail/getSysDictionaryDetailList [get]
  91. func GetSysDictionaryDetailList(c *gin.Context) {
  92. var pageInfo request.SysDictionaryDetailSearch
  93. _ = c.ShouldBindQuery(&pageInfo)
  94. err, list, total := service.GetSysDictionaryDetailInfoList(pageInfo)
  95. if err != nil {
  96. response.FailWithMessage(fmt.Sprintf("获取数据失败,%v", err), c)
  97. } else {
  98. response.OkWithData(resp.PageResult{
  99. List: list,
  100. Total: total,
  101. Page: pageInfo.Page,
  102. PageSize: pageInfo.PageSize,
  103. }, c)
  104. }
  105. }