namespace Admin.NET.Application;
///
/// 库龄报表输出参数
///
public class WareAgeWarmOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 物料编号
///
public string MaterialCode { get; set; }
///
/// 跟踪码
///
public string SNCode { get; set; }
///
/// 库位编码
///
public string PlaceCode { get; set; }
///
/// 预警库龄
///
public decimal? QualityAssurance { get; set; }
///
/// 库龄
///
public int? WareAge { get; set; }
///
/// 超期天数
///
public decimal? OverDueDays { get; set; }
///
/// 入库时间
///
public DateTime? RecordInsertTime { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 容器号
///
public string? ContainerCode { get; set; }
///
/// 库区
///
public string? AreaName { get; set; }
/////
///// 修改时间
/////
//public DateTime? UpdateTime { get; set; }
/////
///// 创建人Id
/////
//public long? CreateUserId { get; set; }
/////
///// 创建人
/////
//public string CreateUserName { get; set; }
/////
///// 修改人Id
/////
//public long? UpdateUserId { get; set; }
/////
///// 修改人
/////
//public string UpdateUserName { get; set; }
/////
///// 软删除
/////
//public bool IsDelete { get; set; }
}