From c94c6e7a2e671f0c291885ab87f386a03c3fef11 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 27 May 2021 14:57:49 +0800 Subject: [PATCH] 20210527 最多三个待付款 --- 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