first version of aida_back
This commit is contained in:
16
src/main/java/com/ai/da/mapper/DesignItemMapper.java
Normal file
16
src/main/java/com/ai/da/mapper/DesignItemMapper.java
Normal file
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user