ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShareController.java
@@ -76,7 +76,7 @@ .eq(Share::getObjectId, objectId) .eq(Share::getDelFlag, 0).or() .eq(Share::getAddType, 1) .eq(Share::getDelFlag, 0)); .eq(Share::getDelFlag, 0).orderByDesc(Share::getCreateTime)); return R.ok(list); } @@ -104,7 +104,6 @@ share.setObjectId(userid); } share.setDelFlag(0); share.setAppletShare(1); share.setCreateTime(LocalDateTime.now()); shareService.save(share); return R.ok();