| | |
| | | import org.jeecg.modules.dnc.entity.ProductDepartment; |
| | | import org.jeecg.modules.dnc.ucenter.Department; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.system.entity.MdcProduction; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param productId |
| | | * @return |
| | | */ |
| | | List<Department> getDepartPermsByProductId(@Param("productId") String productId); |
| | | List<MdcProduction> getDepartPermsByProductId(@Param("productId") String productId); |
| | | |
| | | /** |
| | | * 获取未分配的部门列表 |
| | | * @param productId |
| | | * @return |
| | | */ |
| | | List<Department> getDepartNonPermsByProductId(@Param("productId") String productId); |
| | | List<MdcProduction> getDepartNonPermsByProductId(@Param("productId") String productId); |
| | | } |