From 8c4700e391ff1cbc6c5be9962304a9ff96c6e559 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 04 Sep 2020 11:33:32 +0800
Subject: [PATCH] 20200904
---
src/main/java/com/xcong/excoin/modules/member/entity/MemberQuickBuySaleEntity.java | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/member/entity/MemberQuickBuySaleEntity.java b/src/main/java/com/xcong/excoin/modules/member/entity/MemberQuickBuySaleEntity.java
index 772e54f..282af9c 100644
--- a/src/main/java/com/xcong/excoin/modules/member/entity/MemberQuickBuySaleEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/member/entity/MemberQuickBuySaleEntity.java
@@ -1,8 +1,11 @@
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;
@@ -15,7 +18,7 @@
private static final long serialVersionUID = 1L;
/**
- * 订单状态 1-新建
+ * 订单状态 买入 1-新建 卖出 1-待付款
*/
public static final Integer CHARGE_STATUS_CREATE = 1;
@@ -83,5 +86,11 @@
* 订单类型 B买入 S卖出
*/
private String orderType;
-
+
+ /**
+ * 查询条件:第一查询条件
+ */
+ @TableField(exist = false)
+ private String account;
+
}
--
Gitblit v1.9.1