“linengliang”
2023-10-17 be5874cff6e319d9f9c7e84cd19f778b8fa3e93b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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: 保养计划
 * @Author: jeecg-boot
 * @Date:   2023-10-16
 * @Version: V1.0
 */
public interface EquipmentMaintenancePlanMapper extends BaseMapper<EquipmentMaintenancePlan> {
    List<MaintenanceStandardDetail> getCycle(@Param("mainId") String mainId,@Param("type") String type);
}