zhangback
2025-12-03 d7e7e80121be970b323288a3f52a9cc51d51ab54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.ruoyi.tms.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("transport_route_vi")
public class TransportRouteVi {
 
    /**
     * 报价明细ID
     */
    @TableId
    private Integer quoteDetailId;
 
    private Integer quotePlanId;
 
    /**
     * 路线
     */
    private String transportRoute;
 
 
 
    private String startRegionCode;
    private String endRegionCode;
 
    /**
     * 客户ID
     */
    private Integer customerId;
 
    private String customerCode;
 
    /**
     * 客户全称呼
     */
    private String customerFullName;
 
    private Integer projectId;
 
    private String projectName;
 
 
    private Integer contractId;
 
    private String contractName;
 
    private Integer vehicleType;
 
 
 
}