package test import ( "github.com/gin-gonic/gin" "go.uber.org/zap" "srm/global" "srm/model/common/request" "srm/model/common/response" "srm/model/test" testReq "srm/model/test/request" "srm/service" ) type SupplierTypeApi struct { } var stService = service.ServiceGroupApp.TestServiceGroup.SupplierTypeService // CreateSupplierType 创建SupplierType // @Tags SupplierType // @Summary 创建SupplierType // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data body test.SupplierType true "创建SupplierType" // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" // @Router /st/createSupplierType [post] func (stApi *SupplierTypeApi) CreateSupplierType(c *gin.Context) { var st test.SupplierType err := c.ShouldBindJSON(&st) if err != nil { response.FailWithMessage(err.Error(), c) return } if err := stService.CreateSupplierType(&st); err != nil { global.GVA_LOG.Error("创建失败!", zap.Error(err)) response.FailWithMessage("创建失败", c) } else { response.OkWithMessage("创建成功", c) } } // DeleteSupplierType 删除SupplierType // @Tags SupplierType // @Summary 删除SupplierType // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data body test.SupplierType true "删除SupplierType" // @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}" // @Router /st/deleteSupplierType [delete] func (stApi *SupplierTypeApi) DeleteSupplierType(c *gin.Context) { var st test.SupplierType err := c.ShouldBindJSON(&st) if err != nil { response.FailWithMessage(err.Error(), c) return } if err := stService.DeleteSupplierType(st); err != nil { global.GVA_LOG.Error("删除失败!", zap.Error(err)) response.FailWithMessage("删除失败", c) } else { response.OkWithMessage("删除成功", c) } } // DeleteSupplierTypeByIds 批量删除SupplierType // @Tags SupplierType // @Summary 批量删除SupplierType // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data body request.IdsReq true "批量删除SupplierType" // @Success 200 {string} string "{"success":true,"data":{},"msg":"批量删除成功"}" // @Router /st/deleteSupplierTypeByIds [delete] func (stApi *SupplierTypeApi) DeleteSupplierTypeByIds(c *gin.Context) { var IDS request.IdsReq err := c.ShouldBindJSON(&IDS) if err != nil { response.FailWithMessage(err.Error(), c) return } if err := stService.DeleteSupplierTypeByIds(IDS); err != nil { global.GVA_LOG.Error("批量删除失败!", zap.Error(err)) response.FailWithMessage("批量删除失败", c) } else { response.OkWithMessage("批量删除成功", c) } } // UpdateSupplierType 更新SupplierType // @Tags SupplierType // @Summary 更新SupplierType // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data body request.SupplierTypeList true "更新SupplierType" // @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}" // @Router /st/updateSupplierType [put] func (stApi *SupplierTypeApi) UpdateSupplierType(c *gin.Context) { var st testReq.SupplierTypeList err := c.ShouldBindJSON(&st) if err != nil { response.FailWithMessage(err.Error(), c) return } if err := stService.DeleteAll(); err != nil { global.GVA_LOG.Error("删除失败!", zap.Error(err)) response.FailWithMessage("删除失败", c) return } for _, v := range st.SupplierTypes { if err := stService.CreateSupplierType(&v); err != nil { global.GVA_LOG.Error("创建失败!", zap.Error(err)) response.FailWithMessage("创建失败", c) return } } response.OkWithMessage("更新成功", c) } // FindSupplierType 用id查询SupplierType // @Tags SupplierType // @Summary 用id查询SupplierType // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data query test.SupplierType true "用id查询SupplierType" // @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}" // @Router /st/findSupplierType [get] func (stApi *SupplierTypeApi) FindSupplierType(c *gin.Context) { var st test.SupplierType err := c.ShouldBindQuery(&st) if err != nil { response.FailWithMessage(err.Error(), c) return } if rest, err := stService.GetSupplierType(st.ID); err != nil { global.GVA_LOG.Error("查询失败!", zap.Error(err)) response.FailWithMessage("查询失败", c) } else { response.OkWithData(gin.H{"rest": rest}, c) } } // GetSupplierTypeList 分页获取SupplierType列表 // @Tags SupplierType // @Summary 分页获取SupplierType列表 // @Security ApiKeyAuth // @accept application/json // @Produce application/json // @Param data query testReq.SupplierTypeSearch true "分页获取SupplierType列表" // @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}" // @Router /st/getSupplierTypeList [get] func (stApi *SupplierTypeApi) GetSupplierTypeList(c *gin.Context) { var pageInfo testReq.SupplierTypeSearch err := c.ShouldBindQuery(&pageInfo) if err != nil { response.FailWithMessage(err.Error(), c) return } if list, total, err := stService.GetSupplierTypeInfoList(pageInfo); err != nil { global.GVA_LOG.Error("获取失败!", zap.Error(err)) response.FailWithMessage("获取失败", c) } else { response.OkWithDetailed(response.PageResult{ List: list, Total: total, Page: pageInfo.Page, PageSize: pageInfo.PageSize, }, "获取成功", c) } }