using System.Collections.Generic; namespace Kean.Application.Command.ViewModels { /// /// 安全库存视图 /// public sealed class Safety { /// /// 标识 /// public int Id { get; set; } /// /// 物料 /// public int Material { get; set; } /// /// 库房 /// public IEnumerable Warehouse { get; set; } /// /// 安全下限 /// public decimal? LowerLimit { get; set; } /// /// 安全上限 /// public decimal? UpperLimit { get; set; } } }