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;