19 lines
450 B
Java
19 lines
450 B
Java
|
|
package com.ai.da.mapper;
|
||
|
|
|
||
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
||
|
|
import com.ai.da.mapper.entity.Account;
|
||
|
|
import com.ai.da.mapper.entity.Collection;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Mapper 接口
|
||
|
|
*
|
||
|
|
* @author easy-generator
|
||
|
|
* @since 2022-06-13
|
||
|
|
*/
|
||
|
|
public interface CollectionMapper extends CommonMapper<Collection> {
|
||
|
|
//返回插入数据后生成的主键
|
||
|
|
Long insertCollection(Collection collection);
|
||
|
|
}
|