package com.xcong.excoin.modules.member.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.system.base.BaseEntity;
|
|
import lombok.Data;
|
|
/**
|
* 会员收款方式
|
*/
|
@Data
|
@TableName("member_payment_method")
|
public class MemberPaymentMethodEntity extends BaseEntity{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 用户Id
|
*/
|
private Long memberId;
|
/**
|
* 姓名
|
*/
|
private String name;
|
/**
|
* 账号
|
*/
|
private String account;
|
/**
|
* 收款二维码
|
*/
|
private String paymentQrcode;
|
/**
|
* 银行
|
*/
|
private String bank;
|
/**
|
* 支行
|
*/
|
private String subBank;
|
/**
|
* 类型 1-支付宝2-微信3-银行卡
|
*/
|
private String paymentType;
|
public static final Integer PAYMENTTYPE_ALIPAY = 1;
|
public static final Integer PAYMENTTYPE_WECHAT = 2;
|
public static final Integer PAYMENTTYPE_CARD = 3;
|
|
/**
|
* 默认收款方式
|
*/
|
private String isDefualt;
|
|
}
|