|
@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.Map;
|
|
@@ -124,6 +125,7 @@ public class PushController {
|
|
|
"adverseReactions:不良反应,String<br>")
|
|
|
@PostMapping("/pushScale")
|
|
|
@SysLogger("pushScale")
|
|
|
+ @ApiIgnore
|
|
|
public RespDTO<Map<String, Object>> pushScale(@RequestBody @Valid PushVO pushVO) {
|
|
|
return RespDTO.onSuc(pushFacade.pushScale(pushVO));
|
|
|
}
|