diff --git a/adc-da-sys/src/main/java/com/adc/da/sys/controller/DicTypeEORestController.java b/adc-da-sys/src/main/java/com/adc/da/sys/controller/DicTypeEORestController.java index 3f1560e4..c5644193 100644 --- a/adc-da-sys/src/main/java/com/adc/da/sys/controller/DicTypeEORestController.java +++ b/adc-da-sys/src/main/java/com/adc/da/sys/controller/DicTypeEORestController.java @@ -344,6 +344,21 @@ public class DicTypeEORestController extends BaseController { return Result.success(dicTypeEO); } + /** + * @return com.adc.da.util.http.ResponseMessage> + * @Author gaoyan + * @Description 分组查询全部字典类型 + * Date 2018/9/11 19:09 + * @Param [dicCode] + **/ + @ApiOperation(value = "|DicTypeEO|查询字典类型") + @GetMapping("/getDicTypeListCodeByType") + //@RequiresPermissions("sys:dicType:getDicTypeListCode") + public ResponseMessage> getDicTypeListCodeByType(List types) throws Exception { + Map dicTypeEO = dicTypeEOService.getDicTypeListCodeByType(types); + return Result.success(dicTypeEO); + } + /** * @return com.adc.da.util.http.ResponseMessage>> * @Author super_liu