chore: initial commit
This commit is contained in:
56
Interface_WebAPI/SlMesDbIterface/MOM_Upload/JobStart.cs
Normal file
56
Interface_WebAPI/SlMesDbIterface/MOM_Upload/JobStart.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Linq;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
/// <summary>
|
||||
/// 开工
|
||||
/// </summary>
|
||||
|
||||
public class JobStart
|
||||
{
|
||||
/// <summary>
|
||||
/// 派工单ID
|
||||
/// </summary>
|
||||
public string orderID { get; set; }
|
||||
/// <summary>
|
||||
/// 派工任务ID
|
||||
/// </summary>
|
||||
public string taskID { get; set; }
|
||||
/// <summary>
|
||||
/// 工序ID
|
||||
/// </summary>
|
||||
public string processId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作时间
|
||||
/// </summary>
|
||||
public string operationTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作人
|
||||
/// </summary>
|
||||
[JsonProperty("operator")]
|
||||
public string operatorName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public string createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 最后修改时间
|
||||
/// </summary>
|
||||
public string lastModifiedTime { get; set; }
|
||||
/// <summary>
|
||||
/// 操作:0取消开工,1开工
|
||||
/// </summary>
|
||||
public string operation { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user