From 4f9bac55365e6741f392ae104dc65edc2d581a43 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Thu, 25 Jun 2026 15:54:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=8D=AF=E5=93=81=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=B0=B1=E5=8C=BB=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=EF=BC=8C=E6=B4=BB=E5=8A=A8=E8=AE=B0=E5=BD=95=EF=BC=8C=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E9=99=84=E4=BB=B6=E4=B8=8A=E4=BC=A0=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/intc/health/domain/HealthActivity.java | 6 ++++++ .../java/com/intc/health/domain/HealthDoctorRecord.java | 6 ++++++ .../java/com/intc/health/domain/HealthMedicineBasic.java | 6 ++++++ .../main/resources/mapper/health/HealthActivityMapper.xml | 6 +++++- .../resources/mapper/health/HealthDoctorRecordMapper.xml | 5 +++++ .../resources/mapper/health/HealthMedicineBasicMapper.xml | 7 ++++++- 6 files changed, 34 insertions(+), 2 deletions(-) diff --git a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthActivity.java b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthActivity.java index 873e434..9452a84 100644 --- a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthActivity.java +++ b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthActivity.java @@ -80,6 +80,11 @@ public class HealthActivity extends BaseEntity /** 费用明细 */ private String costDetail; + /** 附件 */ + @ApiModelProperty(value="附件") + @Excel(name = "附件") + private String attachment; + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) @@ -102,6 +107,7 @@ public class HealthActivity extends BaseEntity .append("totalCost", getTotalCost()) .append("partner", getPartner()) .append("costDetail", getCostDetail()) + .append("attachment", getAttachment()) .toString(); } } diff --git a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthDoctorRecord.java b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthDoctorRecord.java index 0484bb6..fc9b3d6 100644 --- a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthDoctorRecord.java +++ b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthDoctorRecord.java @@ -92,6 +92,11 @@ public class HealthDoctorRecord extends BaseEntity @Excel(name = "就诊类型") private String type; + /** 附件 */ + @ApiModelProperty(value="附件") + @Excel(name = "附件") + private String attachment; + @Override public String toString() { @@ -114,6 +119,7 @@ public class HealthDoctorRecord extends BaseEntity .append("partner", getPartner()) .append("costDetail", getCostDetail()) .append("type", getType()) + .append("attachment", getAttachment()) .append("diagnosis", getDiagnosis()) .toString(); } diff --git a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthMedicineBasic.java b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthMedicineBasic.java index 9463645..c60afa1 100644 --- a/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthMedicineBasic.java +++ b/intc-modules/intc-health/src/main/java/com/intc/health/domain/HealthMedicineBasic.java @@ -129,6 +129,11 @@ public class HealthMedicineBasic extends BaseEntity @Excel(name = "包装单位") private String packageUnit; + /** 附件 */ + @ApiModelProperty(value="附件") + @Excel(name = "附件") + private String attachment; + @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) @@ -162,6 +167,7 @@ public class HealthMedicineBasic extends BaseEntity .append("indications", getIndications()) .append("shortName", getShortName()) .append("packageUnit", getPackageUnit()) + .append("attachment", getAttachment()) .toString(); } } diff --git a/intc-modules/intc-health/src/main/resources/mapper/health/HealthActivityMapper.xml b/intc-modules/intc-health/src/main/resources/mapper/health/HealthActivityMapper.xml index 11adb9b..239c41e 100644 --- a/intc-modules/intc-health/src/main/resources/mapper/health/HealthActivityMapper.xml +++ b/intc-modules/intc-health/src/main/resources/mapper/health/HealthActivityMapper.xml @@ -24,10 +24,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + - select a.id, a.name, a.type, a.place, a.activity_volume, a.exercise_time, a.start_time, a.end_time, a.harvest, a.foods, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.remark, a.total_cost, a.partner, a.cost_detail from health_activity a + select a.id, a.name, a.type, a.place, a.activity_volume, a.exercise_time, a.start_time, a.end_time, a.harvest, a.foods, a.create_by, a.create_time, a.update_by, a.update_time, a.del_flag, a.remark, a.total_cost, a.partner, a.cost_detail, a.attachment from health_activity a