| | |
| | | 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;
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | /**
|
| | | * 订单状态 1-新建
|
| | | * 订单状态 买入 1-新建 卖出 1-待付款 |
| | | */
|
| | | public static final Integer CHARGE_STATUS_CREATE = 1;
|
| | |
|
| | |
| | | * 订单类型 B买入 S卖出
|
| | | */
|
| | | private String orderType;
|
| | |
|
| | | |
| | | /**
|
| | | * 查询条件:第一查询条件
|
| | | */
|
| | | @TableField(exist = false)
|
| | | private String account;
|
| | | |
| | | }
|