using System; using System.Collections.Generic; using System.Linq; namespace Mesnac.Action.Compressor.entity { /// /// /// public class TBdSubstation { /// /// /// public int Id { get; set; } /// /// /// public int StationID { get; set; } /// /// /// public string StationCode { get; set; } /// /// /// public int? StationType { get; set; } /// /// /// public string MachineID { get; set; } /// /// /// public int? UniteID { get; set; } /// /// 客户现场实际code /// public string CustomerCode { get; set; } /// /// /// public string StationName { get; set; } /// /// /// public string ParentStationID { get; set; } /// /// /// public string ParentStationCode { get; set; } /// /// /// public string ParentStationName { get; set; } /// /// /// public string PreStationID { get; set; } /// /// /// public string PreStationCode { get; set; } /// /// /// public string Reamark { get; set; } /// /// /// public string UserID { get; set; } /// /// /// public DateTime? UpdateTime { get; set; } /// /// /// public string TableName { get; set; } /// /// /// public string IsSemi { get; set; } /// /// /// public string IsNGStation { get; set; } /// /// /// public string HaveData { get; set; } /// /// /// 默认值: ((1)) /// public string IsShow { get; set; } /// /// 是否有效,上位机使用该字段 /// public string UseFlag { get; set; } /// /// /// public int? ParaCount { get; set; } /// /// /// public int? OrderID { get; set; } /// /// /// public string LimitID { get; set; } /// /// /// public string ImageUrl { get; set; } /// /// /// public int? LineID { get; set; } /// /// PLC名称,在装备平台设备建立的,例如A1 /// public string PLCName { get; set; } /// /// PLC块号,地址区,例如500,指D500 /// public string PLCBlock { get; set; } } }