using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 任务结算状态 /// public enum EnumTaskCheckReceiveStatus { /// /// 待验收 /// Wait = 10, /// /// 已验收 /// Completed = 30 } }