TunnelCountTemp.cs 574 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request
  5. {
  6. public class TunnelCountTemp
  7. {
  8. public string Tunnel { get; set; }
  9. public int Count { get; set; }
  10. public decimal Proportion { get; set; }
  11. }
  12. public class MaterCodeItems
  13. {
  14. public string MaterCode { get; set; }
  15. public int Count { get;set; }
  16. }
  17. public class FloorCountTemp
  18. {
  19. public int Floor { get; set; }
  20. public int Count { get; set; }
  21. public decimal Proportion { get; set; }
  22. }
  23. }