1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package cn.stylefeng.roses.kernel.system.modular.organization.mapper;
|
| import cn.stylefeng.roses.kernel.system.modular.organization.entity.HrOrgApprover;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * 组织机构审批人 Mapper 接口
| *
| * @author fengshuonan
| * @date 2022/09/13 23:15
| */
| public interface HrOrgApproverMapper extends BaseMapper<HrOrgApprover> {
|
| }
|
|