类 CategoryController

所有已实现的接口:
org.springframework.beans.factory.InitializingBean

@RestController @RequestMapping("/system/category") public class CategoryController extends PlatformAdapterController
平台端基础分类服务
  • 构造器详细资料

  • 方法详细资料

    • getListTree

      @RequestMapping("/list/tree") public com.walker.web.ResponseValue getListTree(@RequestParam(name="type") Integer type, @RequestParam(name="status") Integer status, @RequestParam(name="name",required=false) String name)
    • getInfo

      @RequestMapping(value="/info/{id}", method=GET) public com.walker.web.ResponseValue getInfo(@PathVariable("id") Integer id)
    • save

      @RequestMapping(value="/save", method=POST) public com.walker.web.ResponseValue save(@RequestBody com.iplatform.model.po.S_category category)
    • update

      @RequestMapping(value="/update", method=POST) public com.walker.web.ResponseValue update(@RequestBody com.iplatform.model.po.S_category category)
    • delete

      @RequestMapping("/delete") public com.walker.web.ResponseValue delete(Integer id)