From 262ed6f7770841e64041295351634635e681f471 Mon Sep 17 00:00:00 2001 From: yuezhihang Date: Mon, 7 Mar 2022 17:10:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AD=97=E5=85=B8=20?= =?UTF-8?q?=E6=A0=B9=E6=8D=AE=E7=B4=AF=E7=B1=BB=E5=9E=8B=20=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=AD=97=E5=85=B8=E6=95=B0=E6=8D=AE=20=E6=9C=AA?= =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sys/controller/DicTypeEORestController.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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