mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-10 08:57:14 +08:00
14 lines
355 B
Plaintext
14 lines
355 B
Plaintext
package ${packageName}.${subPackageName};
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import ${packageName}.model.entity.${classNamePrefix}DO;
|
|
import top.continew.starter.data.mp.base.BaseMapper;
|
|
|
|
/**
|
|
* ${businessName} Mapper
|
|
*
|
|
* @author ${author}
|
|
* @since ${datetime}
|
|
*/
|
|
@Mapper
|
|
public interface ${className} extends BaseMapper<${classNamePrefix}DO> {} |