Commit 86e6c42f authored by 赵啸非's avatar 赵啸非

添加材料数量统计

parent ecee7fb6
......@@ -83,6 +83,10 @@ public class MatterController extends BaseCRUDJsonBodyMappingController<MatterSe
orderColList.add(new OrderCol("createTime",OrderCol.DESCENDING));
query.setOrderColList(orderColList);
if ("%%".equals(query.getMatterFullName()) || "%null%".equals(query.getMatterFullName())) {
return;
}
//添加更新热门词汇
HotwordEntity hotwordEntity = hotwordService.selectOne(new HotwordQuery().siteId(query.getSiteId()).hotwords(query.getMatterFullName()), context);
if (ObjectUtils.isEmpty(hotwordEntity)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment