| | |
| | | package org.jeecg.modules.eam.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.entity.EquipmentMaintenancePlan; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.jeecg.modules.eam.entity.MaintenanceStandardDetail; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 保养计划 |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface EquipmentMaintenancePlanMapper extends BaseMapper<EquipmentMaintenancePlan> { |
| | | |
| | | List<MaintenanceStandardDetail> getCycle(@Param("mainId") String mainId,@Param("type") String type); |
| | | } |