Basic ERD diagram of PV Database
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TblDeveloper.cs 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace ERD
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class TblDeveloper
  14. {
  15. public TblDeveloper()
  16. {
  17. this.TblDebtors = new HashSet<TblDebtor>();
  18. this.TblResorts = new HashSet<TblResort>();
  19. this.TblSACRRASettings = new HashSet<TblSACRRASetting>();
  20. this.TblSalesVenues = new HashSet<TblSalesVenue>();
  21. this.TblSalesVenueClubDevelopers = new HashSet<TblSalesVenueClubDeveloper>();
  22. this.TblStreamlines = new HashSet<TblStreamline>();
  23. this.TblUpdateBankingDetails = new HashSet<TblUpdateBankingDetail>();
  24. this.Transfigurations = new HashSet<Transfiguration>();
  25. }
  26. public int OID { get; set; }
  27. public string Name { get; set; }
  28. public Nullable<System.DateTime> DateCreated { get; set; }
  29. public string CreatedBy { get; set; }
  30. public string NCRNumber { get; set; }
  31. public Nullable<System.Guid> Address { get; set; }
  32. public string TelephoneNumber { get; set; }
  33. public Nullable<int> OptimisticLockField { get; set; }
  34. public Nullable<int> GCRecord { get; set; }
  35. public string RegistrationNumber { get; set; }
  36. public string Abbreviation { get; set; }
  37. public Nullable<int> DocumentsSignedBy { get; set; }
  38. public Nullable<bool> MayTransfigure { get; set; }
  39. public Nullable<bool> MayUpgrade { get; set; }
  40. public Nullable<System.Guid> PostalAddress { get; set; }
  41. public Nullable<System.Guid> BankingDetails { get; set; }
  42. public string FaxNumber { get; set; }
  43. public Nullable<bool> MayTranscollect { get; set; }
  44. public Nullable<bool> ExternalDeveloper { get; set; }
  45. public string Key { get; set; }
  46. public string AVSCode { get; set; }
  47. public Nullable<short> Company { get; set; }
  48. public Nullable<int> CapitalStatementBankAccount { get; set; }
  49. public Nullable<int> ManagementStatementAccount { get; set; }
  50. public string EmailSubject { get; set; }
  51. public Nullable<System.Guid> LevyBankingDetails { get; set; }
  52. public string AccessKey { get; set; }
  53. public string SecretKey { get; set; }
  54. public virtual ICollection<TblDebtor> TblDebtors { get; set; }
  55. public virtual ICollection<TblResort> TblResorts { get; set; }
  56. public virtual ICollection<TblSACRRASetting> TblSACRRASettings { get; set; }
  57. public virtual ICollection<TblSalesVenue> TblSalesVenues { get; set; }
  58. public virtual ICollection<TblSalesVenueClubDeveloper> TblSalesVenueClubDevelopers { get; set; }
  59. public virtual ICollection<TblStreamline> TblStreamlines { get; set; }
  60. public virtual ICollection<TblUpdateBankingDetail> TblUpdateBankingDetails { get; set; }
  61. public virtual ICollection<Transfiguration> Transfigurations { get; set; }
  62. }
  63. }