|
@ -93,7 +93,7 @@ public class SignEndpoint extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "findSignDoctor")
|
|
|
@ApiOperation(value = "查找签约医生")
|
|
|
@ApiOperation(value = "查找签约社工")
|
|
|
public ListEnvelop findSignDoctor (
|
|
|
@ApiParam(name = "patient", value = "居民code", required = true)
|
|
|
@RequestParam(value = "patient",required = true) String patient,
|
|
@ -106,6 +106,20 @@ public class SignEndpoint extends EnvelopRestEndpoint {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "open/findSignDoctor")
|
|
|
@ApiOperation(value = "查找签约社工")
|
|
|
public ListEnvelop openFindSignDoctor (
|
|
|
@ApiParam(name = "patient", value = "居民code", required = true)
|
|
|
@RequestParam(value = "patient",required = true) String patient,
|
|
|
@ApiParam(name = "orgCode", value = "医院code", required = false)
|
|
|
@RequestParam(value = "orgCode",required = false) String orgCode) throws Exception {
|
|
|
try{
|
|
|
return ListEnvelop.getSuccess("查询成功",servicePackageService.findSignDoctor(patient,orgCode));
|
|
|
}catch (Exception e){
|
|
|
return failedListEnvelopException2(e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = "signRecordPage")
|
|
|
@ApiOperation(value = "获取签约记录分页")
|
|
|
public PageEnvelop<List<Map<String,Object>>> signRecordPage (
|