对比新文件 |
| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentOvertime; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | /** |
| | | * @Description: 璁惧鍔犵彮绠$悊 |
| | | * @Author: Lius |
| | | * @Date: 2023-08-25 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IMdcEquipmentOvertimeService extends IService<MdcEquipmentOvertime> { |
| | | |
| | | /** |
| | | * 鍒嗛〉鍒楄〃鏌ヨ |
| | | * |
| | | * @param userId |
| | | * @param page |
| | | * @param mdcEquipmentOvertime |
| | | * @param req |
| | | * @return |
| | | */ |
| | | IPage<MdcEquipmentOvertime> pageList(String userId, Page<MdcEquipmentOvertime> page, MdcEquipmentOvertime mdcEquipmentOvertime, HttpServletRequest req); |
| | | |
| | | /** |
| | | * 瀵煎嚭 |
| | | * |
| | | * @param userId |
| | | * @param mdcEquipmentOvertime |
| | | * @return |
| | | */ |
| | | ModelAndView exportXls(String userId, MdcEquipmentOvertime mdcEquipmentOvertime); |
| | | |
| | | } |