yzh
2022-06-30 ba73ec7987459b7bc5710798e8b4989cfe0e13a2
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
 
namespace Model
{
  public class GwMoRoute
  {
    public int RouteID { get; set; }
 
    public int Priority { get; set; }
 
    public int OpID { get; set; }
 
    public string AccessCode { get; set; }
 
    public string SpID { get; set; }
 
    public int IsManual { get; set; }
 
    public string PriorityName
    {
      get
      {
        string str = "";
        if (this.Priority == -1)
          str = "低";
        if (this.Priority == -2)
          str = "最低";
        if (this.Priority == 0)
          str = "普通";
        if (this.Priority == 1)
          str = "高";
        if (this.Priority == 2)
          str = "最高";
        return str;
      }
    }
  }
}