对比新文件 |
| | |
| | | package org.jeecg.modules.dnc.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.dnc.entity.WorkStepDepartment; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface WorkStepDepartmentMapper extends BaseMapper<WorkStepDepartment> { |
| | | |
| | | /** |
| | | * 鑾峰彇宸插垎閰嶇殑閮ㄩ棬鍒楄〃 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<MdcProduction> getDepartPermsByStepId(@Param("id") String id); |
| | | |
| | | /** |
| | | * 鑾峰彇鏈垎閰嶇殑閮ㄩ棬鍒楄〃 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | List<MdcProduction> getDepartNonPermsByStepId(@Param("id") String id); |
| | | |
| | | } |