16 lines
359 B
Java
16 lines
359 B
Java
|
|
package com.ai.da.mapper;
|
||
|
|
|
||
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||
|
|
import com.ai.da.mapper.entity.Classification;
|
||
|
|
import com.ai.da.mapper.entity.ClassificationRelLibrary;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Mapper 接口
|
||
|
|
*
|
||
|
|
* @author SHAHAIBO
|
||
|
|
* @since 2023-09-25
|
||
|
|
*/
|
||
|
|
public interface ClassificationRelLibraryMapper extends CommonMapper<ClassificationRelLibrary> {
|
||
|
|
|
||
|
|
}
|