namespace Admin.NET.Application;
///
/// 下架策略范围输出参数
///
public class WmsConfigUnshelveStrategyRangeOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 策略代码
///
public string StrategyCode { get; set; }
///
/// 物料编号
///
public string MaterialCode { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 单位
///
public string MaterialUnit { get; set; }
///
/// 创建人
///
public string CreateUserName { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 修改人
///
public string UpdateUserName { get; set; }
///
/// 修改时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建人Id
///
public long? CreateUserId { get; set; }
///
/// 修改人Id
///
public long? UpdateUserId { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}