ccl冷凝胶后端
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.

57 lines
1.4 KiB

  1. package com.spring.modules.schedule.mapper;
  2. import com.spring.modules.schedule.data.BaseRollData;
  3. import com.spring.modules.schedule.data.ScheduleData;
  4. import com.spring.modules.schedule.data.SearchScheduleData;
  5. import com.spring.modules.schedule.data.SfdcRollOpsData;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Param;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. import java.util.Map;
  11. /**
  12. * @author LR
  13. * @Title: ScheduleMapper
  14. * 生产订单排产dao
  15. * @Date 2021/10/20 11:20
  16. */
  17. @Mapper
  18. @Repository
  19. public interface ScheduleMapper {
  20. /**
  21. * TODO 查询派工单的数据
  22. * @author LR
  23. * @date 2021/10/25 16:09
  24. * @param inData
  25. **/
  26. List<ScheduleData> getProduceScheduleData(SearchScheduleData inData);
  27. /**
  28. * TODO 按照派工单号查询派工单的数据
  29. * @author LR
  30. * @date 2021/11/8 14:25
  31. * @param seqNo
  32. * @return com.gaotao.modules.schedule.data.ScheduleData
  33. **/
  34. ScheduleData getScheduleDataBySeqNo(String seqNo);
  35. /**
  36. * TODO 获取当前的上机卷信息
  37. * @author LR
  38. * @date 2021/11/9 16:04
  39. * @param inData
  40. **/
  41. SfdcRollOpsData getCurrentRollOpsBySeqNo(BaseRollData inData);
  42. /**
  43. * TODO 获取上机卷记录按照条件查询
  44. * @author LR
  45. * @date 2021/11/9 16:28
  46. * @param inData
  47. **/
  48. List<SfdcRollOpsData> getSfdcRollOpsByCon(SearchScheduleData inData);
  49. }