namespace iWareSql.Orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; /// /// ÉÏÁÏÐÅϢչʾ /// public partial class BoardLoadMaterialView { /// /// ÉÏÁϵ¥ºÅ /// public string TONumber { get; set; } [Required] [StringLength(50)] public string MatID { get; set; } [Required] [StringLength(100)] public string MatName { get; set; } public float Leng { get; set; } public float Width { get; set; } public float Thk { get; set; } /// /// ×îºóÒ»´ÎÈë¿âʱ¼ä /// public DateTime? LastModifyTime { get; set; } /// /// ÈÎÎñºÅ /// [StringLength(100)] public string TaskNo { get; set; } /// /// ÒÑÈë¿âÊýÁ¿ /// public int HasInStoreCount { get; set; } /// /// δÈë¿âÊýÁ¿ /// public int NoInStoreCount { get; set; } /// /// ¼Æ»®Èë¿â×ÜÊýÁ¿ /// public int PlanInStoreTotalCount { get; set; } } }