|
|
@@ -3,8 +3,6 @@ package org.dromara.business.domain.vo;
|
|
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import cn.idev.excel.annotation.ExcelProperty;
|
|
|
import org.dromara.business.domain.PayOrder;
|
|
|
-import org.dromara.common.excel.annotation.ExcelDictFormat;
|
|
|
-import org.dromara.common.excel.convert.ExcelDictConvert;
|
|
|
import io.github.linpeilie.annotations.AutoMapper;
|
|
|
import lombok.Data;
|
|
|
import java.io.Serial;
|
|
|
@@ -28,132 +26,151 @@ public class PayOrderVo implements Serializable {
|
|
|
/**
|
|
|
* 主键
|
|
|
*/
|
|
|
- @ExcelProperty(value = "主键")
|
|
|
+ @ExcelProperty(value = "序号ID")
|
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
|
* 商户订单号
|
|
|
*/
|
|
|
- @ExcelProperty(value = "商户订单号")
|
|
|
+ @ExcelProperty(value = "订单号")
|
|
|
private String outTradeNo;
|
|
|
|
|
|
/**
|
|
|
* 商品标题
|
|
|
*/
|
|
|
- @ExcelProperty(value = "商品标题")
|
|
|
+ @ExcelProperty(value = "商品")
|
|
|
private String subject;
|
|
|
|
|
|
/**
|
|
|
* 商品描述
|
|
|
*/
|
|
|
- @ExcelProperty(value = "商品描述")
|
|
|
+ @ExcelProperty(value = "描述")
|
|
|
private String body;
|
|
|
|
|
|
/**
|
|
|
* 订单金额(元)
|
|
|
*/
|
|
|
- @ExcelProperty(value = "订单金额", converter = ExcelDictConvert.class)
|
|
|
- @ExcelDictFormat(readConverterExp = "元=")
|
|
|
+ @ExcelProperty(value = "订单金额")
|
|
|
+ private String totalAmountText;
|
|
|
+
|
|
|
+
|
|
|
private BigDecimal totalAmount;
|
|
|
|
|
|
+ @ExcelProperty(value = "用户名")
|
|
|
+ private String userName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "手机号")
|
|
|
+ private String phone;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单状态 success close
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "订单状态")
|
|
|
+ private String statusText;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 支付成功时间
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "支付时间")
|
|
|
+ private String payTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "创建时间")
|
|
|
+ private String createTime;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 币种
|
|
|
*/
|
|
|
- @ExcelProperty(value = "币种")
|
|
|
+ //@ExcelProperty(value = "币种")
|
|
|
private String currency;
|
|
|
|
|
|
/**
|
|
|
* 用户ID
|
|
|
*/
|
|
|
- @ExcelProperty(value = "用户ID")
|
|
|
+ //@ExcelProperty(value = "用户ID")
|
|
|
private Long userId;
|
|
|
|
|
|
/**
|
|
|
* 业务类型(如 recharge, purchase)
|
|
|
*/
|
|
|
- @ExcelProperty(value = "业务类型", converter = ExcelDictConvert.class)
|
|
|
- @ExcelDictFormat(readConverterExp = "如=,r=echarge,,p=urchase")
|
|
|
+ //@ExcelProperty(value = "业务类型", converter = ExcelDictConvert.class)
|
|
|
+ //@ExcelDictFormat(readConverterExp = "如=,r=echarge,,p=urchase")
|
|
|
private String bizType;
|
|
|
|
|
|
/**
|
|
|
* 业务ID(如订单ID)
|
|
|
*/
|
|
|
- @ExcelProperty(value = "业务ID", converter = ExcelDictConvert.class)
|
|
|
- @ExcelDictFormat(readConverterExp = "如=订单ID")
|
|
|
+ //@ExcelProperty(value = "业务ID", converter = ExcelDictConvert.class)
|
|
|
+ //@ExcelDictFormat(readConverterExp = "如=订单ID")
|
|
|
private String bizId;
|
|
|
|
|
|
/**
|
|
|
* 支付宝交易号
|
|
|
*/
|
|
|
- @ExcelProperty(value = "支付宝交易号")
|
|
|
+ //@ExcelProperty(value = "支付宝交易号")
|
|
|
private String tradeNo;
|
|
|
|
|
|
/**
|
|
|
* 支付宝APPID
|
|
|
*/
|
|
|
- @ExcelProperty(value = "支付宝APPID")
|
|
|
+ //@ExcelProperty(value = "支付宝APPID")
|
|
|
private String appId;
|
|
|
|
|
|
/**
|
|
|
* 卖家支付宝用户ID
|
|
|
*/
|
|
|
- @ExcelProperty(value = "卖家支付宝用户ID")
|
|
|
+ //@ExcelProperty(value = "卖家支付宝用户ID")
|
|
|
private String sellerId;
|
|
|
|
|
|
- /**
|
|
|
- * 订单状态 success close
|
|
|
- */
|
|
|
- @ExcelProperty(value = "订单状态 success close")
|
|
|
+
|
|
|
private String status;
|
|
|
|
|
|
- /**
|
|
|
- * 支付成功时间
|
|
|
- */
|
|
|
- @ExcelProperty(value = "支付成功时间")
|
|
|
- private String payTime;
|
|
|
|
|
|
/**
|
|
|
* 支付宝通知时间
|
|
|
*/
|
|
|
- @ExcelProperty(value = "支付宝通知时间")
|
|
|
+ //@ExcelProperty(value = "支付宝通知时间")
|
|
|
private String notifyTime;
|
|
|
|
|
|
/**
|
|
|
* 通知类型
|
|
|
*/
|
|
|
- @ExcelProperty(value = "通知类型")
|
|
|
+ //@ExcelProperty(value = "通知类型")
|
|
|
private String notifyType;
|
|
|
|
|
|
/**
|
|
|
* 支付宝交易状态
|
|
|
*/
|
|
|
- @ExcelProperty(value = "支付宝交易状态")
|
|
|
+ //@ExcelProperty(value = "支付宝交易状态")
|
|
|
private String tradeStatus;
|
|
|
|
|
|
/**
|
|
|
* 商品ID
|
|
|
*/
|
|
|
- @ExcelProperty(value = "商品ID")
|
|
|
+ //@ExcelProperty(value = "商品ID")
|
|
|
private Long productId;
|
|
|
|
|
|
/**
|
|
|
* 道具ID
|
|
|
*/
|
|
|
- @ExcelProperty(value = "道具ID")
|
|
|
+ //@ExcelProperty(value = "道具ID")
|
|
|
private Long relatedItemId;
|
|
|
|
|
|
|
|
|
private String payUrl;
|
|
|
|
|
|
- private String userName;
|
|
|
-
|
|
|
- private String phone;
|
|
|
|
|
|
private String nickName;
|
|
|
|
|
|
- /**
|
|
|
- * 创建时间
|
|
|
- */
|
|
|
- private String createTime;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
}
|