“linengliang”
2023-10-17 be5874cff6e319d9f9c7e84cd19f778b8fa3e93b
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/impl/EquipmentMaintenancePlanServiceImpl.java
@@ -1,6 +1,7 @@
package org.jeecg.modules.eam.service.impl;
import org.jeecg.modules.eam.entity.EquipmentMaintenancePlan;
import org.jeecg.modules.eam.entity.MaintenanceStandardDetail;
import org.jeecg.modules.eam.mapper.EquipmentMaintenancePlanDetailMapper;
import org.jeecg.modules.eam.mapper.EquipmentMaintenancePlanMapper;
import org.jeecg.modules.eam.service.IEquipmentMaintenancePlanService;
@@ -10,6 +11,7 @@
import org.springframework.transaction.annotation.Transactional;
import java.io.Serializable;
import java.util.Collection;
import java.util.List;
/**
 * @Description: 保养计划
@@ -41,4 +43,9 @@
      }
   }
   @Override
   public List<MaintenanceStandardDetail> getCycle(String mainId, String type) {
      return baseMapper.getCycle(mainId,type);
   }
}