办学质量监测教学评价系统
ageer
2024-01-16 1f7f97e86a79ee4f1515d753e84a1e20a3ec41fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.xmzs.system.domain.vo;
 
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.xmzs.system.domain.PaymentOrders;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
 
/**
 * 支付订单视图对象 payment_orders
 *
 * @author Lion Li
 * @date 2023-12-29
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = PaymentOrders.class)
public class PaymentOrdersVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @ExcelProperty(value = "主键")
    private Long id;
 
    /**
     * 订单编号
     */
    @ExcelProperty(value = "订单编号")
    private String orderNo;
 
    /**
     * 订单名称
     */
    @ExcelProperty(value = "订单名称")
    private String orderName;
 
    /**
     * 金额
     */
    @ExcelProperty(value = "金额")
    private BigDecimal amount;
 
    /**
     * 支付状态
     */
    @ExcelProperty(value = "支付状态")
    private String paymentStatus;
 
    /**
     * 支付方式
     */
    @ExcelProperty(value = "支付方式")
    private String paymentMethod;
 
    /**
     * 用户ID
     */
    @ExcelProperty(value = "用户ID")
    private Long userId;
 
    /**
     * 二维码地址
     */
    private String url;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}