using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Antis.Pay.Core.Enum { /// /// 业务返回code /// public enum EnumBizCode { /// /// 成功 /// Success = 1000, /// /// 失败 /// Failed } }