Basic ERD diagram of PV Database
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

TblPromotion.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 TblPromotion
  14. {
  15. public System.Guid Oid { get; set; }
  16. public Nullable<int> Resort { get; set; }
  17. public Nullable<int> Season { get; set; }
  18. public Nullable<int> SleeperSize { get; set; }
  19. public Nullable<int> UnitNumber { get; set; }
  20. public Nullable<int> WeekType { get; set; }
  21. public Nullable<System.DateTime> FromDate { get; set; }
  22. public Nullable<System.DateTime> ToDate { get; set; }
  23. public Nullable<decimal> Price1 { get; set; }
  24. public Nullable<decimal> Price2 { get; set; }
  25. public Nullable<decimal> DiscountPercentage { get; set; }
  26. public Nullable<int> OptimisticLockField { get; set; }
  27. public Nullable<int> GCRecord { get; set; }
  28. public Nullable<decimal> RebatePercentage { get; set; }
  29. public Nullable<bool> UsePrice1 { get; set; }
  30. public Nullable<bool> UsePrice2 { get; set; }
  31. public Nullable<bool> UseRebate { get; set; }
  32. public Nullable<int> WeekModule { get; set; }
  33. public Nullable<int> PromotionType { get; set; }
  34. public virtual TblPromotionType TblPromotionType { get; set; }
  35. public virtual TblResort TblResort { get; set; }
  36. public virtual TblWeekModule TblWeekModule { get; set; }
  37. }
  38. }