chore: initial commit
This commit is contained in:
42
Interface_WebAPI/SlMesDbIterface/MOM_Upload/taskFinish.cs
Normal file
42
Interface_WebAPI/SlMesDbIterface/MOM_Upload/taskFinish.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务完工与工时汇报
|
||||
/// </summary>
|
||||
|
||||
public class TaskFinish
|
||||
{
|
||||
/// <summary>
|
||||
/// 派工单ID
|
||||
/// </summary>
|
||||
public string orderID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 派工任务ID
|
||||
/// </summary>
|
||||
public string taskID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 员工
|
||||
/// </summary>
|
||||
public string employee { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public int quantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工时
|
||||
/// </summary>
|
||||
public int workingHours { get; set; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user