namespace yunneiWCS.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("taskRecord")] public partial class taskRecord { [Key] public long recordId { get; set; } public long? taskId { get; set; } [StringLength(50)] public string sourcePlace { get; set; } [StringLength(50)] public string toPlace { get; set; } [StringLength(300)] public string taskInfo { get; set; } public DateTime? createTime { get; set; } [StringLength(100)] public string PlcTaskNo { get; set; } [StringLength(100)] public string AgvTaskNo { get; set; } } }