2026-04-27 10:27:57 +08:00
|
|
|
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);
|
2026-04-27 23:22:14 +08:00
|
|
|
|
|
|
|
|
SourceResource selectByCompanyIdAndResourceName(@Param("companyId") Long companyId, @Param("resourceName") String resourceName);
|
2026-04-27 16:25:39 +08:00
|
|
|
}
|