19 lines
352 B
Java
19 lines
352 B
Java
package com.ai.da.service;
|
|
|
|
|
|
|
|
import com.ai.da.mapper.entity.PythonTAllInfo;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* (PythonTAllInfo)表服务接口
|
|
*
|
|
* @author SHAHAIBO
|
|
* @since 2023-09-08 17:03:47
|
|
*/
|
|
public interface PythonTAllInfoService extends IService<PythonTAllInfo> {
|
|
|
|
|
|
Long getImageIdByPath(String path);
|
|
}
|