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 GroupProcessType { /// /// 商邀报批 /// [Description("商邀报批")] Invitation = 1, /// /// 签证 /// [Description("签证")] Visa = 2, /// /// 机票 /// [Description("机票")] AirTicket = 4, /// /// 酒店 /// [Description("酒店")] Hotel = 5, /// /// 地接 /// [Description("地接")] LocalGuide = 6, /// /// 费用结算 /// [Description("费用结算")] FeeSettle = 7 } /// /// 流程整体状态 /// 未开始/进行中/已完成 /// public enum ProcessStatus { /// /// 未开始 /// [Description("未开始")] UnStarted = 1, /// /// 进行中 /// [Description("进行中")] InProgress = 2, /// /// 已完成 /// [Description("已完成")] Completed = 3 } }