namespace iWare_SCADA_Model.TableModelSC { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("ProgramInfo")] public partial class ProgramInfo { [Column(TypeName = "text")] public string mainPrgmName { get; set; } [Column(TypeName = "text")] public string runningPrgName { get; set; } [Column(TypeName = "text")] public string programSeqNum { get; set; } public DateTime? time { get; set; } [StringLength(64)] public string machineID { get; set; } public long id { get; set; } } }