Commit 7033cc97 by zhangxingmin

push

parent 7e5217aa
...@@ -1090,10 +1090,11 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService { ...@@ -1090,10 +1090,11 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
*/ */
@Override @Override
public Result<ApiAppointmentLogDetailResponse> logDetail(String appointmentLogBizId) { public Result<ApiAppointmentLogDetailResponse> logDetail(String appointmentLogBizId) {
ApiAppointmentLogDetailResponse response = null;
AppointmentLog appointmentLog = iAppointmentLogService.queryOne(appointmentLogBizId); AppointmentLog appointmentLog = iAppointmentLogService.queryOne(appointmentLogBizId);
if (!Objects.isNull(appointmentLog)) { if (!Objects.isNull(appointmentLog)) {
//预约信息日志表信息 //预约信息日志表信息
ApiAppointmentLogDetailResponse response = new ApiAppointmentLogDetailResponse(); response = new ApiAppointmentLogDetailResponse();
BeanUtils.copyProperties(appointmentLog,response); BeanUtils.copyProperties(appointmentLog,response);
//预约-转介人信息日志列表 //预约-转介人信息日志列表
...@@ -1118,7 +1119,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService { ...@@ -1118,7 +1119,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
response.setUserSignLogDtoList(userSignLogDtoList); response.setUserSignLogDtoList(userSignLogDtoList);
} }
} }
return Result.success(); return Result.success(response);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment