| | |
| | | package com.ruoyi.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.ZfDoctor; |
| | |
| | | |
| | | public interface ZfShareDataService extends IService<ZfShareData> { |
| | | |
| | | List<ZfShareData> selectList(); |
| | | List<ZfShareData> selectList(ZfShareData zfShareData); |
| | | |
| | | List<ZfShareData> selectByIds(Long[] ids); |
| | | |
| | |
| | | |
| | | List<ZfShareData> getShareId(Long id); |
| | | |
| | | Long getSource(Long userId); |
| | | |
| | | Long getEnd(Long userId); |
| | | |
| | | List<Long> getAllPerson(List<Long> userIds); |
| | | |
| | | List<ZfShareData> getByShareId(List<Long> id); |
| | | |
| | | |
| | | |
| | | } |