//------------------------------------------------------------------------------ // // 這個程式碼是由範本產生。 // // 對這個檔案進行手動變更可能導致您的應用程式產生未預期的行為。 // 如果重新產生程式碼,將會覆寫對這個檔案的手動變更。 // //------------------------------------------------------------------------------ namespace Entity1 { using System; using System.Collections.Generic; public partial class 產品資料 { public int 產品編號 { get; set; } public string 產品 { get; set; } public Nullable 供應商編號 { get; set; } public Nullable 類別編號 { get; set; } public string 單位數量 { get; set; } public Nullable 單價 { get; set; } public Nullable 庫存量 { get; set; } public Nullable 已訂購量 { get; set; } public Nullable 安全存量 { get; set; } public bool 不再銷售 { get; set; } public virtual 產品類別 產品類別 { get; set; } } }