using Furion.FriendlyException; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.User.Application { [ErrorCodeType] public enum EnumUserErrorCodeType { /// /// {0}不存在 /// [ErrorCodeItemMetadata("{0}不存在")] s100 = 100, /// /// 参数错误:{0} /// [ErrorCodeItemMetadata("参数错误:{0}")] s200 = 200, /// /// 账号或密码不存在 /// [ErrorCodeItemMetadata("账号或密码不存在")] u1000 = 1000, } }