fix: 功能优化。

This commit is contained in:
tianyongbao
2024-10-12 10:44:27 +08:00
parent 7b6c701a7a
commit 0504ff0121
4 changed files with 49 additions and 0 deletions

View File

@@ -68,6 +68,19 @@ public class HealthDoctorRecord extends BaseEntity
@Excel(name = "人员id")
private Long personId;
/** 总费用 */
@ApiModelProperty(value="总费用")
@Excel(name = "总费用")
private Double totalCost;
/** 成员 */
@ApiModelProperty(value="成员")
@Excel(name = "成员")
private String partner;
/** 费用明细 */
private String costDetail;
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -85,6 +98,9 @@ public class HealthDoctorRecord extends BaseEntity
.append("visitingTime", getVisitingTime())
.append("prescribe", getPrescribe())
.append("personId", getPersonId())
.append("totalCost", getTotalCost())
.append("partner", getPartner())
.append("costDetail", getCostDetail())
.toString();
}
}

View File

@@ -99,6 +99,12 @@ public class HealthMedicineStockIn extends BaseEntity
@Excel(name = "总价")
private Double totalPrice;
/** 医嘱 */
private String usage;
/** 年龄体重 */
private String ageWeight;
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -121,6 +127,8 @@ public class HealthMedicineStockIn extends BaseEntity
.append("usedCount", getUsedCount())
.append("purchaseAddress", getPurchaseAddress())
.append("totalPrice", getTotalPrice())
.append("usage", getUsage())
.append("ageWeight", getAgeWeight())
.toString();
}
}