|  |  |  | 
|---|
|  |  |  | package com.xcong.excoin.modules.platform.entity; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.math.BigDecimal; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableId; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableName; | 
|---|
|  |  |  | import com.xcong.excoin.common.system.base.BaseEntity; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @TableName("platform_cny_usdt_exchange") | 
|---|
|  |  |  | public class PlatformPaymentMethodEntity extends BaseEntity{ | 
|---|
|  |  |  | @TableName("platform_payment_method") | 
|---|
|  |  |  | public class PlatformPaymentMethodEntity{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(value = "id",type = IdType.AUTO) | 
|---|
|  |  |  | private Long id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * 姓名 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private static final long serialVersionUID = 1L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String name; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 兑换比例 | 
|---|
|  |  |  | * 账号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private BigDecimal value; | 
|---|
|  |  |  | private String account; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 增减偏量 | 
|---|
|  |  |  | * 收款二维码 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private BigDecimal diff; | 
|---|
|  |  |  | private String paymentQrcode; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 类型【1、支付宝2、微信3、银行卡】 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private int type; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 银行名 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String bank; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 状态 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private int status; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 联系方式 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String phone; | 
|---|
|  |  |  | } | 
|---|