首检添加数据看板

This commit is contained in:
2024-06-07 11:04:26 +08:00
parent c93711290e
commit 769d2da1e0
344 changed files with 1772 additions and 2526 deletions

View File

@@ -1,26 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.wms
namespace ZR.Model.MES.wms
{
/// <summary>
/// 对接agv 第三方
/// </summary>
public class AGVtask_third
{
public string reqCode { get; set; }
public string msg {get; set; }
public string taskTyp { get; set; }
public string reqCode { get; set; }
public string msg { get; set; }
public string taskTyp { get; set; }
public List<AGV_location_third> positionCodePath { get; set; }
public string podDir { get; set; }
public string priority { get; set; }
public string podDir { get; set; }
public string priority { get; set; }
public string agvCode { get; set; }
}
public class AGV_location_third
public class AGV_location_third
{
public string positionCode { get; set; }
public string type { get; set; }
@@ -30,13 +24,13 @@ namespace ZR.Model.MES.wms
/// 生成任务单 第三方 返回值
/// </summary>
public class AGV_task_third
{
{
public string code { get; set;}
public string code { get; set; }
public string message { get; set;}
public string message { get; set; }
public string reqCode { get;set;}
public string reqCode { get; set; }
public string data { get; set; }
@@ -47,9 +41,9 @@ namespace ZR.Model.MES.wms
/// agv 取消任务
/// </summary>
public class AGVtask_cancel_third
{
public string reqCode { get; set;}
public string forceCancel { get; set;}
{
public string reqCode { get; set; }
public string forceCancel { get; set; }
public string taskCode { get; set; }
}