|
@@ -410,6 +410,7 @@ public class DoctorServiceImpl extends ServiceImpl<DoctorMapper, Doctor> impleme
|
|
|
return null;
|
|
|
JSONObject jsonDoctor = jsonObject.getJSONObject("data").getJSONArray("doctorList").getJSONObject(0);
|
|
|
Doctor doctor = new Doctor();
|
|
|
+ doctor.setId(UUID.randomUUID().toString().toLowerCase());
|
|
|
doctor.setCreateTime(new Date());
|
|
|
doctor.setDoctorName(jsonDoctor.getString("doctorName"));
|
|
|
doctor.setNickName(jsonDoctor.getString("doctorName"));
|