xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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> {
 
}