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