Basic ERD diagram of PV Database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TblEVoucherCategory.cs 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 TblEVoucherCategory
  14. {
  15. public TblEVoucherCategory()
  16. {
  17. this.TblEVouchers = new HashSet<TblEVoucher>();
  18. }
  19. public int OID { get; set; }
  20. public Nullable<System.DateTime> DateCreated { get; set; }
  21. public string CreatedBy { get; set; }
  22. public string Prefix { get; set; }
  23. public string CategoryName { get; set; }
  24. public Nullable<bool> Decommissioned { get; set; }
  25. public Nullable<int> SalesVenue { get; set; }
  26. public Nullable<decimal> VoucherValue { get; set; }
  27. public string SMSTemplate { get; set; }
  28. public string FullName { get; set; }
  29. public Nullable<int> OptimisticLockField { get; set; }
  30. public Nullable<int> GCRecord { get; set; }
  31. public Nullable<bool> IsCBC { get; set; }
  32. public string HTMLTemplate { get; set; }
  33. public string LogoURL { get; set; }
  34. public string MainURL { get; set; }
  35. public string BannerURL { get; set; }
  36. public string Subject { get; set; }
  37. public virtual ICollection<TblEVoucher> TblEVouchers { get; set; }
  38. public virtual TblSalesVenue TblSalesVenue { get; set; }
  39. }
  40. }