提交
This commit is contained in:
73
DOAN.Model/MES/Bigscreen/Dto/MaterialProgressDto.cs
Normal file
73
DOAN.Model/MES/Bigscreen/Dto/MaterialProgressDto.cs
Normal file
@@ -0,0 +1,73 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DOAN.Model.MES.bigscreen.Dto
|
||||
{
|
||||
public class MaterialProgressDto
|
||||
{
|
||||
|
||||
public DateTime Date { get; set; }
|
||||
/// <summary>
|
||||
/// 产线 code
|
||||
/// </summary>
|
||||
public string LineCode { get; set; }
|
||||
/// <summary>
|
||||
/// 产线 name
|
||||
/// </summary>
|
||||
public string LineName { get; set; }
|
||||
|
||||
|
||||
public List<MaterialInfo> materialInfos { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
public class MaterialProgressDto2
|
||||
{
|
||||
|
||||
public DateTime Date { get; set; }
|
||||
/// <summary>
|
||||
/// 产线 code
|
||||
/// </summary>
|
||||
public string LineCode { get; set; }
|
||||
/// <summary>
|
||||
/// 产线 name
|
||||
/// </summary>
|
||||
public string LineName { get; set; }
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
|
||||
|
||||
public decimal PlanNum { get; set; }
|
||||
|
||||
|
||||
public decimal ActualNum { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public class MaterialInfo
|
||||
{
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
|
||||
|
||||
public decimal PlanNum { get; set; }
|
||||
|
||||
|
||||
public decimal ActualNum { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user