From 93afe83d559f547d3f384c2f08301a1518b8e95d Mon Sep 17 00:00:00 2001 From: panshuling321 Date: Tue, 22 Feb 2022 10:43:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=B4=B9=E7=8E=87=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E6=8F=92=E5=85=A5=E6=9B=B4=E6=96=B0=E4=BA=BA=E5=91=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/xhpc/common/domain/XhpcRate.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcRate.java b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcRate.java index 8c9e0378..606cbb62 100644 --- a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcRate.java +++ b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcRate.java @@ -41,6 +41,33 @@ public class XhpcRate extends BaseEntity { /** 费率类型 00: 尖费率 01: 峰费率 02: 平费率 03: 谷费率 */ private String rateValue; + private String createBy; + private String updateBy; + + @Override + public String getCreateBy() { + + return createBy; + } + + @Override + public void setCreateBy(String createBy) { + + this.createBy = createBy; + } + + @Override + public String getUpdateBy() { + + return updateBy; + } + + @Override + public void setUpdateBy(String updateBy) { + + this.updateBy = updateBy; + } + public Long getRateId() { return rateId;