feat: Bug #597 - 住院医嘱增加备注字段

This commit is contained in:
2026-05-28 11:00:38 +08:00
parent 83d2e98b2b
commit fbdcd815bd
5 changed files with 28 additions and 0 deletions

View File

@@ -2033,6 +2033,9 @@ public class DoctorStationAdviceAppServiceImpl implements IDoctorStationAdviceAp
serviceRequest.setBasedOnTable(CommonConstants.TableName.MED_MEDICATION_REQUEST);
}
// 备注
serviceRequest.setRemark(adviceSaveDto.getRemark());
iServiceRequestService.saveOrUpdate(serviceRequest);
// 保存时保存诊疗费用项

View File

@@ -270,6 +270,11 @@ public class AdviceSaveDto {
*/
private String sourceBillNo;
/**
* 备注最长50字
*/
private String remark;
/**
* 设置默认值
*/

View File

@@ -238,4 +238,9 @@ public class RequestBaseDto {
@JsonSerialize(using = ToStringSerializer.class)
private Long patientId;
/**
* 备注最长50字
*/
private String remark;
}