using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.Dto.ZhongTian.Response { public class BomSetGrpCurrentMaterialRateDto { public string MatCode { get; set; } public int Qty { get; set; } public string BomCode { get; set; } public string BomSetName { get; set; } public decimal Rate { get; set; } public decimal NormalRate { get; set; } public decimal DiffRate { get { return Rate - NormalRate; } } public string RateName { get { return Rate.ToString("P2"); } } public string NormalRateName { get { return NormalRate.ToString("P2"); } } public string DiffRateName { get { return DiffRate.ToString("P2"); } } public int DiffQty { get; set; } } public class MantuoBarCodeRateDto { public string SetGrpCode { get; set; } public string BomMatCode { get; set; } public string BomMatName { get; set; } public string WarehouseName { get; set; } public int Qty { get; set; } } public class InvSetGrpDto { public string SetGrpCode { get; set; } public int Qty { get; set; } } }