Files
lablesys_backend/src/main/java/com/labelsys/backend/mapper/AnnotationResultMapper.java

15 lines
573 B
Java
Raw Normal View History

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.AnnotationResult;
import java.time.LocalDateTime;
import org.apache.ibatis.annotations.Param;
public interface AnnotationResultMapper extends BaseMapper<AnnotationResult> {
AnnotationResult findActiveByIdAndCompanyId(@Param("id") Long id, @Param("companyId") Long companyId);
int markArchived(@Param("id") Long id,
@Param("companyId") Long companyId,
2026-05-09 23:46:56 +08:00
@Param("reviewerId") Long reviewerId);
2026-04-27 16:25:39 +08:00
}