using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request { public class TunnelCountTemp { public string Tunnel { get; set; } public int Count { get; set; } public decimal Proportion { get; set; } } public class MaterCodeItems { public string MaterCode { get; set; } public int Count { get;set; } } public class FloorCountTemp { public int Floor { get; set; } public int Count { get; set; } public decimal Proportion { get; set; } } }