EmptyTrayRequest.cs 585 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace WMS.Info
  6. {
  7. public class EmptyTrayRequest
  8. {
  9. public string LocationNo { get; set; }
  10. public bool IsBonded { get; set; }
  11. }
  12. public class EmptyTrayRequestDto : EmptyTrayRequest
  13. {
  14. public bool IsGroup { get; set; }
  15. }
  16. public class WcsEmptyTrayRequest
  17. {
  18. public string LocationNo { get; set; }
  19. public bool IsBonded { get; set; }
  20. public int OutOrIn { get; set; }
  21. public List<int> Layer { get; set; }
  22. }
  23. }