Blame view

netcore/src/Modularity/Extend/NCC.Extend.Entitys/Enums/UavOrderStatusEnum.cs 971 Bytes
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  using System.ComponentModel;
  
  namespace NCC.Extend.Entitys;
  
  public enum UavOrderStatusEnum
  {
      /// <summary>
      /// 待付款
      /// </summary>
      [Description("待付款")]
      待付款 = 1,
  
      /// <summary>
      /// 已租接
      /// </summary>
      [Description("已租接")]
      已租接 = 2,
  
      /// <summary>
      /// 已完成
      /// </summary>
      [Description("已完成")]
      已完成 = 3,
  
      /// <summary>
      /// 已取消
      /// </summary>
      [Description("已取消")]
      已取消 = 4,
  
      /// <summary>
      /// 已退款
      /// </summary>
      [Description("已退款")]
      已退款 = 5,
  
      /// <summary>
      /// 超时未付款
      /// </summary>
      [Description("超时未付款")]
      超时未付款 = 6,
  
      /// <summary>
      /// 归还中
      /// </summary>
      [Description("归还中")]
      归还中 = 7,
  
      /// <summary>
      /// 订单异常
      /// </summary>
      [Description("订单异常")]
      订单异常 = 10,
  }