rk
3 天以前 8d2f5011aee911f31cba0e65a37dd700d6d39e0d
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
package com.doumee.dao.admin.request;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 线路信息导入
 * @author 江蹄蹄
 * @date 2024/01/16 10:03
 */
@Data
@ApiModel("线路信息导入")
public class JkLineImport {
 
 
    @ExcelColumn(name="线路名称",value = "name",index = 0)
    private String name;
    @ExcelColumn(name="所属主线路",value = "categoryName",index = 1)
    private String categoryName;
    @ExcelColumn(name="序号",value = "code",index = 2)
    private String code;
    @ExcelColumn(name="送货车辆",value = "carCode",index = 3)
    private String carCode;
 
    @ExcelColumn(name="客户量" , value = "maxCustomer" ,index = 4)
    private String maxCustomer;
 
    @ExcelColumn(name="订单量" , value = "maxOrder",index = 5)
    private String maxOrder;
    @ExcelColumn(name="周期" , value = "weeks",index = 6)
    private String weeks;
 
}