Basic ERD diagram of PV Database
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

TblTimeOffCompetitionCampaign.cs 1.3KB

12345678910111213141516171819202122232425262728293031323334
  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 TblTimeOffCompetitionCampaign
  14. {
  15. public TblTimeOffCompetitionCampaign()
  16. {
  17. this.TblTimeOffCompetitionEntries = new HashSet<TblTimeOffCompetitionEntry>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateCreated { get; set; }
  21. public string CampaignName { get; set; }
  22. public Nullable<System.DateTime> DateStart { get; set; }
  23. public Nullable<System.DateTime> DateEnd { get; set; }
  24. public Nullable<int> Winner { get; set; }
  25. public Nullable<int> OptimisticLockField { get; set; }
  26. public Nullable<int> GCRecord { get; set; }
  27. public virtual TblTimeOffCompetitionEntry TblTimeOffCompetitionEntry { get; set; }
  28. public virtual ICollection<TblTimeOffCompetitionEntry> TblTimeOffCompetitionEntries { get; set; }
  29. }
  30. }