浏览代码

去掉token校验

master
qiubh 1 个月前
父节点
当前提交
f448bfb06c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      zhywpt-app-iaw/src/main/java/cn/com/taiji/iaw/api/comm/DicController.java

+ 1
- 1
zhywpt-app-iaw/src/main/java/cn/com/taiji/iaw/api/comm/DicController.java 查看文件

@@ -33,7 +33,7 @@ public class DicController extends MyValidController {
private DictManager dictManager;
@ApiOperation(value = "2-4.字典项目获取所有")
@PostMapping(value = "/itemGetAll")
public ApiResponse<Map<String, List<DictItemModel>>> itemGetAll(@RequestBody @Valid CommRequestDTO req) throws ManagerException {
public ApiResponse<Map<String, List<DictItemModel>>> itemGetAll(@RequestBody CommRequestDTO req) throws ManagerException {
Map<String, List<DictItemModel>> response = dictManager.getAllDictItem(req);
return ApiResponse.of(response);
}

正在加载...
取消
保存