You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
#region << 版 本 注 释 >>
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
|
|
* 版权所有 (c) 2026 WenJY 保留所有权利。
|
|
|
|
|
|
* CLR版本:4.0.30319.42000
|
|
|
|
|
|
* 机器名称:T14-GEN3-7895
|
|
|
|
|
|
* 命名空间:Sln.Wcs.Api.Domain.Enum
|
|
|
|
|
|
* 唯一标识:7d0a31f2-ad5a-475d-97a3-f3c124bdb776
|
|
|
|
|
|
*
|
|
|
|
|
|
* 创建者:WenJY
|
|
|
|
|
|
* 电子邮箱:
|
|
|
|
|
|
* 创建时间:2026-02-25 10:09:13
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
* 描述:
|
|
|
|
|
|
*
|
|
|
|
|
|
*--------------------------------------------------------------------
|
|
|
|
|
|
* 修改人:
|
|
|
|
|
|
* 时间:
|
|
|
|
|
|
* 修改说明:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
*--------------------------------------------------------------------*/
|
|
|
|
|
|
#endregion << 版 本 注 释 >>
|
|
|
|
|
|
namespace Sln.Wcs.Api.Domain.Enum
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum ApiBaseStatusEnum
|
|
|
|
|
|
{
|
|
|
|
|
|
成功 = 0,
|
|
|
|
|
|
参数相关的错误 = 1,
|
|
|
|
|
|
重复发送上层系统不需要重发 = 6,
|
|
|
|
|
|
其他未知错误调用失败后可以重试 = 99,
|
|
|
|
|
|
该任务不存在上层系统不需重发需要人工介入处理=100,
|
|
|
|
|
|
调度逻辑处理异常=101,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|