using Admin.NET.Application;
|
using Admin.NET.Core;
|
|
/*
|
* @author : ly
|
* @date : 2024/5/10下午1:42:36
|
* @desc : 库龄报表
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 库龄报表-视图
|
/// </summary>
|
[MySugarTableViewAttribute("v_ware_age_warm", "库龄报表")]
|
public class v_ware_age_warm
|
{
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
|
|
public string MaterialName { get; set; }
|
|
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
|
|
public string MaterialCode { get; set; }
|
|
|
/// <summary>
|
/// 库位编码
|
/// </summary>
|
[SugarColumn(ColumnName = "PlaceCode", ColumnDescription = "库位编码", Length = 50)]
|
|
public string PlaceCode { get; set; }
|
|
/// <summary>
|
/// 跟踪码
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "SNCode", ColumnDescription = "跟踪码", Length = 255)]
|
|
public string SNCode { get; set; }
|
|
/// <summary>
|
/// 预警库龄
|
/// </summary>
|
|
[SugarColumn(ColumnName = "QualityAssurance", ColumnDescription = "预警库龄", Length = 10, DecimalDigits = 3)]
|
public decimal? QualityAssurance { get; set; }
|
|
/// <summary>
|
/// 库龄
|
/// </summary>
|
|
[SugarColumn(ColumnName = "WareAge", ColumnDescription = "库龄")]
|
public int? WareAge { get; set; }
|
|
|
/// <summary>
|
/// 超期天数
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OverDueDays", ColumnDescription = "超期天数", Length = 10, DecimalDigits = 3)]
|
public decimal? OverDueDays { get; set; }
|
|
|
|
/// <summary>
|
/// 入库时间
|
/// </summary>
|
|
[SugarColumn(ColumnName = "RecordInsertTime", ColumnDescription = "入库时间")]
|
public DateTime? RecordInsertTime { get; set; }
|
|
/// <summary>
|
/// 容器号
|
/// </summary>
|
public string? ContainerCode { get; set; }
|
|
/// <summary>
|
/// 库区
|
/// </summary>
|
public string? AreaName { get; set; }
|
}
|
}
|