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.

22 lines
620 B
Java

2 months ago
package com.supervision.pdfqaserver.service;
import com.supervision.pdfqaserver.domain.ChineseEnglishWords;
import com.baomidou.mybatisplus.extension.service.IService;
2 months ago
import java.util.List;
2 months ago
/**
* @author Administrator
* @description chinese_english_words()Service
* @createDate 2025-04-27 11:45:24
*/
public interface ChineseEnglishWordsService extends IService<ChineseEnglishWords> {
2 months ago
List<ChineseEnglishWords> queryAll();
boolean wordsExists(String word, List<ChineseEnglishWords> wordsList);
void saveIfNotExists(ChineseEnglishWords words);
2 months ago
}