12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
|
package ${packageName}.common.mapper.${moduleName};
|
||
|
|
||
|
import basics.core.com.hcy.common.IBaseMapper;
|
||
|
import com.hcy.common.entity.${moduleName}.${EntityName};
|
||
|
|
||
|
/**
|
||
|
* ${functionName}Mapper
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface ${EntityName}Mapper extends IBaseMapper<${EntityName}> {
|
||
|
}
|