Files
T-DAS/Epost.Model/AgvReqModel.cs

175 lines
5.3 KiB
C#
Raw Normal View History

2024-11-22 15:31:46 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
2024-11-23 20:47:14 +08:00
2024-11-22 15:31:46 +08:00
#region
public class AgvSchedulingTaskModel
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public string taskTyp { get; set; }
public string ctnrTyp { get; set; }
public string ctnrCode { get; set; }
public string ctnrNum { get; set; }
public string taskMode { get; set; }
public string wbCode { get; set; }
public List<Positioncodepath> positionCodePath { get; set; }
public string podCode { get; set; }
public string podDir { get; set; }
public string podTyp { get; set; }
public string materialLot { get; set; }
public string materialType { get; set; }
public string priority { get; set; }
public string agvCode { get; set; }
public string taskCode { get; set; }
public string groupId { get; set; }
public string agvTyp { get; set; }
public string positionSelStrategy { get; set; }
public string data { get; set; }
}
public class Positioncodepath
{
public string positionCode { get; set; }
public string type { get; set; }
}
public class AgvResultModel
{
public string code { get; set; }
public string data { get; set; }
public string message { get; set; }
public string reqCode { get; set; }
}
#endregion
#region
public class cancelTaskModel
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public string forceCancel { get; set; }
public string matterArea { get; set; }
public string agvCode { get; set; }
public string taskCode { get; set; }
}
#endregion
#region
2024-11-23 20:47:14 +08:00
2024-11-22 15:31:46 +08:00
public class agvCallbackModel
{
2024-11-23 20:47:14 +08:00
public string action { get; set; }
public string areaCode { get; set; }
public string berthCode { get; set; }
public string callCode { get; set; }
public string callTyp { get; set; }
public string clientCode { get; set; }
public float cooX { get; set; }
public float cooY { get; set; }
public string ctnrCode { get; set; }
public string ctnrTyp { get; set; }
public string currentCallCode { get; set; }
2024-11-22 15:31:46 +08:00
public string currentPositionCode { get; set; }
2024-11-23 20:47:14 +08:00
public Data data { get; set; }
public string dstBinCode { get; set; }
public string eqpCode { get; set; }
public string indBind { get; set; }
public string layer { get; set; }
2024-11-22 15:31:46 +08:00
public string mapCode { get; set; }
public string mapDataCode { get; set; }
2024-11-23 20:47:14 +08:00
public string mapShortName { get; set; }
public string materialLot { get; set; }
public string materialType { get; set; }
2024-11-22 15:31:46 +08:00
public string method { get; set; }
2024-11-23 20:47:14 +08:00
public string orgCode { get; set; }
2024-11-22 15:31:46 +08:00
public string podCode { get; set; }
public string podDir { get; set; }
2024-11-23 20:47:14 +08:00
public string podNum { get; set; }
public string podTyp { get; set; }
public string relatedArea { get; set; }
public string reqCode { get; set; }
public string reqTime { get; set; }
public string roadWayCode { get; set; }
2024-11-22 15:31:46 +08:00
public string robotCode { get; set; }
2024-11-23 20:47:14 +08:00
public string seq { get; set; }
public string stgBinCode { get; set; }
public string subTaskNum { get; set; }
2024-11-22 15:31:46 +08:00
public string taskCode { get; set; }
2024-11-23 20:47:14 +08:00
public string taskTyp { get; set; }
public string tokenCode { get; set; }
public string username { get; set; }
2024-11-22 15:31:46 +08:00
public string wbCode { get; set; }
2024-11-23 20:47:14 +08:00
public string whCode { get; set; }
2024-11-22 15:31:46 +08:00
}
2024-11-23 20:47:14 +08:00
public class Data
{
}
2024-12-03 10:55:54 +08:00
#endregion
#region
public class bindCtnrAndBinReq
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public string ctnrCode { get; set; }
public string ctnrTyp { get; set; }
public string stgBinCode { get; set; }
public string positionCode { get; set; }
public string indBind { get; set; }
}
public class bindCtnrAndBinResponse
{
public string code { get; set; }
public string data { get; set; }
public bool interrupt { get; set; }
public string reqCode { get; set; }
}
#endregion
#region
public class warnCallbackReq
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public List<warnCallbackData> data { get; set; }
}
public class warnCallbackData
{
public string robotCode { get; set; }
public string beginDate { get; set; }
public string warnContent { get; set; }
public string taskCode { get; set; }
}
2024-11-22 15:31:46 +08:00
#endregion
}