类 DataBaseTypeController
java.lang.Object
com.jeeplus.devtools.controller.DataBaseTypeController
@RestController
@RequestMapping("/devtools/dataBaseType")
public class DataBaseTypeController
extends Object
数据库字段类型Controller
- 版本:
- 2021-09-15
- 作者:
- 刘高峰
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明org.springframework.http.ResponseEntity批量删除数据库字段类型org.springframework.http.ResponseEntity<com.baomidou.mybatisplus.core.metadata.IPage<DataBaseType>>list(DataBaseType dataBaseType, com.baomidou.mybatisplus.extension.plugins.pagination.Page<DataBaseType> page) 数据库字段类型列表数据org.springframework.http.ResponseEntity查询数据org.springframework.http.ResponseEntitysave(DataBaseTypeDTO dataBaseTypeDTO) 保存数据库字段类型
-
构造器详细资料
-
DataBaseTypeController
public DataBaseTypeController()
-
-
方法详细资料
-
list
@GetMapping("list") public org.springframework.http.ResponseEntity<com.baomidou.mybatisplus.core.metadata.IPage<DataBaseType>> list(DataBaseType dataBaseType, com.baomidou.mybatisplus.extension.plugins.pagination.Page<DataBaseType> 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 DataBaseTypeDTO dataBaseTypeDTO) 保存数据库字段类型 -
delete
@DeleteMapping("delete") public org.springframework.http.ResponseEntity delete(@RequestParam("ids") String ids) 批量删除数据库字段类型
-