Lius
2025-03-21 87874019eefbe03dd429b5b7eed49d963ef03c88
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/mapper/PartsDepartmentMapper.java
@@ -2,8 +2,8 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.dnc.entity.PartsDepartment;
import org.jeecg.modules.dnc.ucenter.Department;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.system.entity.MdcProduction;
import java.util.List;
@@ -14,12 +14,12 @@
     * @param partsId
     * @return
     */
    List<Department> getDepartPermsByPartsId(@Param("partsId") String partsId);
    List<MdcProduction> getDepartPermsByPartsId(@Param("partsId") String partsId);
    /**
     * 获取已分配的部门
     * @param partsId
     * @return
     */
    List<Department> getDepartNonPermsByProductId(@Param("partsId") String partsId);
    List<MdcProduction> getDepartNonPermsByPartsId(@Param("partsId") String partsId);
}