去掉任务中相关模型和提示词绑定,新增资源图片bbox处理
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user