13 lines
323 B
Plaintext
13 lines
323 B
Plaintext
package ${packageName}.common.mapper.${moduleName};
|
|
|
|
import com.hxkj.common.core.basics.IBaseMapper;
|
|
import com.hxkj.common.entity.${entityName}.${EntityName};
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* ${functionName}Mapper
|
|
*/
|
|
@Mapper
|
|
public interface ${EntityName}Mapper extends IBaseMapper<${EntityName}> {
|
|
}
|