类 ShowTypeController
java.lang.Object
com.jeeplus.devtools.controller.ShowTypeController
@RestController
@RequestMapping("/devtools/showType")
public class ShowTypeController
extends Object
控件类型Controller
- 版本:
- 2021-09-15
- 作者:
- 刘高峰
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明org.springframework.http.ResponseEntity批量删除控件类型org.springframework.http.ResponseEntity<com.baomidou.mybatisplus.core.metadata.IPage<ShowType>>控件类型列表数据org.springframework.http.ResponseEntity查询数据org.springframework.http.ResponseEntity保存控件类型
-
构造器详细资料
-
ShowTypeController
public ShowTypeController()
-
-
方法详细资料
-
list
@PreAuthorize("hasAuthority(\'gencode:showType:list\')") @GetMapping("list") public org.springframework.http.ResponseEntity<com.baomidou.mybatisplus.core.metadata.IPage<ShowType>> list(ShowType showType, com.baomidou.mybatisplus.extension.plugins.pagination.Page<ShowType> page) throws Exception 控件类型列表数据- 抛出:
Exception
-
queryById
@GetMapping("queryById") public org.springframework.http.ResponseEntity queryById(@RequestParam("id") String id) 查询数据 -
save
@PostMapping("save") public org.springframework.http.ResponseEntity save(@RequestBody ShowType showType) 保存控件类型 -
delete
@PreAuthorize("hasAuthority(\'gencode:showType:del\')") @DeleteMapping("delete") public org.springframework.http.ResponseEntity delete(@RequestParam("ids") String ids) 批量删除控件类型
-