InitBasfTcc11
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user