feige
2024-06-11 f356a0d4d947c7db005e75e7db0d3de2bd405e7e
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.ZfDoctor;
import com.ruoyi.domain.ZfDoctorShare;
 
import java.util.List;
 
public interface ZfDoctorShareService extends IService<ZfDoctorShare> {
 
    List<ZfDoctorShare> getAuthority();
 
    AjaxResult saveZa(ShareMore zfDoctor);
 
    AjaxResult listByFidAid(ShareMore zfDoctor);
 
    AjaxResult deleteZa(ShareMore zfDoctor);
 
    AjaxResult listByUserId();
 
    List<ZfDoctor> listUserId(Long shareId);
 
}