Kaynağa Gözat

中山医院

wangzhinan 5 ay önce
ebeveyn
işleme
9dcc948d53

Dosya farkı çok büyük olduğundan ihmal edildi
+ 65 - 5
business/base-service/src/main/java/com/yihu/jw/hospital/prescription/service/entrance/EntranceService.java


+ 10 - 2
svr/svr-internet-hospital-entrance/src/main/java/com/yihu/jw/entrance/controller/MqSdkController.java

@ -401,8 +401,16 @@ public class MqSdkController extends EnvelopRestEndpoint {
    @GetMapping(value = "/MS02014")
    @ApiOperation(value = "医生详细信息同步")
    public ObjEnvelop MS02014() throws Exception {
        return success(entranceService.MS02014(demoFlag));
    public ObjEnvelop MS02014(@ApiParam(name = "hisId", value = "医生id")
                                  @RequestParam(value = "hisId", required = true) String hisId) throws Exception {
        return success(entranceService.MS02014(demoFlag,hisId));
    }
    @GetMapping(value = "/MS02104")
    @ApiOperation(value = "根据医生id获取医生详细信息")
    public ObjEnvelop MS02104(@ApiParam(name = "hisId", value = "医生id")
                              @RequestParam(value = "hisId", required = true) String hisId) throws Exception {
        return success(entranceService.MS020141(demoFlag,hisId));
    }

+ 1 - 0
svr/svr-internet-hospital/src/main/resources/application.yml

@ -1,6 +1,7 @@
#通用的配置不用区分环境变量
server:
  port: ${server.svr-internet-hospital-port}
  max-http-header-size: 1000000
spring:
  aop: