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;
|
}
|