package com.yuanchu.mom.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.yuanchu.mom.excel.DeviceMaintenanceExport; import com.yuanchu.mom.pojo.DeviceMaintenance; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface DeviceMaintenanceMapper extends BaseMapper { List getDeviceMaintenanceParam(); // IPage getDeviceMaintenancePage(Page page, Integer deviceId); List deviceMaintenanceExport(Integer deviceId); }