rentaiming
2024-06-11 2f2eb2bb2c6a5a16b7081dbbe3b683acf18d04bc
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;
}