Blame view

ServiceCompanyFilesMapper.java 561 Bytes
涂亚平 committed
1 2
package com.subsidy.mapper;

3
import com.baomidou.mybatisplus.core.metadata.IPage;
涂亚平 committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17
import com.subsidy.model.ServiceCompanyFilesDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 协议管理材料表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-01-11
 */
18
@Repository
涂亚平 committed
19 20
public interface ServiceCompanyFilesMapper extends BaseMapper<ServiceCompanyFilesDO> {

涂亚平 committed
21
    IPage<ServiceCompanyFilesDO> companyFiles(IPage page,List<Long> treeIds, String fileName);
涂亚平 committed
22 23

}