Merge remote-tracking branch 'remotes/origin/dev' into test

yun-zuoyi
Silliter 6 years ago
commit e5615c77c0

@ -311,9 +311,9 @@ public class SysDictionaryController extends CoreBaseController{
}
}
@GetMapping("/find-soft-type")
@GetMapping("/find-soft-type/{id}")
@ApiOperation(value = "根据模块查询顶级字典",notes = "根据模块查询顶级字典")
public ResultBean findSysDictionaryByTopBySoftType(Integer softType){
public ResultBean findSysDictionaryByTopBySoftType(@PathVariable("id")Integer softType){
try {
List<SysDictionary> dictionaryList = sysDictionaryService.findSysDictionaryByTopBySoftType(softType);
return ResultBean.success("操作成功").setCode(ResourceEnumUtil.MESSAGE.SUCCESS.getCode()).setResultList(dictionaryList);

Loading…
Cancel
Save