package com.xcong.excoin.modules.member.entity;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.xcong.excoin.common.entity.BaseEntity;
|
|
import lombok.Data;
|
|
@Data
|
@TableName("member_quick_buy_sale")
|
public class MemberQuickBuySaleEntity extends BaseEntity{/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 订单状态 买入 1-新建 卖出 1-待付款
|
*/
|
public static final Integer CHARGE_STATUS_CREATE = 1;
|
|
/**
|
* 订单状态 2-已付款
|
*/
|
public static final Integer CHARGE_STATUS_PAID = 2;
|
|
/**
|
* 订单状态 3-已审核
|
*/
|
public static final Integer CHARGE_STATUS_CHECKED = 3;
|
|
/**
|
* 订单状态 4-撤单
|
*/
|
public static final Integer CHARGE_STATUS_CANCEL_USER = 4;
|
|
/**
|
* 订单状态 5-系统取消
|
*/
|
public static final Integer CHARGE_STATUS_CANCEL_SYSTEM = 5;
|
|
/**
|
* 用户Id
|
*/
|
private Long memberId;
|
/**
|
* 金额(人民币)
|
*/
|
private BigDecimal amountCny;
|
/**
|
* 金额(USDT)
|
*/
|
private BigDecimal amountUsdt;
|
/**
|
* 付款方式 1-支付宝2-微信3-银行卡
|
*/
|
private Integer paymentType;
|
/**
|
* 收款账号
|
*/
|
private String paymentAccount;
|
/**
|
* 收款人姓名
|
*/
|
private String paymentName;
|
/**
|
* 支付码
|
*/
|
private String paymentCode;
|
/**
|
* 单价
|
*/
|
private BigDecimal unitPrice;
|
/**
|
* 订单状态 1-新建2-已付款3-已审核4-撤单5-系统取消
|
*/
|
private int orderStatus;
|
/**
|
* 订单编号
|
*/
|
private String orderNo;
|
/**
|
* 订单类型 B买入 S卖出
|
*/
|
private String orderType;
|
|
/**
|
* 查询条件:第一查询条件
|
*/
|
@TableField(exist = false)
|
private String account;
|
|
}
|