荣鑫后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
971 B

  1. package com.gaotao.modules.schedule.service;
  2. import com.gaotao.common.exception.RRException;
  3. import com.gaotao.modules.schedule.data.SearchScheduleData;
  4. /**
  5. * @Author LR
  6. * @Description 排产使用的service
  7. * @DateTime 2022/2/28 14:40
  8. * @Param
  9. * @return
  10. **/
  11. public interface SchedulingService {
  12. /**
  13. * @Author LR
  14. * @Description 获取当前的机台对应的加工中心
  15. * @DateTime 2022/2/28 14:44
  16. * @Param [inData]
  17. * @return java.lang.String
  18. **/
  19. String getCurrentWorkCenterNoByResourceId(SearchScheduleData inData);
  20. /**
  21. * @Author LR
  22. * @Description 排产生产工单
  23. * @DateTime 11:10
  24. * @Param [inData]
  25. * @return void
  26. **/
  27. void scheduleWorkOrder(SearchScheduleData inData);
  28. /**
  29. * @Author LR
  30. * @Description 取消排产操作
  31. * @DateTime 2022/3/1 14:50
  32. * @Param [inData]
  33. * @return void
  34. **/
  35. void cancelSoSchedule(SearchScheduleData inData);
  36. }