From 99faf7be593f0595ce435084ee2b90a8d3da3bd4 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Fri, 28 May 2021 15:58:31 +0800 Subject: [PATCH] Merge branch 'otc' of http://120.27.238.55:7000/r/exchange into otc --- src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistoryEntity.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistoryEntity.java b/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistoryEntity.java index 736fa8e..daa3662 100644 --- a/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistoryEntity.java +++ b/src/main/java/com/xcong/excoin/modules/otc/entity/OtcMsgHistoryEntity.java @@ -12,6 +12,8 @@ //用户ID private long memberId; + //发送方 + private long fromMemberId; //对方用户ID private long targetId; @@ -20,4 +22,9 @@ //消息类型 1-文本2-图片 private Integer msgType; + + //是不是memberId发的消息 1:是 2:否 + private Integer isSelf; + public static final Integer ISSELF_ONE = 1; + public static final Integer ISSELF_TWO = 2; } -- Gitblit v1.9.1