From 8de5ae3a4f12a71e4fa9dcab36a39d10fab97575 Mon Sep 17 00:00:00 2001 From: chenqi Date: Wed, 11 Mar 2026 12:09:34 +0800 Subject: [PATCH] =?UTF-8?q?feat(domain):=20=E6=B7=BB=E5=8A=A0=E5=91=98?= =?UTF-8?q?=E5=B7=A5=E8=B4=A6=E5=8F=B7=E5=AD=97=E6=AE=B5=E5=88=B0=E5=8F=91?= =?UTF-8?q?=E7=A5=A8=E6=AE=B5=E5=AE=9E=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 InvoiceSegment 实体中新增 employeeAccount 字段 - 添加 employeeAccount 字段的 getter 和 setter 方法 - 更新 toString 方法包含 employeeAccount 信息 --- .../administration/domain/InvoiceSegment.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/openhis-server-new/openhis-domain/src/main/java/com/openhis/administration/domain/InvoiceSegment.java b/openhis-server-new/openhis-domain/src/main/java/com/openhis/administration/domain/InvoiceSegment.java index 1ee1ecb6..956b8e11 100644 --- a/openhis-server-new/openhis-domain/src/main/java/com/openhis/administration/domain/InvoiceSegment.java +++ b/openhis-server-new/openhis-domain/src/main/java/com/openhis/administration/domain/InvoiceSegment.java @@ -47,6 +47,11 @@ public class InvoiceSegment extends HisBaseEntity { */ private String employeeName; + /** + * 员工账号 + */ + private String employeeAccount; + /** * 开票员ID */ @@ -121,6 +126,14 @@ public class InvoiceSegment extends HisBaseEntity { this.employeeName = employeeName; } + public String getEmployeeAccount() { + return employeeAccount; + } + + public void setEmployeeAccount(String employeeAccount) { + this.employeeAccount = employeeAccount; + } + public Long getInvoicingStaffId() { return invoicingStaffId; } @@ -222,7 +235,9 @@ public class InvoiceSegment extends HisBaseEntity { + ", segmentId=" + segmentId + ", beginNumber='" + beginNumber + '\'' + ", endNumber='" + endNumber + '\'' + + ", employeeId=" + employeeId + ", employeeName='" + employeeName + '\'' + + ", employeeAccount='" + employeeAccount + '\'' + ", status='" + status + '\'' + '}'; }