疯狂的狮子li
2022-01-13 a0bed51d966ab5d161d3fdd5423ba84f59fb60ff
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}> {
 
}