20 lines
433 B
Java
20 lines
433 B
Java
|
|
package com.ai.da.mapper;
|
||
|
|
|
||
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||
|
|
import com.ai.da.mapper.entity.PythonTAllInfo;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
import org.springframework.data.domain.Pageable;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* (PythonTAllInfo)表数据库访问层
|
||
|
|
*
|
||
|
|
* @author SHAHAIBO
|
||
|
|
* @since 2023-09-08 17:05:24
|
||
|
|
*/
|
||
|
|
public interface PythonTAllInfoMapper extends CommonMapper<PythonTAllInfo> {
|
||
|
|
|
||
|
|
}
|
||
|
|
|