namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("BASEMaterialVoidLabel")] public partial class BASEMaterialVoidLabel { public int id { get; set; } public int materialid { get; set; } public int voidlabel { get; set; } public int quantity { get; set; } public int type { get; set; } [StringLength(50)] public string remark { get; set; } public int orderid { get; set; } public virtual BASEMaterial BASEMaterial { get; set; } } }