路线换乘方案里的交通工具信息

交通工具包括: 公交,地铁

interface VehicleInfo {
    uid: string;
    passStationNum: number;
    title: string;
    zonePrice: number;
    totalPrice: number;
}

Properties

uid: string

交通路线的标识

passStationNum: number

交通路线的所乘站数

title: string

该交通路线的名称

zonePrice: number

该交通路线的所乘区间的区间价格

totalPrice: number

该交通路线的全程价格