1、修改文件结构
2、删除不使用的 using
This commit is contained in:
parent
610de3343b
commit
03c600bc70
|
|
@ -1,10 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CirculateTool.Attribute;
|
||||
namespace CirculateTool.Attribute;
|
||||
|
||||
/// <summary>
|
||||
/// 在指定时间执行的任务
|
||||
|
|
|
|||
|
|
@ -1,10 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CirculateTool.Entity;
|
||||
namespace CirculateTool.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 按时执行的任务的定时类
|
||||
|
|
|
|||
|
|
@ -1,10 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LedSimple;
|
||||
namespace LedSimple;
|
||||
|
||||
public enum LEDColor
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text;
|
||||
|
||||
namespace PlcTool.Siemens.Entity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
using ApiTool;
|
||||
using WcsMain.Business.CommonAction;
|
||||
using WcsMain.ApiClient.General;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Plugins;
|
||||
namespace WcsMain.ApiClient.AGV;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// AGV 接口工具
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class AGVWebApiPost : WebApiPost
|
||||
public class AGVBaseWebApi : WebApiPost
|
||||
{
|
||||
public AGVWebApiPost(ApiResponseAction apiResponseAction)
|
||||
public AGVBaseWebApi(ApiResponseAction apiResponseAction)
|
||||
{
|
||||
SetResponseAction(apiResponseAction.ApiResponse);
|
||||
SetBaseUrl(CommonData.AppApiBaseInfos.GetAddress("AGVBaseApiAddress") ?? "");
|
||||
|
|
@ -1,18 +1,17 @@
|
|||
using WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
using WcsMain.ApiClient.AGV.Dto;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.Constant;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.Plugins;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Business.AGV;
|
||||
namespace WcsMain.ApiClient.AGV;
|
||||
|
||||
/// <summary>
|
||||
/// AGV 动作
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class AGVAction(AGVWebApiPost webApiPost)
|
||||
public class AGVWebApiAction(AGVBaseWebApi webApiPost)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
namespace WcsMain.ApiClient.AGV.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// AGV 点对点货架搬运
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
namespace WcsMain.ApiClient.AGV.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// AGV 接口请求数据格式
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
namespace WcsMain.ApiClient.AGV.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// AGV 接口响应数据模板类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
namespace WcsMain.ApiClient.AGV.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 向 AGV 发送任务模板数据
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
namespace WcsMain.ApiClient.AGV.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 给AGV发送任务的返回类
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
using ApiTool.Dto;
|
||||
using LogTool;
|
||||
using WcsMain.Common.DataService;
|
||||
using WcsMain.DataBase.Dao;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.DataService;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Business.CommonAction;
|
||||
namespace WcsMain.ApiClient.General;
|
||||
|
||||
/// <summary>
|
||||
/// 接口响应触发事件
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
namespace WcsMain.ApiClient.DataEntity.ContainerEntity;
|
||||
namespace WcsMain.ApiClient.Shuttle.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车库的响应
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
namespace WcsMain.ApiClient.DataEntity.ContainerEntity;
|
||||
namespace WcsMain.ApiClient.Shuttle.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车库出库移库请求
|
||||
|
|
@ -1,18 +1,18 @@
|
|||
using ApiTool;
|
||||
using WcsMain.Business.CommonAction;
|
||||
using WcsMain.ApiClient.General;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Plugins;
|
||||
namespace WcsMain.ApiClient.Shuttle;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车库接口请求
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class ContainerWebApiPost : WebApiPost
|
||||
public class ShuttleBaseWebApi : WebApiPost
|
||||
{
|
||||
public ContainerWebApiPost(ApiResponseAction apiResponseAction)
|
||||
public ShuttleBaseWebApi(ApiResponseAction apiResponseAction)
|
||||
{
|
||||
SetResponseAction(apiResponseAction.ApiResponse);
|
||||
SetBaseUrl(CommonData.AppApiBaseInfos.GetAddress("ContainerBaseApiAddress") ?? "");
|
||||
|
|
@ -1,17 +1,16 @@
|
|||
using WcsMain.ApiClient.DataEntity.ContainerEntity;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.Plugins;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.ApiClient.Shuttle.Dto;
|
||||
|
||||
namespace WcsMain.Business.Container;
|
||||
namespace WcsMain.ApiClient.Shuttle;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车库
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class ContainerAction(ContainerWebApiPost webApiPost)
|
||||
public class ShuttleWebApiAction(ShuttleBaseWebApi webApiPost)
|
||||
{
|
||||
/// <summary>
|
||||
/// 四向车库执行移库任务
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 申请入库
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 电子标签确认按钮按下请求数据
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
public class RequestBackRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 发送WMS任务状态请求实体
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 上传箱子到达拣选口的请求类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 上传堆垛机是否报错的请求实体
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
namespace WcsMain.ApiClient.WMS.Dto;
|
||||
|
||||
public class WmsResponse
|
||||
{
|
||||
|
|
@ -1,19 +1,18 @@
|
|||
using WcsMain.ApiClient.DataEntity.WmsEntity;
|
||||
using WcsMain.ApiClient.WMS.Dto;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.Constant.Enum;
|
||||
using WcsMain.DataBase.Dao;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.Enum;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.Plugins;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Business.CommonAction;
|
||||
namespace WcsMain.ApiClient.WMS;
|
||||
|
||||
/// <summary>
|
||||
/// 用于发送WMS任务状态的类
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApiPost)
|
||||
public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsBaseWebApi wmsWebApiPost)
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -24,7 +23,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="count"></param>
|
||||
public void SendTaskErr(string? taskId, string? errMsg, ushort count = 5)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
AppWmsTask? wmsTask = default;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
|
@ -82,7 +82,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="count"></param>
|
||||
public void SendTaskEmptyOut(string? taskId, ushort count = 5)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
AppWmsTask? wmsTask = default;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
|
@ -140,7 +141,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="count"></param>
|
||||
public void SendTaskDoubleIn(string? taskId, ushort count = 5)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
AppWmsTask? wmsTask = default;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
|
@ -199,7 +201,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="count"></param>
|
||||
public void SendTaskStart(string? taskId, ushort count = 5)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
AppWmsTask? wmsTask = default;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
|
@ -258,7 +261,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="destination"></param>
|
||||
public void SendTaskComplete(string? taskId, ushort count = 5, string? destination = default)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
AppWmsTask? wmsTask = default;
|
||||
for (int i = 0; i < count; i++)
|
||||
{
|
||||
|
|
@ -316,7 +320,8 @@ public class SendWmsTaskStatus(AppWmsTaskDao wmsTaskDao, WmsWebApiPost wmsWebApi
|
|||
/// <param name="count"></param>
|
||||
public void SendTaskLeaveStart(AppWmsTask wmsTask, int count = 5)
|
||||
{
|
||||
Task.Factory.StartNew(() => {
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
if (wmsTask == default) { return; }
|
||||
SendWmsTaskStatusRequest request = new()
|
||||
{
|
||||
|
|
@ -1,20 +1,18 @@
|
|||
using ApiTool;
|
||||
using WcsMain.Business.CommonAction;
|
||||
using WcsMain.ApiClient.General;
|
||||
using WcsMain.Common;
|
||||
using WcsMain.DataBase.Dao;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.ExtendMethod;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.Plugins;
|
||||
namespace WcsMain.ApiClient.WMS;
|
||||
|
||||
/// <summary>
|
||||
/// Wms 的API工具
|
||||
/// </summary>
|
||||
[Component]
|
||||
public class WmsWebApiPost : WebApiPost
|
||||
public class WmsBaseWebApi : WebApiPost
|
||||
{
|
||||
public WmsWebApiPost(ApiResponseAction wmsApiResponseAction)
|
||||
public WmsBaseWebApi(ApiResponseAction wmsApiResponseAction)
|
||||
{
|
||||
SetResponseAction(wmsApiResponseAction.ApiResponse);
|
||||
SetBaseUrl(CommonData.AppApiBaseInfos.GetAddress("WmsBaseApiAddress") ?? "");
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
using Newtonsoft.Json;
|
||||
using WcsMain.Common.DataService;
|
||||
using WcsMain.DataBase.Dao;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.DataService;
|
||||
using WcsMain.WcsAttribute.AutoFacAttribute;
|
||||
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
||||
|
||||
namespace WcsMain.ApiServe.ControllerFilter;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
|
||||
namespace WcsMain.ApiServe.ControllerFilter;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.Filters;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity;
|
||||
|
||||
namespace WcsMain.ApiServe.ControllerFilter;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiClient.DataEntity.AGVEntity;
|
||||
using WcsMain.ApiClient.AGV.Dto;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto.AGV;
|
||||
using WcsMain.ApiServe.Dto.AGV;
|
||||
using WcsMain.ApiServe.Service.AGVService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.AGVController;
|
||||
|
|
@ -20,7 +20,7 @@ public class AGVController(AGVService agvService) : ControllerBase
|
|||
/// <param name="request"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost("taskCallBack")]
|
||||
public AGVResponseLayout<AGVResponseLayout<object>> TaskCallBack(Dto.AGV.AGVRequestLayout<AGVRequestBodyLayout<AGVNoVeBuckMoveRequest>> request) => agvService.TaskCallBack(request);
|
||||
public AGVResponseLayout<AGVResponseLayout<object>> TaskCallBack(ApiServe.Dto.AGV.AGVRequestLayout<AGVRequestBodyLayout<AGVNoVeBuckMoveRequest>> request) => agvService.TaskCallBack(request);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto.Container;
|
||||
using WcsMain.ApiServe.Dto.Container;
|
||||
using WcsMain.ApiServe.Service.ContainerService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.ContainerController;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Service.TreeDService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.ApiAccept;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.ApiAccept;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.ApiRequest;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.ApiRequest;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Config;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Config;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Convey;
|
||||
using WcsMain.ApiServe.Factory;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Convey;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.Equipment;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Equipment;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.Equipment;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Equipment;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WcsController;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Location;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Location;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Menu;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Menu;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.PLC;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.PLC;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.DB;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.DB;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.SystemController;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.SystemController;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WcsController;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Scan;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Scan;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Settings;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Settings;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Socket;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Socket;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.Stacker;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.Stacker;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.StackerConvey;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.StackerConvey;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WcsController;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.User;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.User;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.UserGroup;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.UserGroup;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.UserRule;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.UserRule;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.WcsTask;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.WcsTask;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.ControllerFilter.ExceptionFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.WmsTask;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
using WcsMain.ApiServe.Dto;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.WmsTask;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
using WcsMain.ApiServe.Service.WcsService;
|
||||
using WcsMain.DataBase.TableEntity;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity.Convey;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity.Convey;
|
||||
using WcsMain.ApiServe.Service.WmsService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WmsController;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity.ElTag;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity.ElTag;
|
||||
using WcsMain.ApiServe.Service.WmsService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WmsController;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment;
|
||||
using WcsMain.ApiServe.Service.WmsService;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity.Equipment;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WmsController
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.AspNetCore.Mvc;
|
||||
using WcsMain.ApiServe.ControllerFilter;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
using WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity;
|
||||
using WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
using WcsMain.ApiServe.Service.WmsService;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.WmsController;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.AGV;
|
||||
namespace WcsMain.ApiServe.Dto.AGV;
|
||||
|
||||
public class AGVNoVeBuckMoveRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.AGV;
|
||||
namespace WcsMain.ApiServe.Dto.AGV;
|
||||
|
||||
/// <summary>
|
||||
/// AGV 回告任务状态的模板
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.AGV;
|
||||
namespace WcsMain.ApiServe.Dto.AGV;
|
||||
|
||||
/// <summary>
|
||||
/// 接收AGV请求的实体
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Container;
|
||||
namespace WcsMain.ApiServe.Dto.Container;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车请求入库任务的请求类
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Container;
|
||||
namespace WcsMain.ApiServe.Dto.Container;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车请求任务的返回类
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using Newtonsoft.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Container;
|
||||
namespace WcsMain.ApiServe.Dto.Container;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车任务回告请求类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Container;
|
||||
namespace WcsMain.ApiServe.Dto.Container;
|
||||
|
||||
/// <summary>
|
||||
/// 四向车反馈任务状态的响应类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Equipment;
|
||||
namespace WcsMain.ApiServe.Dto.Equipment;
|
||||
|
||||
/// <summary>
|
||||
/// 输送设备信息 ---- 卡特专用
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Equipment;
|
||||
namespace WcsMain.ApiServe.Dto.Equipment;
|
||||
|
||||
/// <summary>
|
||||
/// 拣选站台信息
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.Equipment;
|
||||
namespace WcsMain.ApiServe.Dto.Equipment;
|
||||
|
||||
/// <summary>
|
||||
/// 堆垛机状态返回实体类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Convey;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.Convey;
|
||||
|
||||
public class DisposeVehicleRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Convey;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.Convey;
|
||||
|
||||
public class GetConveyTaskRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.ElTag;
|
||||
|
||||
public class GetElTagTaskRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.Equipment
|
||||
{
|
||||
public class QueryStandStatusRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.Equipment
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.Equipment
|
||||
{
|
||||
public class QueryStandStatusResponse
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity;
|
||||
|
||||
/// <summary>
|
||||
/// WMS的固定返回类
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
|
||||
/// <summary>
|
||||
/// wms 推送站台拣选完成
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
|
||||
/// <summary>
|
||||
/// SetStackerTask 接口的请求类
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
|
||||
/// <summary>
|
||||
/// SetPickTask 接口的请求实体类
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using DataCheck;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WMSEntity.WmsTask;
|
||||
namespace WcsMain.ApiServe.Dto.WMSEntity.WmsTask;
|
||||
|
||||
/// <summary>
|
||||
/// UpdateStackerTaskStatus 接口的请求类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto;
|
||||
namespace WcsMain.ApiServe.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// Api统一回复类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ApiAccept;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ApiAccept;
|
||||
|
||||
public class GetApiAcceptWithPageRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ApiRequest;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ApiRequest;
|
||||
|
||||
public class GetApiRequestWithPageRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Config;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Config;
|
||||
|
||||
public class EditeConfigRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Config;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Config;
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Convey;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Convey;
|
||||
|
||||
public class QueryConveyTaskWithPageRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.CusPickTask;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.CusPickTask;
|
||||
|
||||
public class UpdatePickTaskRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.DB;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.DB;
|
||||
|
||||
public class EditeDBRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.DB;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.DB;
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.DB;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.DB;
|
||||
|
||||
/// <summary>
|
||||
/// 返回PLCDB块同时返回 PLC名称的响应实体
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class AddTaskInfoRequest
|
||||
{
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
using DataCheck;
|
||||
using SqlSugar;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class EditTaskInfoRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class GetStackerTaskNewDestinationRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class QueryLocationWithPageRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class QueryTaskRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.ElTag;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.ElTag;
|
||||
|
||||
public class ShowNumRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Equipment;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Equipment;
|
||||
|
||||
public class ResetStackerRequest
|
||||
{
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
using DataCheck;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Equipment;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Equipment;
|
||||
|
||||
public class StackerContinueRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Location;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Location;
|
||||
|
||||
/// <summary>
|
||||
/// GetLocationWithPage 接口请求类
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Location;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Location;
|
||||
|
||||
public class UpdateLocationRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Menu;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Menu;
|
||||
|
||||
public class AddMenuRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Menu;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Menu;
|
||||
|
||||
public class GetMenuWithPageRequest
|
||||
{
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace WcsMain.ApiServe.Controllers.Dto.WcsDto.Menu;
|
||||
namespace WcsMain.ApiServe.Dto.WcsDto.Menu;
|
||||
|
||||
public class UpdateMenuRequest
|
||||
{
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user