using Kean.Infrastructure.Configuration; namespace Kean.Application.Query.ViewModels { /// /// 安全库存信息视图 /// public sealed class Safety : MaterialProperty { /// /// 标识 /// public int? Id { get; set; } /// /// 物料 /// public int? Material { get; set; } /// /// 料号 /// public string Code { get; set; } /// /// 物料名 /// public string Name { get; set; } /// /// 品类 /// public string Category { get; set; } /// /// 物料组 /// public string Group { get; set; } /// /// 库房 /// public string Warehouse { get; set; } /// /// 下限数量 /// public decimal? LowerLimit { get; set; } /// /// 上限数量 /// public decimal? UpperLimit { get; set; } /// /// 库存数量 /// public decimal? Quantity { get; set; } } }