From 753646c5029f869efec07bb5f04760f9e206f092 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 27 May 2021 14:16:58 +0800
Subject: [PATCH] 20210527  最多三个待付款

---
 /dev/null |   26 --------------------------
 1 files changed, 0 insertions(+), 26 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistory.java b/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistory.java
deleted file mode 100644
index f156d0e..0000000
--- a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistory.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.xcong.excoin.modules.otc.entity;
-
-
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.xcong.excoin.common.system.base.BaseEntity;
-import lombok.Data;
-
-@Data
-@TableName("otc_msg_history")
-public class OtcMsgHistory extends BaseEntity {
-
-    private Long memberId;
-
-    private Long targetId;
-
-    private String msg;
-
-    /**
-     * 消息类型 1-文本 2-图片
-     */
-    private Integer msgType;
-
-}
diff --git a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgUserList.java b/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgUserList.java
deleted file mode 100644
index 578ad0d..0000000
--- a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgUserList.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.xcong.excoin.modules.otc.entity;
-
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.xcong.excoin.common.system.base.BaseEntity;
-import lombok.Data;
-
-import java.util.Date;
-
-@Data
-@TableName("otc_msg_user_list")
-public class OtcMsgUserList extends BaseEntity {
-
-    private Long memberId;
-
-    private Long targetId;
-
-    /**
-     * 是否已读 1-是 2-否
-     */
-    private Integer isRead;
-
-    /**
-     * 最后聊天时间
-     */
-    private Date lastMsgTime;
-}

--
Gitblit v1.9.1