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; } } } }