forked from github/dataease
fix(api): api简写"详息"替换为"详细信息"
This commit is contained in:
parent
b2b8245892
commit
8d2d7c2144
@ -109,7 +109,7 @@ public class DataSetTableController {
|
||||
}
|
||||
|
||||
@DePermission(type = DePermissionType.DATASET, level = ResourceAuthLevel.DATASET_LEVEL_USE)
|
||||
@ApiOperation("详息")
|
||||
@ApiOperation("详细信息")
|
||||
@PostMapping("get/{id}")
|
||||
public DatasetTable get(@ApiParam(name = "id", value = "数据集ID", required = true) @PathVariable String id) {
|
||||
return dataSetTableService.get(id);
|
||||
@ -194,7 +194,7 @@ public class DataSetTableController {
|
||||
}
|
||||
|
||||
@DePermission(type = DePermissionType.DATASET)
|
||||
@ApiOperation("数据集详息")
|
||||
@ApiOperation("数据集详细信息")
|
||||
@PostMapping("datasetDetail/{id}")
|
||||
public DataSetDetail datasetDetail(@PathVariable String id) {
|
||||
return dataSetTableService.getDatasetDetail(id);
|
||||
|
@ -46,7 +46,7 @@ public class PanelTemplateController {
|
||||
panelTemplateService.delete(id);
|
||||
}
|
||||
|
||||
@ApiOperation("详息")
|
||||
@ApiOperation("详细信息")
|
||||
@GetMapping("/findOne/{id}")
|
||||
public PanelTemplateWithBLOBs findOne(@PathVariable String id) throws Exception {
|
||||
return panelTemplateService.findOne(id);
|
||||
|
@ -51,11 +51,11 @@ public interface LinkApi {
|
||||
@PostMapping("/validatePwd")
|
||||
boolean validatePwd(PasswordRequest request) throws Exception;
|
||||
|
||||
@ApiOperation("资源详息")
|
||||
@ApiOperation("资源详细信息")
|
||||
@GetMapping("/resourceDetail/{resourceId}")
|
||||
Object resourceDetail(@PathVariable String resourceId);
|
||||
|
||||
@ApiOperation("视图详息")
|
||||
@ApiOperation("视图详细信息")
|
||||
@PostMapping("/viewDetail/{viewId}/{panelId}")
|
||||
Object viewDetail(@PathVariable("viewId") String viewId, @PathVariable("panelId") String panelId,
|
||||
@RequestBody ChartExtRequest requestList) throws Exception;
|
||||
|
@ -13,7 +13,7 @@ import lombok.Data;
|
||||
public class PanelTemplateRequest extends PanelTemplateWithBLOBs {
|
||||
@ApiModelProperty("排序")
|
||||
private String sort;
|
||||
@ApiModelProperty("详息")
|
||||
@ApiModelProperty("详细信息")
|
||||
private String withBlobs="Y";
|
||||
@ApiModelProperty("操作类型")
|
||||
private String optType;
|
||||
|
Loading…
Reference in New Issue
Block a user