You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.2 KiB
90 lines
2.2 KiB
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Win_in.Sfs.Wms.Dashboard.Host.Models;
|
|
|
|
public class PlanAndActualDashboardDto
|
|
{
|
|
/// <summary>
|
|
/// 供应商名称
|
|
/// </summary>
|
|
[Display(Name = "供应商名称")]
|
|
public string SupplierName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 供应商简称
|
|
/// </summary>
|
|
[Display(Name = "供应商简称")]
|
|
public string SupplierShortName { get; set; }
|
|
|
|
/// <summary>
|
|
/// ERP料号
|
|
/// </summary>
|
|
[Display(Name = "ERP料号")]
|
|
public string ItemCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[Display(Name = "物料名称")]
|
|
public string ItemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料描述
|
|
/// </summary>
|
|
[Display(Name = "物料描述")]
|
|
public string ItemDesc1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已收发货单个数
|
|
/// </summary>
|
|
[Display(Name = "已收发货单个数")]
|
|
public decimal ReceiptNoteCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发货单总数
|
|
/// </summary>
|
|
[Display(Name = "发货单总数")]
|
|
public decimal SupplierAsnCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划发货物料数量
|
|
/// </summary>
|
|
[Display(Name = "发货物料数量")]
|
|
public decimal PlanArriveQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发货物料数量
|
|
/// </summary>
|
|
[Display(Name = "发货物料数量")]
|
|
public decimal ArriveQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收货物料数量
|
|
/// </summary>
|
|
[Display(Name = "收货物料数量")]
|
|
public decimal ReceiptQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 差异数 PlanArriveQty-ReceiptQty
|
|
/// </summary>
|
|
[Display(Name = "差异数")]
|
|
public decimal DifferQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上架物料数量
|
|
/// </summary>
|
|
[Display(Name = "上架物料数量")]
|
|
public decimal PutawayQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 高储数量
|
|
/// </summary>
|
|
[Display(Name = "高储数量")]
|
|
public decimal MaxQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 低储数量
|
|
/// </summary>
|
|
[Display(Name = "低储数量")]
|
|
public decimal MinQty { get; set; }
|
|
}
|
|
|