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 customerFullName;
|
|
private Integer projectId;
|
|
private String projectName;
|
|
|
private Integer contractId;
|
|
private String contractName;
|
|
private Integer vehicleType;
|
|
|
|
}
|