From 312e09da912a5d5bee2228af3f888e06088902ec Mon Sep 17 00:00:00 2001 From: feige <791364011@qq.com> Date: 星期五, 18 十月 2024 10:35:38 +0800 Subject: [PATCH] 修改了bug --- zhang-content/src/main/java/com/ruoyi/service/ZfPetSharService.java | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/zhang-content/src/main/java/com/ruoyi/service/ZfPetSharService.java b/zhang-content/src/main/java/com/ruoyi/service/ZfPetSharService.java index 7a2b97f..9283a21 100644 --- a/zhang-content/src/main/java/com/ruoyi/service/ZfPetSharService.java +++ b/zhang-content/src/main/java/com/ruoyi/service/ZfPetSharService.java @@ -1,2 +1,30 @@ -package com.ruoyi.service;public interface ZfPetSharService { + +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 ZfPetSharService 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