Просмотр исходного кода

1.控制台任务统计导出文件

wuhp 1 год назад
Родитель
Сommit
feeefc76f4

+ 36 - 0
src/main/java/com/ydtech/modules/admin/model/dto/OrdersDetailsExcel.java

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