using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Enums
{
///
/// 团组流程
///
public enum GrpSchedulePrimaryStepEnum
{
///
/// 未开始/等待任务分配
///
[Description("未开始/等待任务分配")]
Wait = 0,
///
/// 确认出团/任务分配
///
[Description("确认出团/任务分配完成")]
Confirm = 1,
///
/// 经费预算
///
[Description("经费预算")]
Budget = 2,
///
/// 经费预算子流程01:完成经费预算
///
[Description("完成经费预算")]
BudgetChild01 = 201,
///
/// 经费预算自定义子流程:
///
BudgetChildCustom = 2011,
///
/// 市场部人员对接反馈
///
[Description("市场部人员对接反馈")]
Feedback = 3,
///
/// 报批流程
///
[Description("报批流程")]
Puote = 4,
///
/// 护照签证
///
[Description("护照签证")]
Visa = 5,
///
/// 业务流程
///
[Description("业务操作")]
Business = 6,
///
/// 费用审批
///
[Description("费用审批")]
CostAudit = 7,
///
/// 付款给供应商
///
[Description("付款给供应商")]
Pay = 8,
///
/// 出行事项会议
///
[Description("出行事项会议")]
Training = 9,
///
/// 送机
///
[Description("送机")]
DropOff = 10,
///
/// 接机
///
[Description("接机")]
PickUp = 11,
///
/// 收款
///
[Description("收款")]
Collect = 12,
///
/// 团组完成
///
[Description("团组完成")]
Finish = 13,
///
/// 团组取消
///
[Description("团组取消")]
Cancel = 14,
}
}