唐耀东
2022-05-18 41e8084ef826dc8d98d4d25bf891965ce2af3ad3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ${packageName}.mapper;
 
import ${packageName}.domain.${ClassName};
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
 
/**
 * ${functionName}Mapper接口
 *
 * @author ${author}
 * @date ${datetime}
 */
public interface ${ClassName}Mapper extends BaseMapperPlus<${ClassName}> {
 
}