namespace iWareLog.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("InOutStorageDetail")] public partial class InOutStorageDetail { public int id { get; set; } public int formplaceid { get; set; } [Required] [StringLength(20)] public string fromplacecode { get; set; } public int? toplaceid { get; set; } [StringLength(20)] public string toplacecode { get; set; } public DateTime createtime { get; set; } public DateTime? updatetime { get; set; } /// /// ÈÎÎñÀàÐÍ£¬Ã¶¾Ù EMainTaskType /// public int type { get; set; } public int? equipid { get; set; } [StringLength(50)] public string equipname { get; set; } public int? materialid { get; set; } [StringLength(50)] public string materialcode { get; set; } public int? isSendToMes { get; set; } public string isSendToMesStr { get; set; } public int? SendToMesCount { get; set; } public DateTime? SendToMesTime { get; set; } public string MesRet { get; set; } } }