| 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; | 
|   | 
| } |