namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("BASEMaterialType")] public partial class BASEMaterialType { public int id { get; set; } [Required] [StringLength(50)] public string name { get; set; } [StringLength(100)] public string remark { get; set; } public int type { get; set; } } }