xiaoyi
20 小时以前 4e8dc8cd84e3d3d4099d9cf0ed866dbd7e8ed9aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cn.iocoder.yudao.module.mes.service.pro.alternativeplan;
 
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.mes.controller.admin.pro.alternativeplan.vo.MesProAlternativePlanPageReqVO;
import cn.iocoder.yudao.module.mes.controller.admin.pro.alternativeplan.vo.MesProAlternativePlanSaveReqVO;
import cn.iocoder.yudao.module.mes.dal.dataobject.pro.alternativeplan.MesProAlternativePlanDO;
 
import java.util.Collection;
 
/**
 * MES 作业替代方案 Service 接口
 *
 * @author xiaoyi
 */
public interface MesProAlternativePlanService {
 
    Long createPlan(MesProAlternativePlanSaveReqVO createReqVO);
 
    void updatePlan(MesProAlternativePlanSaveReqVO updateReqVO);
 
    void deletePlan(Collection<Long> ids);
 
    MesProAlternativePlanDO getPlan(Long id);
 
    PageResult<MesProAlternativePlanDO> getPlanPage(MesProAlternativePlanPageReqVO pageReqVO);
 
    void publishPlan(Long id);
 
}