更新费率模型插入更新人员

This commit is contained in:
panshuling321 2022-02-22 10:43:48 +08:00
parent c1e0792499
commit 93afe83d55

View File

@ -41,6 +41,33 @@ public class XhpcRate extends BaseEntity {
/** 费率类型 00: 尖费率 01: 峰费率 02: 平费率 03: 谷费率 */ /** 费率类型 00: 尖费率 01: 峰费率 02: 平费率 03: 谷费率 */
private String rateValue; 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() { public Long getRateId() {
return rateId; return rateId;