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.
14 lines
447 B
Java
14 lines
447 B
Java
3 weeks ago
|
package com.supervision.pdfqaserver.service;
|
||
|
|
||
|
import com.supervision.pdfqaserver.domain.TruncationEntityExtraction;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【truncation_entity_extraction(片段实体抽取)】的数据库操作Service
|
||
|
* @createDate 2025-04-27 11:45:24
|
||
|
*/
|
||
|
public interface TruncationEntityExtractionService extends IService<TruncationEntityExtraction> {
|
||
|
|
||
|
}
|