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.
55 lines
1.2 KiB
55 lines
1.2 KiB
2 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.Dashboard.Host.Models;
|
||
|
|
||
|
public class PurchaseReceiptSumQtyDashboardDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
[Display(Name = "数量")]
|
||
|
public decimal Qty { get; set; }
|
||
|
}
|
||
|
|
||
|
public class PurchaseReceiptCountBySupplierDashboardDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 供应商简称
|
||
|
/// </summary>
|
||
|
[Display(Name = "供应商简称")]
|
||
|
public string SupplierShortName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
[Display(Name = "数量")]
|
||
|
public decimal Qty { get; set; }
|
||
|
}
|
||
|
|
||
|
public class PurchaseReceiptItemDashboardDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 供应商简称
|
||
|
/// </summary>
|
||
|
[Display(Name = "供应商简称")]
|
||
|
public string SupplierShortName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[Display(Name = "物料号")]
|
||
|
public string ItemCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料描述
|
||
|
/// </summary>
|
||
|
[Display(Name = "物料描述")]
|
||
|
public string ItemDesc1 { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
[Display(Name = "数量")]
|
||
|
public decimal Qty { get; set; }
|
||
|
}
|