17 lines
330 B
Java
17 lines
330 B
Java
package com.ai.da.mapper;
|
|
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
|
import com.ai.da.mapper.entity.CollectionElement;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Mapper 接口
|
|
*
|
|
* @author yanglei
|
|
* @since 2022-10-13
|
|
*/
|
|
public interface CollectionElementMapper extends CommonMapper<CollectionElement> {
|
|
|
|
}
|