123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- 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,
-
-
-
- [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,
- }
- }
|