|
|
@@ -62,7 +62,7 @@ public class CorpMsgAuditController {
|
|
|
builder.field(CorpMsgAuditUserView::getExternalUserid,userIds).op(InList.class);
|
|
|
}
|
|
|
if(StringUtils.isNotBlank(tagId)){
|
|
|
- builder.put("tag", String.format( "and cr.id = t.relation_id and t.tag_id = %s", tagId));
|
|
|
+ builder.put("tag", String.format( "and cr.id = t.relation_id and t.tag_id = '%s'", tagId));
|
|
|
builder.put("tagTable", ",corp_user_tag t");
|
|
|
}
|
|
|
SearchResult<CorpMsgAuditUserView> search = beanSearcher.search(CorpMsgAuditUserView.class, builder.build());
|