Helius
2020-05-27 2dd3a086f2edeb9f364935c3fb98f18c2eea2fa8
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
package com.xcong.excoin.modules.platform.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
@Data
@TableName("platform_payment_method")
public class PlatformPaymentMethodEntity{
 
    
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
    /**
     * 姓名
     */
    private String name;
    /**
     * 账号
     */
    private String account;
    /**
     * 收款二维码
     */
    private String paymentQrcode;
    /**
     * 类型【1、支付宝2、微信3、银行卡】
     */
    private int type;
    /**
     * 银行名
     */
    private String bank;
    /**
     * 状态
     */
    private int status;
    /**
     * 联系方式
     */
    private String phone;
}