zhangback
20 小时以前 ba87fd72f14c5ed0caf14e9d8ff116d254a8c113
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.ruoyi.tms.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class TmsDispatchOrderImport {
 
    @Excel(name = "项目名称(必填)")
    private String projectName;
 
    @Excel(name = "运输线路(必填)")
    private String transportLine;
 
    @Excel(name = "下单车型(必填)",dictType="vehicle_type")
    private String requiredVehicleTypes;
 
    /** 订单类型,关联字典 */
    @Excel(name = "订单类型(必填)",dictType="order_type")
    private String orderType;
    @Excel(name = "委托报关(必填)",dictType="sys_number_is")
    private String isCustoms;
 
    @Excel(name = "委托装卸(必填)",dictType="sys_number_is")
    private String isLoad;
    @Excel(name = "是否紧急(必填)",dictType="sys_number_is")
    private String isUrgent;
 
    @Excel(name = "下单时间(必填)",dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date orderTime;
 
 
    @Excel(name = "要求最晚出发时间(必填)",dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date latestDeparture;
    @Excel(name = "要求最晚到达时间(必填)",dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date latestArrival;
    @Excel(name = "是否是自营车队(必填)",dictType="sys_number_is")
    private String operationMode;
 
    @Excel(name = "提成模式(自营车队必填)",dictType="commission_model")
    private String commissionModel;
 
    @Excel(name = "车辆服务商名称(非自营车队必填)")
    private String vehicleProviderName;
    @Excel(name = "主驾驶员(必填)")
    private String mainDriverName;
 
 
    @Excel(name = "车牌号(必填)")
    private String licensePlate;
 
    @Excel(name = "装货点编码(必填)")
    private String shipperRegionLabel;
 
    @Excel(name = "卸货地编码(必填)")
    private String receiverRegionLabel;
    @Excel(name = "副驾驶员")
    private String assistantDriverName;
 
    @Excel(name = "关联集装箱号")
    private String containerNo;
 
    @Excel(name = "托板号")
    private String shelfCode;
}