Commit fc8d190f authored by yajun.zhang's avatar yajun.zhang

添加userid

parent 1c1dd02a
...@@ -28,36 +28,36 @@ public class ThirdWorkOrderExportVo implements Serializable { ...@@ -28,36 +28,36 @@ public class ThirdWorkOrderExportVo implements Serializable {
private String processInstanceId; private String processInstanceId;
//反馈渠道 //反馈渠道
@ExcelProperty(value = "反馈渠道", index = 3) @ExcelProperty(value = "反馈渠道", index = 4)
private String feedbackChannel; private String feedbackChannel;
//问题细分二级 //问题细分二级
@ExcelProperty(value = "问题细分", index = 4) @ExcelProperty(value = "问题细分", index = 5)
private String questionLevel; private String questionLevel;
//订单id //订单id
@ExcelProperty(value = "订单id", index = 6) @ExcelProperty(value = "订单id", index = 7)
private String orderNo; private String orderNo;
//问题描述 //问题描述
@ExcelProperty(value = "问题描述", index = 13) @ExcelProperty(value = "问题描述", index = 14)
private String problemDesc; private String problemDesc;
//工单创建人 //工单创建人
@ExcelProperty(value = "一级客服", index = 14) @ExcelProperty(value = "一级客服", index = 15)
private String createUser; private String createUser;
//工单受理人 //工单受理人
@ExcelProperty(value = "二级客服", index = 15) @ExcelProperty(value = "二级客服", index = 16)
private String acceptUser; private String acceptUser;
//工单状态 //工单状态
@ExcelProperty(value = "工单状态", index = 16) @ExcelProperty(value = "工单状态", index = 17)
private String status; private String status;
//关单时间 //关单时间
@ExcelProperty(value = "关闭工单时间", index = 18) @ExcelProperty(value = "关闭工单时间", index = 19)
private String closeTime; private String closeTime;
...@@ -69,45 +69,47 @@ public class ThirdWorkOrderExportVo implements Serializable { ...@@ -69,45 +69,47 @@ public class ThirdWorkOrderExportVo implements Serializable {
* 订单no * 订单no
*/ */
// private String orderNo; // private String orderNo;
@ExcelProperty(value = "用户id", index = 3)
private Long userId;
/** /**
* sku分类名称 * sku分类名称
*/ */
@ExcelProperty(value = "商品分类", index = 5) @ExcelProperty(value = "商品分类", index = 6)
private String categroyName; private String categroyName;
/** /**
* 下单时间 * 下单时间
*/ */
@ExcelProperty(value = "下单时间", index = 7) @ExcelProperty(value = "下单时间", index = 8)
private String orderTime; private String orderTime;
/** /**
* 发货时间 * 发货时间
*/ */
@ExcelProperty(value = "发货时间", index = 8) @ExcelProperty(value = "发货时间", index = 9)
private String deliveryAt; private String deliveryAt;
/** /**
* 供应商名称 * 供应商名称
*/ */
@ExcelProperty(value = "供应商名称", index = 9) @ExcelProperty(value = "供应商名称", index = 10)
private String supplierName; private String supplierName;
/** /**
* 商品名称 * 商品名称
*/ */
@ExcelProperty(value = "商品名称", index = 10) @ExcelProperty(value = "商品名称", index = 11)
private String skuName; private String skuName;
/** /**
* 支付金额 * 支付金额
*/ */
@ExcelProperty(value = "支付金额", index = 11) @ExcelProperty(value = "支付金额", index = 12)
private BigDecimal payAmount; private BigDecimal payAmount;
/** /**
* 订单状态 * 订单状态
*/ */
@ExcelProperty(value = "订单状态", index = 12) @ExcelProperty(value = "订单状态", index = 13)
private String orderStatusText; private String orderStatusText;
/** /**
...@@ -120,7 +122,7 @@ public class ThirdWorkOrderExportVo implements Serializable { ...@@ -120,7 +122,7 @@ public class ThirdWorkOrderExportVo implements Serializable {
/** /**
* 物流单号 * 物流单号
*/ */
@ExcelProperty(value = "物流单号", index = 17) @ExcelProperty(value = "物流单号", index = 18)
private String deliveryNo; private String deliveryNo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment