wujianwei
2026-04-01 8f30b77a480f8921bffe2bf176bf3479f5bcbedc
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;
}