Basic ERD diagram of PV Database
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TblSMIIncentive.cs 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 TblSMIIncentive
  14. {
  15. public TblSMIIncentive()
  16. {
  17. this.TblSMIIncentiveLevels = new HashSet<TblSMIIncentiveLevel>();
  18. this.TblPersonnels = new HashSet<TblPersonnel>();
  19. }
  20. public System.Guid Oid { get; set; }
  21. public string Description { get; set; }
  22. public Nullable<decimal> NewBusinessPercentage { get; set; }
  23. public Nullable<bool> IncludePromotions { get; set; }
  24. public Nullable<int> SalesPersonType { get; set; }
  25. public Nullable<decimal> UpfrontPayout { get; set; }
  26. public Nullable<decimal> DripPayout { get; set; }
  27. public Nullable<int> NumberOfDrips { get; set; }
  28. public Nullable<int> DripStartsOnInstallment { get; set; }
  29. public Nullable<int> OptimisticLockField { get; set; }
  30. public Nullable<int> GCRecord { get; set; }
  31. public virtual ICollection<TblSMIIncentiveLevel> TblSMIIncentiveLevels { get; set; }
  32. public virtual ICollection<TblPersonnel> TblPersonnels { get; set; }
  33. }
  34. }