|
@ -675,10 +675,12 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getJymb)
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getJymb)
|
|
@ApiOperation(value = "检验模板接口")
|
|
@ApiOperation(value = "检验模板接口")
|
|
public ListEnvelop getJymb(@ApiParam(name = "bz_code", value = "入参条件为第一节点代码")
|
|
public ListEnvelop getJymb(@ApiParam(name = "bz_code", value = "入参条件为第一节点代码")
|
|
@RequestParam(value = "bz_code",defaultValue = "") String bz_code,
|
|
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
|
|
@RequestParam(value = "flag",defaultValue = "1获取所有一级节点,2二级,3为具体信息") String flag) throws Exception {
|
|
|
|
return success(prescriptionService.getJymb(bz_code,flag));
|
|
|
|
|
|
@RequestParam(value = "bz_code",defaultValue = "") String bz_code,
|
|
|
|
@ApiParam(name = "tc_no", value = "二级节点代码")
|
|
|
|
@RequestParam(value = "tc_no",defaultValue = "") String tc_no,
|
|
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
|
|
@RequestParam(value = "flag",defaultValue = "1") String flag) throws Exception {
|
|
|
|
return success(prescriptionService.getJymb(bz_code,tc_no,flag));
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getJcmb)
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getJcmb)
|
|
@ -686,9 +688,11 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
public ListEnvelop getJcmb(
|
|
public ListEnvelop getJcmb(
|
|
@ApiParam(name = "bz_code", value = "入参条件为第一节点代码")
|
|
@ApiParam(name = "bz_code", value = "入参条件为第一节点代码")
|
|
@RequestParam(value = "bz_code",defaultValue = "") String bz_code,
|
|
@RequestParam(value = "bz_code",defaultValue = "") String bz_code,
|
|
|
|
@ApiParam(name = "tc_no", value = "二级节点代码")
|
|
|
|
@RequestParam(value = "tc_no",defaultValue = "") String tc_no,
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
@RequestParam(value = "flag",defaultValue = "1获取所有一级节点,2二级,3为具体信息") String flag) throws Exception {
|
|
|
|
return success(prescriptionService.getJcmb(bz_code,flag));
|
|
|
|
|
|
@RequestParam(value = "flag",defaultValue = "1") String flag) throws Exception {
|
|
|
|
return success(prescriptionService.getJcmb(bz_code,tc_no,flag));
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getTcChild)
|
|
@GetMapping(value = BaseHospitalRequestMapping.Prescription.getTcChild)
|
|
@ -712,9 +716,10 @@ public class PrescriptionEndpoint extends EnvelopRestEndpoint {
|
|
public ListEnvelop getTcxz(
|
|
public ListEnvelop getTcxz(
|
|
@ApiParam(name = "bz_code", value = "入参条件为收费项目代码")
|
|
@ApiParam(name = "bz_code", value = "入参条件为收费项目代码")
|
|
@RequestParam(value = "bz_code",defaultValue = "") String charge_code,
|
|
@RequestParam(value = "bz_code",defaultValue = "") String charge_code,
|
|
|
|
@ApiParam(name = "tc_no", value = "二级节点代码")
|
|
|
|
@RequestParam(value = "tc_no",defaultValue = "") String tc_no,
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
@ApiParam(name = "flag", value = "入参条件为第一节点代码")
|
|
@RequestParam(value = "flag",defaultValue = "1获取所有一级节点,2二级,3为具体信息") String flag) throws Exception {
|
|
|
|
prescriptionService.getTcxz(charge_code,flag);
|
|
|
|
return success(prescriptionService.getTcxz(charge_code,flag));
|
|
|
|
|
|
@RequestParam(value = "flag",defaultValue = "1") String flag) throws Exception {
|
|
|
|
return success(prescriptionService.getTcxz(charge_code,tc_no,flag));
|
|
}
|
|
}
|
|
}
|
|
}
|