package com.yuanchu.mom.service;
|
|
import com.yuanchu.mom.pojo.ManufactureOrderProcess;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 排产对应工序 服务类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-08-31 02:46:48
|
*/
|
public interface ManufactureOrderProcessService extends IService<ManufactureOrderProcess> {
|
|
void batchInsert(List<ManufactureOrderProcess> manufactureOrderProcessesDate);
|
|
/**
|
* 查看排产详情-->失焦修改时间
|
* @param startTime 开始时间
|
* @return
|
*/
|
@Transactional(rollbackFor = Exception.class)
|
void updateTime(Integer technologyId, Integer schedulingId, String startTime, Integer period);
|
}
|