新增门诊退费相关代码

This commit is contained in:
Zhang.WH
2025-03-17 13:48:12 +08:00
parent dd30fddf04
commit a4e26d416b
13 changed files with 374 additions and 4 deletions

View File

@@ -106,5 +106,12 @@ public class MedicationDispense extends HisBaseEntity {
/** 单次最大剂量 */
private BigDecimal maxUnit;
/** 发放数量 */
private Integer quantity;
/** 发放单位 */
private String unitCode;
/** 产品批号 */
private String lotNumber;
}

View File

@@ -46,6 +46,9 @@ public class MedicationRequest extends HisBaseEntity {
/** 请求单位编码 */
private String unitCode;
/** 产品批号 */
private String lotNumber;
/** 请求合计(元) */
private BigDecimal displayAmount;