using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { public partial class PipeLine { /// /// 方向 /// public enum eDirection { /// /// 无 /// [Display(Name = "无")] None =-1, /// /// 正 /// [Display(Name = "正")] Positive =0, /// /// 反 /// [Display(Name = "反")] Negative =1, } } }