|
@@ -16,7 +16,7 @@ import lombok.Data;
|
|
|
where = "q.external_userid = cu.external_userid " +
|
|
where = "q.external_userid = cu.external_userid " +
|
|
|
" AND cu.corp_user_id = c.id " +
|
|
" AND cu.corp_user_id = c.id " +
|
|
|
" AND q.follow_id = cf.userid ",
|
|
" AND q.follow_id = cf.userid ",
|
|
|
- groupBy = "c.name,c.avatar,cu.external_userid ,cf.name,cf.avatar "
|
|
|
|
|
|
|
+ groupBy = "c.name,c.avatar,cu.external_userid ,cf.name,cf.userid,cf.avatar "
|
|
|
)
|
|
)
|
|
|
@Data
|
|
@Data
|
|
|
public class CorpQyMsgAuditChatView {
|
|
public class CorpQyMsgAuditChatView {
|
|
@@ -41,6 +41,12 @@ public class CorpQyMsgAuditChatView {
|
|
|
@DbField("cf.name")
|
|
@DbField("cf.name")
|
|
|
private String followName;
|
|
private String followName;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 成员userid
|
|
|
|
|
+ */
|
|
|
|
|
+ @DbField("cf.userid")
|
|
|
|
|
+ private String followId;
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 成员头像
|
|
* 成员头像
|
|
|
*/
|
|
*/
|