package org.jeecg.modules.eam.service;
|
|
import org.jeecg.modules.eam.entity.EamFactorySecondMaintPlan;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* @Description: “首页车间二保计划
|
* @Author: jeecg-boot
|
* @Date: 2025-08-22
|
* @Version: V1.0
|
*/
|
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);
|
}
|