package com.linghu.service;
|
|
import com.linghu.model.entity.Reference;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
/**
|
* @author xy
|
* @description 针对表【reference】的数据库操作Service
|
* @createDate 2025-07-04 20:17:33
|
*/
|
public interface ReferenceService extends IService<Reference> {
|
public Integer getMaxNumByKeywordId( Integer keywordId);
|
}
|