|
@ -221,23 +221,34 @@ public class WlyySerivceController extends BaseController{
|
|
|
|
|
|
/**
|
|
|
* 获取转诊预约医生列表
|
|
|
* @param orgCode 机构编码
|
|
|
* @param deptCode 科室编码
|
|
|
* @param city
|
|
|
* @param hospitalId
|
|
|
* @param hosDeptId
|
|
|
* @param filter
|
|
|
* @param pageIndex
|
|
|
* @param pageSize
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(value = "/third/smjk/RegDeptSpeDoctorList",method = RequestMethod.POST)
|
|
|
@ApiOperation("获取转诊预约医生列表")
|
|
|
@ResponseBody
|
|
|
public String getRegDeptSpeDoctorList(
|
|
|
@ApiParam(name="orgCode",value="机构编码") @RequestParam(name="orgCode",required = true) String orgCode,
|
|
|
@ApiParam(name="deptCode",value="科室编码") @RequestParam(name="deptCode",required = true) String deptCode){
|
|
|
@ApiParam(name = "city", value = "城市编码", defaultValue = "350200")@RequestParam(value = "city", required = true) String city,
|
|
|
@ApiParam(name="hospitalId",value="医院编码",defaultValue = "350211A1001") @RequestParam(name="hospitalId",required = true) String hospitalId,
|
|
|
@ApiParam(name="hosDeptId",value="科室编码",defaultValue = "1040610") @RequestParam(name="hosDeptId",required = true) String hosDeptId,
|
|
|
@ApiParam(name = "filter", value = "过滤条件", defaultValue = "")
|
|
|
@RequestParam(value = "filter", required = false) String filter,
|
|
|
@ApiParam(name = "pageIndex", value = "第几页", defaultValue = "")
|
|
|
@RequestParam(value = "pageIndex", required = false) Integer pageIndex,
|
|
|
@ApiParam(name = "pageSize", value = "每页记录数", defaultValue = "")
|
|
|
@RequestParam(value = "pageSize", required = false) Integer pageSize){
|
|
|
|
|
|
try {
|
|
|
//10天排班的医生列表
|
|
|
//String list = jwSmjkService.getRegDeptSpeDoctorList(orgCode,deptCode);
|
|
|
|
|
|
//7天排班的医生列表
|
|
|
String list = jwSmjkService.GetDoctorList(orgCode,deptCode);
|
|
|
String list = jwSmjkService.GetDoctorList(hospitalId,hosDeptId);
|
|
|
return write(200, "获取转诊预约医生列表成功!", "data", list);
|
|
|
} catch (Exception ex) {
|
|
|
ex.printStackTrace();
|