15 lines
270 B
Java
Raw Normal View History

package com.ruoyi.demo.mapper;
import com.ruoyi.demo.domain.TestDemo;
import com.ruoyi.common.core.page.BaseMapperPlus;
/**
* 测试单表Mapper接口
*
* @author Lion Li
* @date 2021-05-30
*/
public interface TestDemoMapper extends BaseMapperPlus<TestDemo> {
}