1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.production.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ruoyi.production.pojo.ProductionCostingDept;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.util.List;
|
| /**
| * 生产核算-部门类型配置 Mapper
| */
| @Mapper
| public interface ProductionCostingDeptMapper extends BaseMapper<ProductionCostingDept> {
|
| /**
| * 查询部门类型配置(含部门名称)
| */
| List<ProductionCostingDept> selectDeptConfigs();
| }
|
|