From 9eb256177877a47ffeb140af72ab639c2daf4bb3 Mon Sep 17 00:00:00 2001 From: zzc Date: Tue, 6 May 2025 21:13:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BA=AB=E9=AB=98=E4=BD=93?= =?UTF-8?q?=E9=87=8D=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mbg.xml | 4 +- .../system/domain/dto/PmsPatientDto.java | 9 + .../system/domain/po/PmsPatient.java | 34 +++- .../system/domain/po/PmsPatientExample.java | 186 +++++++++++++++--- .../system/domain/po/PmsTreatment.java | 22 +++ .../system/domain/po/PmsTreatmentExample.java | 130 ++++++++++++ .../resources/mapper/dao/PmsPatientDao.xml | 4 +- .../mapper/system/PmsPatientMapper.xml | 68 +++++-- .../mapper/system/PmsTreatmentMapper.xml | 49 ++++- 9 files changed, 441 insertions(+), 65 deletions(-) diff --git a/acupuncture-generator/src/main/resources/mbg.xml b/acupuncture-generator/src/main/resources/mbg.xml index b655781a..2b3843c8 100644 --- a/acupuncture-generator/src/main/resources/mbg.xml +++ b/acupuncture-generator/src/main/resources/mbg.xml @@ -20,7 +20,7 @@ @@ -80,7 +80,7 @@ - +
diff --git a/acupuncture-system/src/main/java/com/acupuncture/system/domain/dto/PmsPatientDto.java b/acupuncture-system/src/main/java/com/acupuncture/system/domain/dto/PmsPatientDto.java index b32278eb..bbeadb49 100644 --- a/acupuncture-system/src/main/java/com/acupuncture/system/domain/dto/PmsPatientDto.java +++ b/acupuncture-system/src/main/java/com/acupuncture/system/domain/dto/PmsPatientDto.java @@ -37,6 +37,9 @@ public class PmsPatientDto { @ApiModelProperty("建档人") private String createBy; private String phone; + private String weight; + + private Integer height; } @Data @@ -60,6 +63,10 @@ public class PmsPatientDto { private Byte source; + private String weight; + + private Integer height; + private List currentIllnessHistory; private String currentIllnessHistoryQt; public String getCurrentIllnessHistory() { @@ -91,7 +98,9 @@ public class PmsPatientDto { private String idCard; private Byte source; + private String weight; + private Integer height; private List currentIllnessHistory; private String currentIllnessHistoryQt; public String getCurrentIllnessHistory() { diff --git a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatient.java b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatient.java index 809e35d3..9ec1c907 100644 --- a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatient.java +++ b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatient.java @@ -30,7 +30,9 @@ public class PmsPatient implements Serializable { private String currentIllnessHistory; - private String currentIllnessHistoryQt; + private Integer height; + + private String weight; private Byte delFlag; @@ -46,6 +48,8 @@ public class PmsPatient implements Serializable { private String remark; + private String currentIllnessHistoryQt; + private static final long serialVersionUID = 1L; public Long getId() { @@ -152,12 +156,20 @@ public class PmsPatient implements Serializable { this.currentIllnessHistory = currentIllnessHistory == null ? null : currentIllnessHistory.trim(); } - public String getCurrentIllnessHistoryQt() { - return currentIllnessHistoryQt; + public Integer getHeight() { + return height; } - public void setCurrentIllnessHistoryQt(String currentIllnessHistoryQt) { - this.currentIllnessHistoryQt = currentIllnessHistoryQt == null ? null : currentIllnessHistoryQt.trim(); + public void setHeight(Integer height) { + this.height = height; + } + + public String getWeight() { + return weight; + } + + public void setWeight(String weight) { + this.weight = weight == null ? null : weight.trim(); } public Byte getDelFlag() { @@ -216,6 +228,14 @@ public class PmsPatient implements Serializable { this.remark = remark == null ? null : remark.trim(); } + public String getCurrentIllnessHistoryQt() { + return currentIllnessHistoryQt; + } + + public void setCurrentIllnessHistoryQt(String currentIllnessHistoryQt) { + this.currentIllnessHistoryQt = currentIllnessHistoryQt == null ? null : currentIllnessHistoryQt.trim(); + } + @Override public String toString() { StringBuilder sb = new StringBuilder(); @@ -235,7 +255,8 @@ public class PmsPatient implements Serializable { sb.append(", idCard=").append(idCard); sb.append(", source=").append(source); sb.append(", currentIllnessHistory=").append(currentIllnessHistory); - sb.append(", currentIllnessHistoryQt=").append(currentIllnessHistoryQt); + sb.append(", height=").append(height); + sb.append(", weight=").append(weight); sb.append(", delFlag=").append(delFlag); sb.append(", tenantId=").append(tenantId); sb.append(", createBy=").append(createBy); @@ -243,6 +264,7 @@ public class PmsPatient implements Serializable { sb.append(", updateBy=").append(updateBy); sb.append(", updateTime=").append(updateTime); sb.append(", remark=").append(remark); + sb.append(", currentIllnessHistoryQt=").append(currentIllnessHistoryQt); sb.append("]"); return sb.toString(); } diff --git a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatientExample.java b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatientExample.java index f386307f..3a42998c 100644 --- a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatientExample.java +++ b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsPatientExample.java @@ -982,73 +982,133 @@ public class PmsPatientExample { return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtIsNull() { - addCriterion("current_illness_history_qt is null"); + public Criteria andHeightIsNull() { + addCriterion("height is null"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtIsNotNull() { - addCriterion("current_illness_history_qt is not null"); + public Criteria andHeightIsNotNull() { + addCriterion("height is not null"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtEqualTo(String value) { - addCriterion("current_illness_history_qt =", value, "currentIllnessHistoryQt"); + public Criteria andHeightEqualTo(Integer value) { + addCriterion("height =", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtNotEqualTo(String value) { - addCriterion("current_illness_history_qt <>", value, "currentIllnessHistoryQt"); + public Criteria andHeightNotEqualTo(Integer value) { + addCriterion("height <>", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtGreaterThan(String value) { - addCriterion("current_illness_history_qt >", value, "currentIllnessHistoryQt"); + public Criteria andHeightGreaterThan(Integer value) { + addCriterion("height >", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtGreaterThanOrEqualTo(String value) { - addCriterion("current_illness_history_qt >=", value, "currentIllnessHistoryQt"); + public Criteria andHeightGreaterThanOrEqualTo(Integer value) { + addCriterion("height >=", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtLessThan(String value) { - addCriterion("current_illness_history_qt <", value, "currentIllnessHistoryQt"); + public Criteria andHeightLessThan(Integer value) { + addCriterion("height <", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtLessThanOrEqualTo(String value) { - addCriterion("current_illness_history_qt <=", value, "currentIllnessHistoryQt"); + public Criteria andHeightLessThanOrEqualTo(Integer value) { + addCriterion("height <=", value, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtLike(String value) { - addCriterion("current_illness_history_qt like", value, "currentIllnessHistoryQt"); + public Criteria andHeightIn(List values) { + addCriterion("height in", values, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtNotLike(String value) { - addCriterion("current_illness_history_qt not like", value, "currentIllnessHistoryQt"); + public Criteria andHeightNotIn(List values) { + addCriterion("height not in", values, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtIn(List values) { - addCriterion("current_illness_history_qt in", values, "currentIllnessHistoryQt"); + public Criteria andHeightBetween(Integer value1, Integer value2) { + addCriterion("height between", value1, value2, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtNotIn(List values) { - addCriterion("current_illness_history_qt not in", values, "currentIllnessHistoryQt"); + public Criteria andHeightNotBetween(Integer value1, Integer value2) { + addCriterion("height not between", value1, value2, "height"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtBetween(String value1, String value2) { - addCriterion("current_illness_history_qt between", value1, value2, "currentIllnessHistoryQt"); + public Criteria andWeightIsNull() { + addCriterion("weight is null"); return (Criteria) this; } - public Criteria andCurrentIllnessHistoryQtNotBetween(String value1, String value2) { - addCriterion("current_illness_history_qt not between", value1, value2, "currentIllnessHistoryQt"); + public Criteria andWeightIsNotNull() { + addCriterion("weight is not null"); + return (Criteria) this; + } + + public Criteria andWeightEqualTo(String value) { + addCriterion("weight =", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotEqualTo(String value) { + addCriterion("weight <>", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightGreaterThan(String value) { + addCriterion("weight >", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightGreaterThanOrEqualTo(String value) { + addCriterion("weight >=", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLessThan(String value) { + addCriterion("weight <", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLessThanOrEqualTo(String value) { + addCriterion("weight <=", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLike(String value) { + addCriterion("weight like", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotLike(String value) { + addCriterion("weight not like", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightIn(List values) { + addCriterion("weight in", values, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotIn(List values) { + addCriterion("weight not in", values, "weight"); + return (Criteria) this; + } + + public Criteria andWeightBetween(String value1, String value2) { + addCriterion("weight between", value1, value2, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotBetween(String value1, String value2) { + addCriterion("weight not between", value1, value2, "weight"); return (Criteria) this; } @@ -1501,6 +1561,76 @@ public class PmsPatientExample { addCriterion("remark not between", value1, value2, "remark"); return (Criteria) this; } + + public Criteria andCurrentIllnessHistoryQtIsNull() { + addCriterion("current_illness_history_qt is null"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtIsNotNull() { + addCriterion("current_illness_history_qt is not null"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtEqualTo(String value) { + addCriterion("current_illness_history_qt =", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtNotEqualTo(String value) { + addCriterion("current_illness_history_qt <>", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtGreaterThan(String value) { + addCriterion("current_illness_history_qt >", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtGreaterThanOrEqualTo(String value) { + addCriterion("current_illness_history_qt >=", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtLessThan(String value) { + addCriterion("current_illness_history_qt <", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtLessThanOrEqualTo(String value) { + addCriterion("current_illness_history_qt <=", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtLike(String value) { + addCriterion("current_illness_history_qt like", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtNotLike(String value) { + addCriterion("current_illness_history_qt not like", value, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtIn(List values) { + addCriterion("current_illness_history_qt in", values, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtNotIn(List values) { + addCriterion("current_illness_history_qt not in", values, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtBetween(String value1, String value2) { + addCriterion("current_illness_history_qt between", value1, value2, "currentIllnessHistoryQt"); + return (Criteria) this; + } + + public Criteria andCurrentIllnessHistoryQtNotBetween(String value1, String value2) { + addCriterion("current_illness_history_qt not between", value1, value2, "currentIllnessHistoryQt"); + return (Criteria) this; + } } public static class Criteria extends GeneratedCriteria { diff --git a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatment.java b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatment.java index 3bc166ab..0ae469fc 100644 --- a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatment.java +++ b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatment.java @@ -50,6 +50,10 @@ public class PmsTreatment implements Serializable { private Long memberId; + private Integer height; + + private String weight; + private Byte delFlag; private Long tenantId; @@ -250,6 +254,22 @@ public class PmsTreatment implements Serializable { this.memberId = memberId; } + public Integer getHeight() { + return height; + } + + public void setHeight(Integer height) { + this.height = height; + } + + public String getWeight() { + return weight; + } + + public void setWeight(String weight) { + this.weight = weight == null ? null : weight.trim(); + } + public Byte getDelFlag() { return delFlag; } @@ -335,6 +355,8 @@ public class PmsTreatment implements Serializable { sb.append(", diagnosisName=").append(diagnosisName); sb.append(", status=").append(status); sb.append(", memberId=").append(memberId); + sb.append(", height=").append(height); + sb.append(", weight=").append(weight); sb.append(", delFlag=").append(delFlag); sb.append(", tenantId=").append(tenantId); sb.append(", createBy=").append(createBy); diff --git a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatmentExample.java b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatmentExample.java index 96f09b92..cfd4c232 100644 --- a/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatmentExample.java +++ b/acupuncture-system/src/main/java/com/acupuncture/system/domain/po/PmsTreatmentExample.java @@ -1622,6 +1622,136 @@ public class PmsTreatmentExample { return (Criteria) this; } + public Criteria andHeightIsNull() { + addCriterion("height is null"); + return (Criteria) this; + } + + public Criteria andHeightIsNotNull() { + addCriterion("height is not null"); + return (Criteria) this; + } + + public Criteria andHeightEqualTo(Integer value) { + addCriterion("height =", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightNotEqualTo(Integer value) { + addCriterion("height <>", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightGreaterThan(Integer value) { + addCriterion("height >", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightGreaterThanOrEqualTo(Integer value) { + addCriterion("height >=", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightLessThan(Integer value) { + addCriterion("height <", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightLessThanOrEqualTo(Integer value) { + addCriterion("height <=", value, "height"); + return (Criteria) this; + } + + public Criteria andHeightIn(List values) { + addCriterion("height in", values, "height"); + return (Criteria) this; + } + + public Criteria andHeightNotIn(List values) { + addCriterion("height not in", values, "height"); + return (Criteria) this; + } + + public Criteria andHeightBetween(Integer value1, Integer value2) { + addCriterion("height between", value1, value2, "height"); + return (Criteria) this; + } + + public Criteria andHeightNotBetween(Integer value1, Integer value2) { + addCriterion("height not between", value1, value2, "height"); + return (Criteria) this; + } + + public Criteria andWeightIsNull() { + addCriterion("weight is null"); + return (Criteria) this; + } + + public Criteria andWeightIsNotNull() { + addCriterion("weight is not null"); + return (Criteria) this; + } + + public Criteria andWeightEqualTo(String value) { + addCriterion("weight =", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotEqualTo(String value) { + addCriterion("weight <>", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightGreaterThan(String value) { + addCriterion("weight >", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightGreaterThanOrEqualTo(String value) { + addCriterion("weight >=", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLessThan(String value) { + addCriterion("weight <", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLessThanOrEqualTo(String value) { + addCriterion("weight <=", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightLike(String value) { + addCriterion("weight like", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotLike(String value) { + addCriterion("weight not like", value, "weight"); + return (Criteria) this; + } + + public Criteria andWeightIn(List values) { + addCriterion("weight in", values, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotIn(List values) { + addCriterion("weight not in", values, "weight"); + return (Criteria) this; + } + + public Criteria andWeightBetween(String value1, String value2) { + addCriterion("weight between", value1, value2, "weight"); + return (Criteria) this; + } + + public Criteria andWeightNotBetween(String value1, String value2) { + addCriterion("weight not between", value1, value2, "weight"); + return (Criteria) this; + } + public Criteria andDelFlagIsNull() { addCriterion("del_flag is null"); return (Criteria) this; diff --git a/acupuncture-system/src/main/resources/mapper/dao/PmsPatientDao.xml b/acupuncture-system/src/main/resources/mapper/dao/PmsPatientDao.xml index ffd907e4..7b813c9b 100644 --- a/acupuncture-system/src/main/resources/mapper/dao/PmsPatientDao.xml +++ b/acupuncture-system/src/main/resources/mapper/dao/PmsPatientDao.xml @@ -21,7 +21,9 @@ p.tenant_id as tenantId, p.create_by as createBy, p.create_time as createTime, - t.name as tenantName + t.name as tenantName, + p. weight, + p.height FROM pms_patient p left join diff --git a/acupuncture-system/src/main/resources/mapper/system/PmsPatientMapper.xml b/acupuncture-system/src/main/resources/mapper/system/PmsPatientMapper.xml index ada11a21..3896571c 100644 --- a/acupuncture-system/src/main/resources/mapper/system/PmsPatientMapper.xml +++ b/acupuncture-system/src/main/resources/mapper/system/PmsPatientMapper.xml @@ -15,7 +15,8 @@ - + + @@ -23,6 +24,7 @@ + @@ -84,8 +86,8 @@ id, name, pinyin_full, pinyin_simple, gender, birth_date, ethnicity, education_years, - phone, id_card_type, id_card, source, current_illness_history, current_illness_history_qt, - del_flag, tenant_id, create_by, create_time, update_by, update_time, remark + phone, id_card_type, id_card, source, current_illness_history, height, weight, del_flag, + tenant_id, create_by, create_time, update_by, update_time, remark, current_illness_history_qt @@ -310,8 +324,11 @@ current_illness_history = #{record.currentIllnessHistory,jdbcType=VARCHAR}, - - current_illness_history_qt = #{record.currentIllnessHistoryQt,jdbcType=VARCHAR}, + + height = #{record.height,jdbcType=INTEGER}, + + + weight = #{record.weight,jdbcType=VARCHAR}, del_flag = #{record.delFlag,jdbcType=TINYINT}, @@ -334,6 +351,9 @@ remark = #{record.remark,jdbcType=VARCHAR}, + + current_illness_history_qt = #{record.currentIllnessHistoryQt,jdbcType=VARCHAR}, + @@ -354,14 +374,16 @@ id_card = #{record.idCard,jdbcType=VARCHAR}, source = #{record.source,jdbcType=TINYINT}, current_illness_history = #{record.currentIllnessHistory,jdbcType=VARCHAR}, - current_illness_history_qt = #{record.currentIllnessHistoryQt,jdbcType=VARCHAR}, + height = #{record.height,jdbcType=INTEGER}, + weight = #{record.weight,jdbcType=VARCHAR}, del_flag = #{record.delFlag,jdbcType=TINYINT}, tenant_id = #{record.tenantId,jdbcType=BIGINT}, create_by = #{record.createBy,jdbcType=VARCHAR}, create_time = #{record.createTime,jdbcType=TIMESTAMP}, update_by = #{record.updateBy,jdbcType=VARCHAR}, update_time = #{record.updateTime,jdbcType=TIMESTAMP}, - remark = #{record.remark,jdbcType=VARCHAR} + remark = #{record.remark,jdbcType=VARCHAR}, + current_illness_history_qt = #{record.currentIllnessHistoryQt,jdbcType=VARCHAR} @@ -405,8 +427,11 @@ current_illness_history = #{currentIllnessHistory,jdbcType=VARCHAR}, - - current_illness_history_qt = #{currentIllnessHistoryQt,jdbcType=VARCHAR}, + + height = #{height,jdbcType=INTEGER}, + + + weight = #{weight,jdbcType=VARCHAR}, del_flag = #{delFlag,jdbcType=TINYINT}, @@ -429,6 +454,9 @@ remark = #{remark,jdbcType=VARCHAR}, + + current_illness_history_qt = #{currentIllnessHistoryQt,jdbcType=VARCHAR}, + where id = #{id,jdbcType=BIGINT} @@ -446,14 +474,16 @@ id_card = #{idCard,jdbcType=VARCHAR}, source = #{source,jdbcType=TINYINT}, current_illness_history = #{currentIllnessHistory,jdbcType=VARCHAR}, - current_illness_history_qt = #{currentIllnessHistoryQt,jdbcType=VARCHAR}, + height = #{height,jdbcType=INTEGER}, + weight = #{weight,jdbcType=VARCHAR}, del_flag = #{delFlag,jdbcType=TINYINT}, tenant_id = #{tenantId,jdbcType=BIGINT}, create_by = #{createBy,jdbcType=VARCHAR}, create_time = #{createTime,jdbcType=TIMESTAMP}, update_by = #{updateBy,jdbcType=VARCHAR}, update_time = #{updateTime,jdbcType=TIMESTAMP}, - remark = #{remark,jdbcType=VARCHAR} + remark = #{remark,jdbcType=VARCHAR}, + current_illness_history_qt = #{currentIllnessHistoryQt,jdbcType=VARCHAR} where id = #{id,jdbcType=BIGINT} \ No newline at end of file diff --git a/acupuncture-system/src/main/resources/mapper/system/PmsTreatmentMapper.xml b/acupuncture-system/src/main/resources/mapper/system/PmsTreatmentMapper.xml index 80d143c4..9962dfcf 100644 --- a/acupuncture-system/src/main/resources/mapper/system/PmsTreatmentMapper.xml +++ b/acupuncture-system/src/main/resources/mapper/system/PmsTreatmentMapper.xml @@ -25,6 +25,8 @@ + + @@ -95,7 +97,8 @@ id, patient_id, name, pinyin_full, pinyin_simple, gender, age, birth_date, ethnicity, education_years, phone, id_card_type, id_card, visit_type, visit_number, visit_time, discharge_time, doctor, dept_name, diagnosis_code, diagnosis_name, status, member_id, - del_flag, tenant_id, create_by, create_time, update_by, update_time, remark + height, weight, del_flag, tenant_id, create_by, create_time, update_by, update_time, + remark