zqy
2024-08-27 b1e37badce27751f7751bc27d69b1a6f6f64ae56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.ZfShare;
 
import java.util.List;
 
public interface ZHonorShareService 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);
}