Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // Create 添加商品分类 // @Tags PmsProductCategoryController // @Router /productCategory/create [post] Create(*gin.Context) // Update 修改商品分类 // @Tags PmsProductCategoryController // @Router /productCategory/update/{id} [post] Update(*gin.Context) // List 分页查询商品分类 // @Tags PmsProductCategoryController // @Router /productCategory/{parentId} [get] List(*gin.Context) // GetItem 根据id获取商品分类 // @Tags PmsProductCategoryController // @Router /productCategory/{id} [get] GetItem(*gin.Context) // Delete 删除商品分类 // @Tags PmsProductCategoryController // @Router /productCategory/delete/{id} [post] Delete(*gin.Context) // @Tags PmsProductCategoryController // @Router /productCategory/update/navStatus [post] UpdateNavStatus(*gin.Context) // UpdateShowStatus 修改显示状态 // @Tags PmsProductCategoryController // @Router /productCategory/update/showStatus [post] UpdateShowStatus(*gin.Context) // ListWithChildren 查询所有一级分类及子分类 // @Tags PmsProductCategoryController // @Router /productCategory/list/withChildren [get] ListWithChildren(*gin.Context) // contains filtered or unexported methods }
Click to show internal directories.
Click to hide internal directories.