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