using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { [NoteAttribute("品质退款审核_中")] public enum EnumProQualityRefundStatus { /// /// 初始待处理 /// [NoteAttribute("待处理")] Pending = 0, /// /// 审核通过 /// [NoteAttribute("工程通过")] EngineeringPass = 1, /// /// 审核不通过 /// [NoteAttribute("工程不通过")] EngineeringNoPass = 2, /// /// 已补料 /// [NoteAttribute("已补料")] KeFuFeed = 3, /// /// 发起退款 /// [NoteAttribute("发起退款")] KeFuRefund = 4, /// /// 已退款 /// [NoteAttribute("已退款")] RefundPass = 5, /// /// 退款未通过 /// [NoteAttribute("退款未通过")] RefundNoPass = 6, /// /// 退款审核通过 /// [NoteAttribute("审核通过")] RefundReview = 7, /// /// 退款审核未通过 /// [NoteAttribute("审核未通过")] RefundNoReview = 8, } }