|
|
@@ -0,0 +1,36 @@
|
|
|
+package com.ydtech.modules.admin.model.dto;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class OrdersDetailsExcel {
|
|
|
+ @ExcelProperty(value = "业务员编号",index = 0)
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "业务员名称",index = 1)
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "管理人",index = 2)
|
|
|
+ private String leaderName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "车牌号",index = 3)
|
|
|
+ private String licenseno;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "机构来源",index = 4)
|
|
|
+ private String managementSource;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "订单号",index = 5)
|
|
|
+ private String orderno;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "订单状态",index = 6)
|
|
|
+ private String orderstatus;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "是否app报价",index = 7)
|
|
|
+ private String orderSource;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "是否代课录单",index = 8)
|
|
|
+ private String entryStatus;
|
|
|
+
|
|
|
+}
|