using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sugar.Enties { public enum CheckState { 待审 = 0, 审核中 = 1, 已审 = 2, 作废 = 3 } }