提交 2dfd3b76 authored 作者: renjiancai's avatar renjiancai

--no commit message

上级 a56f7d6d
......@@ -131,6 +131,12 @@ public class DictionaryController {
example.createCriteria().andEqualTo("code", DictonaryCodeEnum.MEMBERSIGNED.getCode());
return CallBack.success(dictionaryService.selectByExample(example));
}
@ApiOperation(value = "获取丛书列表")
@GetMapping(SysUserRequestPath.BOOKSERIES)
public CallBack<List<Dictionary>> getDictionary(){
Example example = dictionaryService.createExample();
example.createCriteria().andEqualTo("code", DictonaryCodeEnum.BOOKSERIES.getCode());
return CallBack.success(dictionaryService.selectByExample(example));
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论