15 lines
270 B
Java
Raw Normal View History

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