14 lines
310 B
C#
Raw Normal View History

2025-01-13 21:06:59 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2025-01-14 14:51:07 +08:00
namespace YD_XinWei.Commons.Exceptions
2025-01-13 21:06:59 +08:00
{
public class CommonException
{
2025-01-14 14:51:07 +08:00
public string ErrorCode; // 错误编号 0001 0002 0033 0004
public string ErrorMsg;// 规范错误信息
public bool Success;
2025-01-13 21:06:59 +08:00
}
}