You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
453 B
Java
19 lines
453 B
Java
package com.supervision.pdfqaserver.mapper;
|
|
|
|
import com.supervision.pdfqaserver.domain.PdfAnalysisOutput;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【pdf_analysis_output】的数据库操作Mapper
|
|
* @createDate 2025-04-27 11:45:24
|
|
* @Entity com.supervision.pdfqaserver.domain.PdfAnalysisOutput
|
|
*/
|
|
public interface PdfAnalysisOutputMapper extends BaseMapper<PdfAnalysisOutput> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|