using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application { public enum PayStatusEnum { /// /// 已取消 /// [Description("已取消")] Cancel = 0, /// /// 未成功 /// [Description("未成功")] NotPaying = 10, /// /// 已成功 /// [Description("已成功")] Paying = 20 } }