提交merge1.3

This commit is contained in:
2025-12-27 15:30:25 +08:00
parent 8c607c8749
commit 088861f66e
1245 changed files with 220442 additions and 77616 deletions

View File

@@ -31,8 +31,19 @@ public class DocInventoryItemStatic extends HisBaseEntity {
@TableId(type = IdType.ASSIGN_ID)
private Long id;
<<<<<<< HEAD
/** 物品类别 */
private String categoryCode;
=======
/** 备份单据编号 */
private String busNo;
/** 药品类别 */
private String medCategoryCode;
/** 耗材类别 */
private String devCategoryCode;
>>>>>>> v1.3
/** 名称 */
private String name;
@@ -49,9 +60,21 @@ public class DocInventoryItemStatic extends HisBaseEntity {
/** 最小单位 */
private String unitCode;
<<<<<<< HEAD
/** 当前库存数量(最小单位数量) */
private BigDecimal quantity;
=======
/** 库存数量 */
private BigDecimal quantity;
/** 包装单位数量(整数部分) */
private BigDecimal number;
/** 包装单位数量(余数部分) */
private BigDecimal remainder;
>>>>>>> v1.3
/** 产品批号 */
private String lotNumber;
@@ -85,8 +108,19 @@ public class DocInventoryItemStatic extends HisBaseEntity {
/** 销售单价(包装单位) */
private BigDecimal salePrice;
<<<<<<< HEAD
/** 项目编号 */
private String busNo;
=======
/** 总零售价 */
private BigDecimal totalSalePrice;
/** 总进价 */
private BigDecimal totalPrice;
/** 项目编号 */
private String itemNo;
>>>>>>> v1.3
/** 最小单位 */
private String minUnitCode;
@@ -117,4 +151,19 @@ public class DocInventoryItemStatic extends HisBaseEntity {
/** 药品五笔码 */
private String wbStr;
<<<<<<< HEAD
=======
/** 剩余过期天数 */
private Integer remainingDays;
/** 库存id */
private Long inventoryId;
/** 医保码 */
private String ybNo;
/** 批准文号 */
private String approvalNumber;
>>>>>>> v1.3
}

View File

@@ -55,4 +55,8 @@ public class DocRecord extends HisBaseEntity {
*/
private Integer isEdit;
/**
* 打印次数
*/
private Integer printCount = 0;
}

View File

@@ -44,6 +44,8 @@ public class DocStatistics extends HisBaseEntity {
* 记录来源
*/
private String source;
/**
* 文书ID
*/
private Long definitionId;
}

View File

@@ -50,5 +50,9 @@ public class DocStatisticsDefinition extends HisBaseEntity {
/** 字典类型 */
private String dictType;
/**
* 类型代码 例 003:体温
*/
private String typeCode;
}