Blame view

ServiceCompanyMappingMapper.java 1.12 KB
涂亚平 committed
1 2 3 4 5 6
package com.subsidy.mapper;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.model.ServiceCompanyMappingDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.model.ServiceDictDO;
7
import com.subsidy.vo.administer.AdministerServicesVO;
涂亚平 committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
import com.subsidy.vo.service.GetServiceCompaniesVO;
import com.subsidy.vo.service.ServiceCompaniesVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 业务公司 映射表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-01-11
 */
@Repository
public interface ServiceCompanyMappingMapper extends BaseMapper<ServiceCompanyMappingDO> {


    IPage<GetServiceCompaniesVO> getServiceCompanies(IPage iPage, Long serviceId, String companyName, String authStatus);

    List<ServiceCompaniesVO> serviceCompanies(Long serviceId, String companyName);

    /**
     * 返回公司全部的业务
     */
33
    List<AdministerServicesVO> companyService(Long companyId);
涂亚平 committed
34 35 36 37

    /**
     * 返回公司授权给某个人的业务
     */
涂亚平 committed
38
    List<AdministerServicesVO> companyAdministerService(Long companyId,Long administerId);
涂亚平 committed
39 40

}