mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
文件上产下载修改
This commit is contained in:
+10
@@ -46,4 +46,14 @@ public interface DictDataApi {
|
||||
CommonResult<DictDataRespDTO> parseDictData(@RequestParam("dictType") String dictType,
|
||||
@RequestParam("label") String label);
|
||||
|
||||
@GetMapping(PREFIX + "/add")
|
||||
@Operation(summary = "新增字典数据")
|
||||
@Parameters({
|
||||
@Parameter(name = "dictType", description = "字典类型", example = "SEX", required = true),
|
||||
@Parameter(name = "label", description = "字典标签", example = "男", required = true),
|
||||
@Parameter(name = "value", description = "字典键值", example = "1", required = true)
|
||||
})
|
||||
CommonResult<Long> addDictData(@RequestParam("dictType") String dictType,
|
||||
@RequestParam("label") String label,
|
||||
@RequestParam("value") String value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user