| | |
| | | package com.ruoyi.other.service; |
| | | |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.other.api.domain.Share; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-11-20 |
| | | */ |
| | | public interface ShareService extends IService<Share> { |
| | | |
| | | |
| | | /** |
| | | * 获取分享审核列表 |
| | | * @param name |
| | | * @param addType |
| | | * @param auditStatus |
| | | * @param userIds |
| | | * @param shopIds |
| | | * @return |
| | | */ |
| | | PageInfo<Share> authmanagelist(String name, Integer addType, Integer auditStatus, List<Long> userIds, List<Integer> shopIds, Integer pageNum, Integer pageSize); |
| | | } |