|
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}> {
|
|
}
|