|
@@ -19,6 +19,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
@@ -107,6 +108,7 @@ public class IntroduceInfoController {
|
|
|
notes = "map:查询条件(=),key为数据库字段名<br>")
|
|
|
@PostMapping("/getByMap")
|
|
|
@SysLogger("getByMap")
|
|
|
+ @ApiIgnore
|
|
|
public RespDTO<IntroduceInfo> getByMap(@RequestBody Map<String, Object> map) {
|
|
|
List<IntroduceInfo> data = introduceInfoFacade.getByMap(map);
|
|
|
return RespDTO.onSuc(data);
|