|
@@ -1,19 +1,16 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
-
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.SysDictionaryInfoDTO;
|
|
|
-import com.diagbot.entity.SysUser;
|
|
|
import com.diagbot.facade.SysDictionaryFacade;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-
|
|
|
-import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -30,6 +27,7 @@ import java.util.Map;
|
|
|
@RestController
|
|
|
@SuppressWarnings("unchecked")
|
|
|
@Api(value = "字典信息API", tags = { "字典信息API" })
|
|
|
+@ApiIgnore
|
|
|
public class SysDictionaryInfoController {
|
|
|
|
|
|
@Autowired
|