完成-101-系统管理-》目录管理-》诊断目录:增加报卡类型字段

完成-78-增加门诊医生开立检验申请单的检验项目选择区的查询。
This commit is contained in:
wangjian963
2026-03-03 16:29:08 +08:00
parent 8810c678c9
commit 455f7938be
6 changed files with 275 additions and 71 deletions

View File

@@ -40,6 +40,11 @@ public class DiseaseManageDto {
private String typeCode;
private String typeCode_dictText;
/** 报表类型 */
@Dict(dictCode = "card_name_code")
private String reportTypeCode;
private String reportTypeCode_dictText;
/** 描述 */
private String description;

View File

@@ -40,6 +40,9 @@ public class DiseaseManageUpDto {
/** 类型 */
private String typeCode;
/** 报表类型 */
private String reportTypeCode;
/** 描述 */
private String description;

View File

@@ -45,6 +45,9 @@ public class ConditionDefinition extends HisBaseEntity {
/** 类型 */
private String typeCode;
/** 报表类型 */
private String reportTypeCode;
/** 描述 */
private String description;