23 lines
676 B
C#
23 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class Tw_ArrivalStatisticsOutPut
|
|
{
|
|
public string MaterialCode { get; set; }
|
|
public string MaterialName { get; set; }
|
|
public string MaterialSpec { get; set; }
|
|
public string MaterialUnit { get; set; }
|
|
public string MaterialDef { get; set; }
|
|
public decimal StockNum { get; set; }
|
|
public decimal NeedNum { get; set; }
|
|
public decimal RealNum { get; set; }
|
|
public decimal MatchRate { get; set; }
|
|
public string MatchRateString { get; set; }
|
|
}
|
|
}
|