//------------------------------------------------------------------------------ // // 這個程式碼是由範本產生。 // // 對這個檔案進行手動變更可能導致您的應用程式產生未預期的行為。 // 如果重新產生程式碼,將會覆寫對這個檔案的手動變更。 // //------------------------------------------------------------------------------ namespace Entity2 { using System; using System.Collections.Generic; public partial class 員工 { public int 編號 { get; set; } public string 姓名 { get; set; } public string 職稱 { get; set; } public string 電話 { get; set; } public Nullable 薪資 { get; set; } } }