疯狂的狮子li
2022-01-12 8f6484e47085fde953e4e7c725da6fa56228322b
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.mapper.BaseMapperPlus;
 
/**
 * ${functionName}Mapper接口
 *
 * @author ${author}
 * @date ${datetime}
 */
public interface ${ClassName}Mapper extends BaseMapperPlus<${ClassName}> {
 
}