InitBasfTcc11

This commit is contained in:
2024-05-08 16:27:28 +08:00
commit f1000143a0
3754 changed files with 382456 additions and 0 deletions
+59
View File
@@ -0,0 +1,59 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 工作量查询项
/// </summary>
public class WorkloadItem
{
/// <summary>
/// 项目号
/// </summary>
public string ProjectCode
{
get;
set;
}
/// <summary>
/// 预估或委托数量
/// </summary>
public string TotalNum
{
get;
set;
}
/// <summary>
/// 完成或拍片焊口
/// </summary>
public string FinishedNum
{
get;
set;
}
/// <summary>
/// 剩余或积压焊口
/// </summary>
public string RemainNum
{
get;
set;
}
/// <summary>
/// 最近一周完成或检测焊口
/// </summary>
public string LateOneWeekNum
{
get;
set;
}
}
}