| | |
| | | |
| | | import com.yuanchu.mom.pojo.ManufactureOrderProcess; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | 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); |
| | | } |