using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.AExternalPlatform.Enum { /// /// 系统错误码 /// [ErrorCodeType] [Description("系统错误码")] public enum ErrorCodeEnum { /// /// 用户没有注册 /// [ErrorCodeItemMetadata("用户没有注册")] Code1000, /// /// 操作错误 /// [ErrorCodeItemMetadata("操作错误")] Code1001, /// /// 重复添加 /// [ErrorCodeItemMetadata("重复添加")] Code1002, /// /// 操作数据不存在 /// [ErrorCodeItemMetadata("操作数据不存在")] Code1003, /// /// key不正确 /// [ErrorCodeItemMetadata("key不正确")] Code1004, /// /// 签名错误 /// [ErrorCodeItemMetadata("签名错误")] Code1005, /// /// 签名错误 /// [ErrorCodeItemMetadata("签名过期")] Code1006, } }