using Microsoft.SqlServer.Server; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aucma.Scada.Model.dto { /// /// 物料库存统计DTO /// public class MaterialStockDto { public string parentMaterialName { get;set; } public decimal? shellStock { get; set; } public decimal? linerStock { get; set; } } }