新增了上传手机型号接口3

This commit is contained in:
wucongxing8150 2025-08-27 10:30:59 +08:00
parent 204573f557
commit 70b50edb2b

View File

@ -809,8 +809,11 @@ public class MedicalRecordService {
// 修改手机型号
String mod = expert.getMobileModel();
mod = mod + " | " + addForm.getMod();
if (mod.toLowerCase().contains(addForm.getMod().toLowerCase())) {
return ResponseDTO.app_ok();
}
mod = mod + " | " + addForm.getMod();
expert.setMobileModel(mod);
expertDao.updateById(expert);