From 5be62132d4654e16be0bcc7c1ab1304a307ada5c Mon Sep 17 00:00:00 2001 From: zqy <2522236926@qq.com> Date: 星期一, 05 八月 2024 20:17:40 +0800 Subject: [PATCH] 分享 --- zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java | 29 ++++++++++++++++++++++++++++- 1 files changed, 28 insertions(+), 1 deletions(-) diff --git a/zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java b/zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java index 40bfa15..9e96927 100644 --- a/zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java +++ b/zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java @@ -1,2 +1,29 @@ -package com.ruoyi.service;public interface ZfCollectionShareService { + +package com.ruoyi.service; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.domain.ShareMore; +import com.ruoyi.domain.ZfDownload; +import com.ruoyi.domain.ZfProperty; +import com.ruoyi.domain.ZfShare; +import org.springframework.web.multipart.MultipartFile; + +import java.util.List; + +public interface ZfCollectionShareService extends IService<ZfShare> { + List<ZfShare> getAuthority(); + + AjaxResult saveZa(ShareMore shareMore); + + AjaxResult listByFidAid(ShareMore shareMore,Integer pageNo ,Integer pageSize); + + AjaxResult deleteZa(ShareMore shareMore); + + AjaxResult listByUserId(); + + AjaxResult listUserId(Integer pageNo ,Integer pageSize); + + Long getShareId(ZfDownload zfDownload); + } -- Gitblit v1.9.1