19 lines
418 B
Java
19 lines
418 B
Java
package com.ai.da.mapper;
|
|
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
|
import com.ai.da.mapper.entity.TCollectionElementRelation;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* <p>
|
|
* collection和element的关联表 Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author yanglei
|
|
* @since 2023-05-07
|
|
*/
|
|
@Mapper
|
|
public interface TCollectionElementRelationMapper extends CommonMapper<TCollectionElementRelation> {
|
|
|
|
}
|