namespace Kean.Infrastructure.Configuration { /// /// 物料属性(静态部分) /// public abstract partial class MaterialProperty { /// /// 别名 /// public string Alias { get; set; } /// /// 规格型号 /// public string Model { get; set; } /// /// 计量单位 /// public string Unit { get; set; } /// /// 品牌 /// public string Brand { get; set; } /// /// 价格 /// public decimal? Price { get; set; } /// /// 重量 /// public decimal? Weight { get; set; } /// /// 长度 /// public decimal? Length { get; set; } /// /// 宽度 /// public decimal? Width { get; set; } /// /// 高度 /// public decimal? Height { get; set; } /// /// 外观特性 /// public string Facade { get; set; } /// /// 保质期 /// public int? ExpirationDate { get; set; } /// /// 质检标识 /// public bool? QualityControl { get; set; } /// /// 最小库存时间 /// public int? MinimumStockTime { get; set; } /// /// 最大库存时间 /// public int? MaximumStockTime { get; set; } } }