@RestController @RequestMapping(value="/ams/api/entityTableListBlock") public class EntityTableListBlockController extends Object
| 构造器和说明 |
|---|
EntityTableListBlockController() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
delete(String projectName,
String daoName,
String entityClassName,
String id) |
ListBlockPagingResponse |
list(String projectName,
String daoName,
String entityClassName,
Map<String,Object> amsListConditionMap) |
void |
update(String projectName,
String daoName,
String entityClassName,
com.alibaba.fastjson.JSONObject requestBody) |
com.alibaba.fastjson.JSONObject |
userOperation(String projectName,
String daoName,
String entityClassName,
ListBlockRequest listBlockRequest) |
@RequestMapping(value="/{projectName}/{daoName}/{entityClassName}/list")
public ListBlockPagingResponse list(@PathVariable(value="projectName")
String projectName,
@PathVariable(value="daoName")
String daoName,
@PathVariable(value="entityClassName")
String entityClassName,
@RequestParam
Map<String,Object> amsListConditionMap)
throws Exception
Exception@RequestMapping(value="/{projectName}/{daoName}/{entityClassName}/update")
public void update(@PathVariable(value="projectName")
String projectName,
@PathVariable(value="daoName")
String daoName,
@PathVariable(value="entityClassName")
String entityClassName,
@RequestBody
com.alibaba.fastjson.JSONObject requestBody)
throws Exception
Exception@PostMapping(value="/{projectName}/{daoName}/{entityClassName}/delete")
public void delete(@PathVariable(value="projectName")
String projectName,
@PathVariable(value="daoName")
String daoName,
@PathVariable(value="entityClassName")
String entityClassName,
@RequestParam(value="id")
String id)
throws Exception
Exception@RequestMapping(value="/{projectName}/{daoName}/{entityClassName}/userOperation")
public com.alibaba.fastjson.JSONObject userOperation(@PathVariable(value="projectName")
String projectName,
@PathVariable(value="daoName")
String daoName,
@PathVariable(value="entityClassName")
String entityClassName,
@RequestBody
ListBlockRequest listBlockRequest)
Copyright © 2025. All rights reserved.