IWmsInboundStackResultService.java 459 B

1234567891011121314151617181920212223242526
  1. package com.steerinfo.dil.service;
  2. import com.steerinfo.dil.model.WmspInboundStackResult;
  3. /**
  4. * @author luobang
  5. * @create 2021-09-13 15:05
  6. */
  7. public interface IWmsInboundStackResultService {
  8. /**
  9. * 新增选择垛位实绩
  10. * @param wmspInboundStackResult
  11. * @return
  12. */
  13. int insertWmsInboundStackResult(WmspInboundStackResult wmspInboundStackResult);
  14. /**
  15. * 2.主键ID
  16. *
  17. * @return
  18. */
  19. int count();
  20. }