using SqlSugar;
namespace WMS.BZModels.Dto.KLHC
{
///
/// 江景缓存信息
///
public class RbciDto
{
///
/// 轮子类型
///
public string WheelType { get; set; }
///
/// 当前类型工字轮的缓存数量
///
public int Number { get; set; }
///
/// 方向
///
[SugarColumn(IsNullable = true)]
public string Direction { get; set; }
///
/// 上限警戒值
///
public int UpperLimitWarningValue { get; set; }
///
/// 下限警戒值
///
public int LowerLimitWarningValue { get; set; }
}
}