package com.sinata.ministryoftransport.model;
|
|
import java.util.Date;
|
|
/**
|
* 网约车平台公司运价信息
|
*/
|
public class BaseInfoCompanyFare {
|
/**
|
* 运价适用地行政区划代码
|
*/
|
private Integer Address;
|
/**
|
* 运价类型编码(由网约车平台公司统一编码,应确保唯一性)
|
*/
|
private String FareType;
|
/**
|
* 运价类型说明
|
*/
|
private String FareTypeNote;
|
/**
|
* 运价有效期起
|
*/
|
private Date FareValidOn;
|
/**
|
* 运价有效止
|
*/
|
private Date FareValidOff;
|
/**
|
* 起步价(元)
|
*/
|
private Double StartFare;
|
/**
|
* 起步里程(km)
|
*/
|
private Integer StartMile;
|
/**
|
* 计程单价(按公里/元)
|
*/
|
private Double UnitPricePerMile;
|
/**
|
* 计时单价(按分钟/元)
|
*/
|
private Double UnitPricePerMinute;
|
/**
|
* 单程加价单价(元)
|
*/
|
private Double UpPrice;
|
/**
|
* 单程加价公里(km)
|
*/
|
private Integer UpPriceStartMile;
|
/**
|
* 营运早高峰时间起(HHmm 24小时)
|
*/
|
private String MorningPeakTimeOn;
|
/**
|
* 营运早高峰时间止(HHmm 24小时)
|
*/
|
private String MorningPeakTimeOff;
|
/**
|
* 营运晚高峰时间起(HHmm 24小时)
|
*/
|
private String EveningPeakTimeOn;
|
/**
|
* 营运晚高峰时间止(HHmm 24小时)
|
*/
|
private String EveningPeakTimeOff;
|
/**
|
* 其他营运高等时间起(HHmm 24小时)
|
*/
|
private String OtherPeakTimeOn;
|
/**
|
* 其他营运高等时间止(HHmm 24小时)
|
*/
|
private String OtherPeakTineOff;
|
/**
|
* 高峰时间单程加价单价(元)
|
*/
|
private Double PeakUnitPrice;
|
/**
|
* 高峰时间单程加价公里(km)
|
*/
|
private Integer PeakPriceStartMile;
|
/**
|
* 低速计时加价(按分钟 元)
|
*/
|
private Double LowSpeedPriceMinute;
|
/**
|
* 夜间费(按公里 元)
|
*/
|
private Double NightPricePerMile;
|
/**
|
* 夜间费(按分钟 元)
|
*/
|
private Double NightPricePerMinute;
|
/**
|
* 其它加价金额(元)
|
*/
|
private Double OtherPrice;
|
/**
|
* 状态(0:有效,1:无效)
|
*/
|
private Integer State;
|
/**
|
* 操作标识(1:新增,2:更新,3:删除)
|
*/
|
private Integer Flag;
|
/**
|
* 更新时间
|
*/
|
private Date UpdateTime;
|
|
public Integer getAddress() {
|
return Address;
|
}
|
|
public void setAddress(Integer address) {
|
Address = address;
|
}
|
|
public String getFareType() {
|
return FareType;
|
}
|
|
public void setFareType(String fareType) {
|
FareType = fareType;
|
}
|
|
public String getFareTypeNote() {
|
return FareTypeNote;
|
}
|
|
public void setFareTypeNote(String fareTypeNote) {
|
FareTypeNote = fareTypeNote;
|
}
|
|
public Date getFareValidOn() {
|
return FareValidOn;
|
}
|
|
public void setFareValidOn(Date fareValidOn) {
|
FareValidOn = fareValidOn;
|
}
|
|
public Date getFareValidOff() {
|
return FareValidOff;
|
}
|
|
public void setFareValidOff(Date fareValidOff) {
|
FareValidOff = fareValidOff;
|
}
|
|
public Double getStartFare() {
|
return StartFare;
|
}
|
|
public void setStartFare(Double startFare) {
|
StartFare = startFare;
|
}
|
|
public Integer getStartMile() {
|
return StartMile;
|
}
|
|
public void setStartMile(Integer startMile) {
|
StartMile = startMile;
|
}
|
|
public Double getUnitPricePerMile() {
|
return UnitPricePerMile;
|
}
|
|
public void setUnitPricePerMile(Double unitPricePerMile) {
|
UnitPricePerMile = unitPricePerMile;
|
}
|
|
public Double getUnitPricePerMinute() {
|
return UnitPricePerMinute;
|
}
|
|
public void setUnitPricePerMinute(Double unitPricePerMinute) {
|
UnitPricePerMinute = unitPricePerMinute;
|
}
|
|
public Double getUpPrice() {
|
return UpPrice;
|
}
|
|
public void setUpPrice(Double upPrice) {
|
UpPrice = upPrice;
|
}
|
|
public Integer getUpPriceStartMile() {
|
return UpPriceStartMile;
|
}
|
|
public void setUpPriceStartMile(Integer upPriceStartMile) {
|
UpPriceStartMile = upPriceStartMile;
|
}
|
|
public String getMorningPeakTimeOn() {
|
return MorningPeakTimeOn;
|
}
|
|
public void setMorningPeakTimeOn(String morningPeakTimeOn) {
|
MorningPeakTimeOn = morningPeakTimeOn;
|
}
|
|
public String getMorningPeakTimeOff() {
|
return MorningPeakTimeOff;
|
}
|
|
public void setMorningPeakTimeOff(String morningPeakTimeOff) {
|
MorningPeakTimeOff = morningPeakTimeOff;
|
}
|
|
public String getEveningPeakTimeOn() {
|
return EveningPeakTimeOn;
|
}
|
|
public void setEveningPeakTimeOn(String eveningPeakTimeOn) {
|
EveningPeakTimeOn = eveningPeakTimeOn;
|
}
|
|
public String getEveningPeakTimeOff() {
|
return EveningPeakTimeOff;
|
}
|
|
public void setEveningPeakTimeOff(String eveningPeakTimeOff) {
|
EveningPeakTimeOff = eveningPeakTimeOff;
|
}
|
|
public String getOtherPeakTimeOn() {
|
return OtherPeakTimeOn;
|
}
|
|
public void setOtherPeakTimeOn(String otherPeakTimeOn) {
|
OtherPeakTimeOn = otherPeakTimeOn;
|
}
|
|
public String getOtherPeakTineOff() {
|
return OtherPeakTineOff;
|
}
|
|
public void setOtherPeakTineOff(String otherPeakTineOff) {
|
OtherPeakTineOff = otherPeakTineOff;
|
}
|
|
public Double getPeakUnitPrice() {
|
return PeakUnitPrice;
|
}
|
|
public void setPeakUnitPrice(Double peakUnitPrice) {
|
PeakUnitPrice = peakUnitPrice;
|
}
|
|
public Integer getPeakPriceStartMile() {
|
return PeakPriceStartMile;
|
}
|
|
public void setPeakPriceStartMile(Integer peakPriceStartMile) {
|
PeakPriceStartMile = peakPriceStartMile;
|
}
|
|
public Double getLowSpeedPriceMinute() {
|
return LowSpeedPriceMinute;
|
}
|
|
public void setLowSpeedPriceMinute(Double lowSpeedPriceMinute) {
|
LowSpeedPriceMinute = lowSpeedPriceMinute;
|
}
|
|
public Double getNightPricePerMile() {
|
return NightPricePerMile;
|
}
|
|
public void setNightPricePerMile(Double nightPricePerMile) {
|
NightPricePerMile = nightPricePerMile;
|
}
|
|
public Double getNightPricePerMinute() {
|
return NightPricePerMinute;
|
}
|
|
public void setNightPricePerMinute(Double nightPricePerMinute) {
|
NightPricePerMinute = nightPricePerMinute;
|
}
|
|
public Double getOtherPrice() {
|
return OtherPrice;
|
}
|
|
public void setOtherPrice(Double otherPrice) {
|
OtherPrice = otherPrice;
|
}
|
|
public Integer getState() {
|
return State;
|
}
|
|
public void setState(Integer state) {
|
State = state;
|
}
|
|
public Integer getFlag() {
|
return Flag;
|
}
|
|
public void setFlag(Integer flag) {
|
Flag = flag;
|
}
|
|
public Date getUpdateTime() {
|
return UpdateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
UpdateTime = updateTime;
|
}
|
|
@Override
|
public String toString() {
|
return "BaseInfoCompanyFare{" +
|
"Address=" + Address +
|
", FareType='" + FareType + '\'' +
|
", FareTypeNote='" + FareTypeNote + '\'' +
|
", FareValidOn=" + FareValidOn +
|
", FareValidOff=" + FareValidOff +
|
", StartFare=" + StartFare +
|
", StartMile=" + StartMile +
|
", UnitPricePerMile=" + UnitPricePerMile +
|
", UnitPricePerMinute=" + UnitPricePerMinute +
|
", UpPrice=" + UpPrice +
|
", UpPriceStartMile=" + UpPriceStartMile +
|
", MorningPeakTimeOn='" + MorningPeakTimeOn + '\'' +
|
", MorningPeakTimeOff='" + MorningPeakTimeOff + '\'' +
|
", EveningPeakTimeOn='" + EveningPeakTimeOn + '\'' +
|
", EveningPeakTimeOff='" + EveningPeakTimeOff + '\'' +
|
", OtherPeakTimeOn='" + OtherPeakTimeOn + '\'' +
|
", OtherPeakTineOff='" + OtherPeakTineOff + '\'' +
|
", PeakUnitPrice=" + PeakUnitPrice +
|
", PeakPriceStartMile=" + PeakPriceStartMile +
|
", LowSpeedPriceMinute=" + LowSpeedPriceMinute +
|
", NightPricePerMile=" + NightPricePerMile +
|
", NightPricePerMinute=" + NightPricePerMinute +
|
", OtherPrice=" + OtherPrice +
|
", State=" + State +
|
", Flag=" + Flag +
|
", UpdateTime=" + UpdateTime +
|
'}';
|
}
|
}
|