mes集成增加MesCallResult

This commit is contained in:
liming 蔡
2026-07-14 16:09:25 +08:00
parent 5d2c7afb9c
commit 2ecfd549b3
12 changed files with 198 additions and 49 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JY.MES.Enum
{
public enum MesErrorType
{
None, // 无错误
NetworkError, // 网络错误(DNS、连接拒绝等)
NetworkTimeout, // 网络超时
BusinessError, // 业务错误(200但业务失败)
ParseError, // 响应解析失败
ClientError, // 客户端错误(400)
}
}