2022-06-15 06:21:31 +00:00
|
|
|
package com.hxkj.common.mapper;
|
|
|
|
|
|
|
|
|
|
import com.hxkj.common.core.basics.IBaseMapper;
|
2022-07-13 08:44:55 +00:00
|
|
|
import com.hxkj.common.entity.${entityName}.${EntityName};
|
2022-06-15 06:21:31 +00:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
|
|
|
|
|
/**
|
2022-07-13 08:44:55 +00:00
|
|
|
* ${functionName}Mapper
|
2022-06-15 06:21:31 +00:00
|
|
|
*/
|
|
|
|
|
@Mapper
|
2022-06-17 11:03:18 +00:00
|
|
|
public interface ${EntityName}Mapper extends IBaseMapper<${EntityName}> {
|
2022-06-15 06:21:31 +00:00
|
|
|
}
|