17 lines
381 B
Java
17 lines
381 B
Java
package com.ai.da.mapper;
|
|
|
|
import com.ai.da.common.config.mybatis.plus.CommonMapper;
|
|
import com.ai.da.mapper.entity.Design;
|
|
import com.ai.da.mapper.entity.DesignItem;
|
|
|
|
/**
|
|
* Mapper 接口
|
|
*
|
|
* @author easy-generator
|
|
* @since 2022-06-13
|
|
*/
|
|
public interface DesignItemMapper extends CommonMapper<DesignItem> {
|
|
|
|
Long insertDesignItem(DesignItem designItem);
|
|
}
|