zqy
2025-08-02 3b2f654b1a605d258c5e16c7617df80e9eb6f81b
zhang-content/src/main/java/com/ruoyi/service/ZfCollectionShareService.java
@@ -1,2 +1,30 @@
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);
    Boolean deleteByContentId(Long[] ids);
}