|
@ -274,7 +274,7 @@ public class CreditsDetailController extends EnvelopRestEndpoint {
|
|
@ApiParam(name = "doctorId",value = "医生code")
|
|
@ApiParam(name = "doctorId",value = "医生code")
|
|
@RequestParam(value = "doctorId",required = false)String doctorId){
|
|
@RequestParam(value = "doctorId",required = false)String doctorId){
|
|
try {
|
|
try {
|
|
return service.doctorDescreaseIntegrate(ruleId,patientId,doctorId,hospital,hospitalName,integrate,reason,null);
|
|
|
|
|
|
return service.doctorDescreaseIntegrate(ruleId,patientId,doctorId,hospital,hospitalName,integrate,reason,null,null,null);
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
tracer.getCurrentSpan().logEvent(e.getMessage());
|
|
tracer.getCurrentSpan().logEvent(e.getMessage());
|
|
@ -309,9 +309,13 @@ public class CreditsDetailController extends EnvelopRestEndpoint {
|
|
@ApiParam(name = "reason",value = "增加的原因")
|
|
@ApiParam(name = "reason",value = "增加的原因")
|
|
@RequestParam(value = "reason",required = false)String reason,
|
|
@RequestParam(value = "reason",required = false)String reason,
|
|
@ApiParam(name = "doctorId",value = "医生code")
|
|
@ApiParam(name = "doctorId",value = "医生code")
|
|
@RequestParam(value = "doctorId",required = false)String doctorId){
|
|
|
|
|
|
@RequestParam(value = "doctorId",required = false)String doctorId,
|
|
|
|
@ApiParam(name = "name",value = "名字")
|
|
|
|
@RequestParam(value = "name",required = false)String name,
|
|
|
|
@ApiParam(name = "idcard",value = "身份证")
|
|
|
|
@RequestParam(value = "idcard",required = false)String idcard){
|
|
try {
|
|
try {
|
|
return service.doctorDescreaseIntegrate(ruleId,patientId,doctorId,hospital,hospitalName,integrate,reason,"add");
|
|
|
|
|
|
return service.doctorDescreaseIntegrate(ruleId,patientId,doctorId,hospital,hospitalName,integrate,reason,"add",name,idcard);
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
tracer.getCurrentSpan().logEvent(e.getMessage());
|
|
tracer.getCurrentSpan().logEvent(e.getMessage());
|