|
@ -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));
|
|
|
}
|
|
|
|
|
|
|