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