12 lines
423 B
Java
12 lines
423 B
Java
|
|
package com.labelsys.backend.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.labelsys.backend.entity.SourceResource;
|
||
|
|
import java.util.List;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
public interface SourceResourceMapper extends BaseMapper<SourceResource> {
|
||
|
|
|
||
|
|
List<SourceResource> selectByCompanyIdAndIds(@Param("companyId") Long companyId, @Param("resourceIds") List<Long> resourceIds);
|
||
|
|
}
|