chore: initial commit
This commit is contained in:
27
Interface_WebAPI/SlMesDbIterface/MOM/AGV_InterAction.cs
Normal file
27
Interface_WebAPI/SlMesDbIterface/MOM/AGV_InterAction.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
public class AGV_InterAction
|
||||
{
|
||||
//"{
|
||||
//""LocationCode"": ""位置编号"",
|
||||
//""TaskCode"": ""配送任务号"",
|
||||
//""deliveryType"": ""配送类型"",
|
||||
//""ReqCMD"": ""请求标识""
|
||||
//}"
|
||||
|
||||
[JsonProperty("LocationCode")]
|
||||
public string LocationCode { get; set; } // 位置编号
|
||||
|
||||
[JsonProperty("TaskCode")]
|
||||
public string TaskCode { get; set; } // 配送任务号
|
||||
|
||||
[JsonProperty("deliveryType")]
|
||||
public string DeliveryType { get; set; } // 配送类型
|
||||
|
||||
[JsonProperty("ReqCMD")]
|
||||
public string ReqCMD { get; set; } // 请求标识
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user