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
413 B
Java

package com.supervision.pdfqaserver.mapper;
import com.supervision.pdfqaserver.domain.PdfInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author Administrator
* @description 针对表【pdf_info(pdf信息)】的数据库操作Mapper
* @createDate 2025-04-27 11:45:24
* @Entity com.supervision.pdfqaserver.domain.PdfInfo
*/
public interface PdfInfoMapper extends BaseMapper<PdfInfo> {
}