using Admin.NET.Core.Util.LowCode.Dto;
using System;
namespace Admin.NET.Application
{
///
/// 控制属性规则明细输出参数
///
public class WmsControlRuleDetailOutput
{
///
/// 控制属性规则编号
///
public string RuleCode { get; set; }
///
/// 控制属性规则名称
///
public string RuleName { get; set; }
///
/// 最高库存
///
public decimal? MaxImumqty { get; set; }
///
/// 最低库存
///
public decimal? MinImumqty { get; set; }
///
/// 安全库存
///
public decimal? SafeImumqty { get; set; }
///
/// 最小库龄
///
public decimal? MinStorageAge { get; set; }
///
/// 最大库龄
///
public decimal? MaxStorageAge { get; set; }
///
/// 是否免检
///
public bool? IsNotChek { get; set; }
///
/// 保质期天数
///
public decimal? ShelfLifeDays { get; set; }
///
/// 是否禁用
///
public bool? IsDisabled { get; set; }
///
/// Id主键
///
public long? Id { get; set; }
///
/// 创建时间
///
public DateTimeOffset? CreatedTime { get; set; }
///
/// 更新时间
///
public DateTimeOffset? UpdatedTime { get; set; }
///
/// 创建者名称
///
public string CreatedUserName { get; set; }
///
/// 修改者名称
///
public string UpdatedUserName { get; set; }
}
}