export default interface IGood { /** 数据索引 */ $index: string; /** 序号 */ sortNumber?: number; /** 运输工具种类列表 */ vehicleList?: any[] | null; /** 运输工具种类 */ vehicle?: string; type: string; licensePlate: string; itemName: string; /** 运输工具牌号 */ vehicleNo?: string; /** 起运地 */ origin?: string[]; /** 到达地 */ destination?: string[]; /** 运输货物名称 */ goodName?: string; /** 地区 */ area?: string[]; }