package com.dl.demo.mapper;
|
|
import com.dl.common.annotation.DataColumn;
|
import com.dl.common.annotation.DataPermission;
|
import com.dl.common.core.mapper.BaseMapperPlus;
|
import com.dl.demo.domain.TestTree;
|
import com.dl.demo.domain.vo.TestTreeVo;
|
|
/**
|
* 测试树表Mapper接口
|
*
|
* @author Lion Li
|
* @date 2021-07-26
|
*/
|
@DataPermission({
|
@DataColumn(key = "deptName", value = "dept_id"),
|
@DataColumn(key = "userName", value = "user_id")
|
})
|
public interface TestTreeMapper extends BaseMapperPlus<TestTreeMapper, TestTree, TestTreeVo> {
|
|
}
|