using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 任务用户结算状态 /// public enum EnumTaskUserSettlementStatus { /// /// 待结算 /// Wait = 10, /// /// 结算中 /// InProcess = 20, /// /// 已结算 /// Completed = 30, /// /// 结算失败 /// Fail = 40 } }