|
@@ -10,9 +10,8 @@ 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.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-
|
|
|
-import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -36,7 +35,7 @@ public class SysSetController {
|
|
|
@ApiOperation(value = "获取医院配置[by:gaodm]")
|
|
|
@PostMapping("/getSysSet")
|
|
|
@SysLogger("getSysSet")
|
|
|
- public RespDTO<List<SysSetDTO>> getSysSet(SysSetVO sysSetVO){
|
|
|
+ public RespDTO<List<SysSetDTO>> getSysSet(@RequestBody SysSetVO sysSetVO) {
|
|
|
return RespDTO.onSuc(sysSetFacade.getSysSet(sysSetVO));
|
|
|
}
|
|
|
}
|