CheckSubmitRequest.cs 503 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.Info.Models
  7. {
  8. public class CheckSubmitRequest
  9. {
  10. public string CheckNo { get; set; }
  11. public string TrayNo { get; set; }
  12. public List<CheckLine> checkLines { get; set; }
  13. }
  14. public class CheckLine {
  15. public string F_matNo { get; set; }
  16. public int F_quantity { get; set; }
  17. public int F_actualQty { get; set; }
  18. }
  19. }