gao
2020-05-25 73699775f5546177ce71e3bae33d83a8aa346793
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.home.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "确认快捷买入接收参数", description = "确认快捷买入接收参数")
public class MemberQuickBuySaleCommitDto {
 
    @ApiModelProperty(value = "主键",example = "1")
    private Long id;
    
    @ApiModelProperty(value = "付款方式 1-支付宝2-微信3-银行卡",example = "1")
    private int paymentType;
    
    @ApiModelProperty(value = "收款账号",example = "13000000000")
    private String paymentAccount;
    
    @ApiModelProperty(value = "收款人姓名",example = "张三")
    private String paymentName;
}