山东雷驰
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
763 B

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