@RestController @RequestMapping(value="/devtools/dataBaseType") public class DataBaseTypeController extends Object
| 构造器和说明 |
|---|
DataBaseTypeController() |
| 限定符和类型 | 方法和说明 |
|---|---|
org.springframework.http.ResponseEntity |
delete(String ids)
批量删除数据库字段类型
|
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 |
queryById(String id)
查询数据
|
org.springframework.http.ResponseEntity |
save(DataBaseTypeDTO dataBaseTypeDTO)
保存数据库字段类型
|
@GetMapping(value="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@GetMapping(value="queryById")
public org.springframework.http.ResponseEntity queryById(@RequestParam(value="id")
String id)
@PostMapping(value="save")
public org.springframework.http.ResponseEntity save(@RequestBody
DataBaseTypeDTO dataBaseTypeDTO)
@DeleteMapping(value="delete")
public org.springframework.http.ResponseEntity delete(@RequestParam(value="ids")
String ids)
Copyright © 2022. All rights reserved.