wanshenmean
2026-03-13 0500b9903e5b7fcdbdc5b3bd0cc9b373779d64d8
Code/WCS/WIDESEAWCS_Server/WIDESEAWCS_Common/HttpEnum/ConfigKey.cs
@@ -1,27 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.HttpEnum
namespace WIDESEAWCS_Common.HttpEnum
{
    public enum ConfigKey
    {
        ERP_API_Base,
        ERP_API_Url,
        ERP_API_Timeout,
        WMS_API_Base,
        WMS_API_Url,
        WMS_API_Timeout,
        MES_API_Base,
        MES_API_Url,
        MES_API_Timeout,
        #region WMS接口
        /// <summary>
        /// 组盘
        /// </summary>
@@ -45,8 +27,38 @@
        /// <summary>
        /// 获取任务可入货位
        /// </summary>
        GetTasksLocation
        GetTasksLocation,
        #endregion
        /// <summary>
        /// 出库任务完成
        /// </summary>
        OutboundFinishTaskAsync,
        /// <summary>
        /// 入库任务完成
        /// </summary>
        InboundFinishTaskAsync,
        /// <summary>
        /// 创建空托盘出库任务
        /// </summary>
        GetOutBoundTrayTaskAsync,
        /// <summary>
        /// 创建空托盘入库任务
        /// </summary>
        CreateTaskInboundTrayAsync,
        /// <summary>
        /// 修改任务状态(根据任务ID修改为指定状态)
        /// </summary>
        UpdateTaskByStatus,
        /// <summary>
        /// 判断是否需要移库(根据任务号判断是否需要移库)
        /// </summary>
        TransferCheck,
        #endregion WMS接口
    }
}
}