using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { [NoteAttribute("中_订单评价状态")] public enum EnumOrderCommentStatus { /// /// 待审核 /// [NoteAttribute("待审核")] UnCheck = 0, /// /// 审核中 /// [NoteAttribute("已审核")] Checked = 10, /// /// 不显示 /// [NoteAttribute("不显示")] UnShow = -10, } }