1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.tms.domain.vo;
|
| import lombok.Data;
|
| /**
| * 路线验证VO
| */
| @Data
| public class RouteValidationVO {
| // 客户名称
| private String customerName;
|
| // 起始城市
| private String originCity;
| // 目的地
| private String destCity;
| // 车型
| private String vehicleType;
| }
|
|