rentaiming
2024-05-29 7998c03ea0b22ca4f7fc50d77d99df6501fb7fd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.system.api.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class PayInfoVO {
 
    @ApiModelProperty(value = "会员id")
    private Long memberId;
 
    @ApiModelProperty(value = "1 支付宝支付,2 微信支付")
    private Integer type;
 
    @ApiModelProperty(value = "订单编号")
    private String orderNO;
 
    @ApiModelProperty(value = "题目")
    private String subject;
 
    @ApiModelProperty(value = "内容")
    private String body;
}