浏览代码

文章只能使用当天的

xueyiming 7 月之前
父节点
当前提交
b18ad3dc91

+ 2 - 1
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/service/local/impl/PublicContentServiceImpl.java

@@ -35,7 +35,8 @@ public class PublicContentServiceImpl {
             return null;
         }
         PublishContentExample example = new PublishContentExample();
-        example.createCriteria().andPublishContentIdEqualTo(publishContentId);
+        example.createCriteria().andPublishContentIdEqualTo(publishContentId)
+                .andCreateTimeGreaterThan(DateUtil.getThatDayDate());
         List<PublishContent> publishContents = publishContentMapper.selectByExample(example);
         if (!CollectionUtils.isEmpty(publishContents)) {
             PublishContent publishContent = publishContents.get(0);