Browse Source

去掉token校验

master
qiubh 1 month ago
parent
commit
f448bfb06c

+ 1
- 1
zhywpt-app-iaw/src/main/java/cn/com/taiji/iaw/api/comm/DicController.java View File

@@ -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);
}

Loading…
Cancel
Save