13 lines
483 B
Java
13 lines
483 B
Java
|
|
package com.labelsys.backend.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.labelsys.backend.entity.ImageBboxAnnotation;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
@Mapper
|
||
|
|
public interface ImageBboxAnnotationMapper extends BaseMapper<ImageBboxAnnotation> {
|
||
|
|
ImageBboxAnnotation selectByResourceId(@Param("resourceId") Long resourceId);
|
||
|
|
|
||
|
|
int deleteByResourceId(@Param("resourceId") Long resourceId);
|
||
|
|
}
|