|
@@ -24,6 +24,12 @@ public class DownOrderVo {
|
|
|
@ExcelProperty("用户账号")
|
|
|
private String userName; //用户账号
|
|
|
|
|
|
+ @ExcelProperty("相机sn码")
|
|
|
+ private String snCode; //相机sn码
|
|
|
+
|
|
|
+ @ExcelProperty("场景码")
|
|
|
+ private String sceneNum; //场景码
|
|
|
+
|
|
|
@ExcelProperty("客户名称")
|
|
|
private String customerName;
|
|
|
|
|
@@ -56,23 +62,18 @@ public class DownOrderVo {
|
|
|
private String downTypeStr;
|
|
|
|
|
|
|
|
|
- @ExcelProperty("相机sn码")
|
|
|
- private String snCode; //相机sn码
|
|
|
-
|
|
|
- @ExcelProperty("场景码")
|
|
|
- private String sceneNum; //场景码
|
|
|
-
|
|
|
@ExcelProperty("订单金额")
|
|
|
private BigDecimal amount; //订单金额
|
|
|
|
|
|
+ @ExcelProperty("数量")
|
|
|
+ private BigDecimal count; //数量
|
|
|
+
|
|
|
@ExcelProperty("支付方式")
|
|
|
private String payType; //支付方式 付款方式,0表示微信,1表示支付宝,2表示paypal,3表示其他,4表示货到付款
|
|
|
|
|
|
@ExcelProperty("交易号")
|
|
|
private String number; //交易号
|
|
|
|
|
|
- @ExcelProperty("数量")
|
|
|
- private BigDecimal count; //数量
|
|
|
|
|
|
@ExcelProperty("付款状态")
|
|
|
private String payStatus; //付款状态(状态,0或-1表示未付款,-2表示已退款,1表示已付款
|