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.3 KiB
55 lines
1.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Win_in.Sfs.Wms.Dashboard.Host.Models;
|
|
|
|
public class MaterialRequestUnHandledOrderSumDto
|
|
{
|
|
[Display(Name = "总数")]
|
|
public decimal Sum { get; set; }
|
|
}
|
|
|
|
public class MaterialRequestUnIssuedItemQtySumDto
|
|
{
|
|
[Display(Name = "总数")]
|
|
public decimal Sum { get; set; }
|
|
}
|
|
|
|
public class MaterialRequestUnReceivedItemQtyByItemDto
|
|
{
|
|
[Display(Name = "ERP料号")]
|
|
public string ItemCode { get; set; }
|
|
|
|
[Display(Name = "总数")]
|
|
public decimal Sum { get; set; }
|
|
}
|
|
|
|
public class MaterialRequestItemQtyByReceivedStatusDto
|
|
{
|
|
[Display(Name = "收货状态")]
|
|
public string ReceivedStatus { get; set; }
|
|
|
|
[Display(Name = "总数")]
|
|
public decimal Sum { get; set; }
|
|
}
|
|
|
|
public class MaterialRequestUnReceivedItemDto
|
|
{
|
|
[Display(Name = "单据号")]
|
|
public string Number { get; set; }
|
|
|
|
[Display(Name = "ERP料号")]
|
|
public string ItemCode { get; set; }
|
|
|
|
[Display(Name = "物料描述")]
|
|
public string ItemDesc1 { get; set; }
|
|
|
|
[Display(Name = "箱码")]
|
|
public string PackingCode { get; set; }
|
|
|
|
[Display(Name = "发货数量")]
|
|
public decimal IssuedQty { get; set; }
|
|
|
|
[Display(Name = "发货时间")]
|
|
public DateTime IssuedTime { get; set; }
|
|
}
|
|
|