实体与db字段规范性修改

This commit is contained in:
Zhang.WH
2025-02-22 17:07:09 +08:00
parent 91e3433ca7
commit 2b6720d75b
32 changed files with 105 additions and 126 deletions

View File

@@ -41,7 +41,7 @@ public class Condition extends HisBaseEntity {
private Integer severityEnum;
/** 疾病或诊断编码 */
private String code;
private String busNo;
/** 身体部位 */
private String bodySiteJson;
@@ -77,7 +77,7 @@ public class Condition extends HisBaseEntity {
private Date recordedDatetime;
/** 记录人 */
private Long recorder;
private Long recorderId;
/** 阶段总结 */
private String stageSummaryText;
@@ -86,7 +86,7 @@ public class Condition extends HisBaseEntity {
private String evidence;
/** 医保编码 */
private String ybCode;
private String ybNo;
}

View File

@@ -32,16 +32,16 @@ public class ConditionDefinition extends HisBaseEntity {
private Integer sourceEnum;
/** 编码 */
private String code;
private String condition_code;
/** 诊断名称 */
private String name;
/** 诊断名称拼音 */
private String pyCode;
private String pyStr;
/** 诊断名称五笔拼音 */
private String wbCode;
private String wbStr;
/** 类型 */
private String typeCode;
@@ -53,7 +53,7 @@ public class ConditionDefinition extends HisBaseEntity {
private Integer ybFlag;
/** 医保编码 */
private String ybCode;
private String ybNo;
/** 医保对码标记 */
private Integer ybMatchFlag;

View File

@@ -43,8 +43,8 @@ public class Procedure extends HisBaseEntity {
/** 分类 */
private Integer categoryEnum;
/** 编码 */
private String code;
/** 手术编码 */
private String procedureCode;
/** 患者Id */
private Long patientId;
@@ -65,7 +65,7 @@ public class Procedure extends HisBaseEntity {
private Date recordedTime;
/** 记录人 */
private Long recorder;
private Long recorderId;
/** 是否有报告 */
private Integer reportFlag;