namespace iWareLog.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("COUNTStackerReport")] public partial class COUNTStackerReport { public int id { get; set; } [Required] [StringLength(50)] public string name { get; set; } public int status { get; set; } public DateTime? createtime { get; set; } public DateTime? finishtime { get; set; } public int isfinished { get; set; } } }