shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
package com.ishop.model.wechat;
 
/**
 * 支付附加对象
 * @date 2023-07-25
 */
public class AttachVo {
 
    public AttachVo() {}
 
    public AttachVo(String type, Long userId) {
        this.type = type;
        this.userId = userId;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    //    @ApiModelProperty(value = "业务类型,订单 = order,充值 = recharge", required = true)
    private String type = "order";
 
//    @ApiModelProperty(value = "用户id", required = true)
    private Long userId;
}