using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { [NoteAttribute("缺数管理_中")] public enum EnumProFeedOutputRelatedStatus { /// /// 初始待处理 /// [NoteAttribute("待处理")] Pending = 0, /// /// 补料 /// [NoteAttribute("补料")] FeedingNoRefund = 1, /// /// 退款 /// [NoteAttribute("退款")] NoFeedingRefund = 2, /// /// 不补料不退款 /// [NoteAttribute("不补料不退款")] NoFeedingNoRefund = 3, /// /// 补料待审核 /// [NoteAttribute("补料待审核")] FeedingNoRefundWaitReview = 4, /// /// 退款待审核 /// [NoteAttribute("退款待审核")] NoFeedingRefundWaitReview = 5, /// /// 不通过审核 /// [NoteAttribute("不通过审核")] NoReviewPass = 6, } }