|
@ -1,5 +1,6 @@
|
|
package com.yihu.jw.hospital.endpoint.prescription;
|
|
package com.yihu.jw.hospital.endpoint.prescription;
|
|
|
|
|
|
|
|
import com.yihu.jw.entity.hospital.prescription.WlyyOutpatientDO;
|
|
import com.yihu.jw.hospital.prescription.service.PrescriptionService;
|
|
import com.yihu.jw.hospital.prescription.service.PrescriptionService;
|
|
import com.yihu.jw.restmodel.base.dict.DictHospitalDeptVO;
|
|
import com.yihu.jw.restmodel.base.dict.DictHospitalDeptVO;
|
|
import com.yihu.jw.restmodel.base.org.BaseOrgVO;
|
|
import com.yihu.jw.restmodel.base.org.BaseOrgVO;
|
|
@ -537,6 +538,17 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
return success(prescriptionService.cooperativeOutpatient(outpatientJson,registerJson,chargeType));
|
|
return success(prescriptionService.cooperativeOutpatient(outpatientJson,registerJson,chargeType));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@PostMapping(value = BaseHospitalRequestMapping.Prescription.saveOutpatientDoctor)
|
|
|
|
@ApiOperation(value = "发起协同门诊", notes = "发起协同门诊")
|
|
|
|
public ObjEnvelop saveOutpatientDoctor(@ApiParam(name = "outpatientJson", value = "复诊实体json")
|
|
|
|
@RequestParam(value = "outpatientJson", required = true)String outpatientJson,
|
|
|
|
@ApiParam(name = "registerJson", value = "预约实体json")
|
|
|
|
@RequestParam(value = "registerJson", required = false)String registerJson,
|
|
|
|
@ApiParam(name = "chargeType", value = "号别")
|
|
|
|
@RequestParam(value = "chargeType", required = false)String chargeType)throws Exception {
|
|
|
|
return success(prescriptionService.saveOutpatientDoctor(outpatientJson,registerJson,chargeType));
|
|
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.checkOauthQRCode)
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.checkOauthQRCode)
|
|
@ApiOperation(value = "验证授权", notes = "验证授权")
|
|
@ApiOperation(value = "验证授权", notes = "验证授权")
|
|
public ObjEnvelop checkOauthQRCode(@ApiParam(name = "authorizeNo", value = "流水编号")
|
|
public ObjEnvelop checkOauthQRCode(@ApiParam(name = "authorizeNo", value = "流水编号")
|