| | |
| | | import org.jeecg.modules.eam.entity.EamFactorySecondMaintPlan; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: “首页车间二保计划 |
| | | * @Author: jeecg-boot |
| | |
| | | */ |
| | | public interface IEamFactorySecondMaintPlanService extends IService<EamFactorySecondMaintPlan> { |
| | | |
| | | /** |
| | | * 设备管理首页-车间二保计划列表 |
| | | * @return |
| | | */ |
| | | public List<EamFactorySecondMaintPlan> queryAllList(); |
| | | |
| | | /** |
| | | * 新增首页车间二保计划 |
| | | * @param equipmentId |
| | | * @param monthPlan |
| | | * @return |
| | | */ |
| | | public EamFactorySecondMaintPlan add(String equipmentId, String monthPlan); |
| | | |
| | | /** |
| | | * 日期变化 |
| | | * @param equipmentId |
| | | * @param oldMonthPlan |
| | | * @param newMonthPlan |
| | | * @return |
| | | */ |
| | | public boolean dateChange(String equipmentId, String oldMonthPlan, String newMonthPlan); |
| | | } |