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

TblTMCommStructure.cs 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 TblTMCommStructure
  14. {
  15. public TblTMCommStructure()
  16. {
  17. this.TblTMCommDealTargets = new HashSet<TblTMCommDealTarget>();
  18. this.TblTMCommGroups = new HashSet<TblTMCommGroup>();
  19. this.TblTMCommStructureTMCommStructures_TblPersonnelPersonnelList = new HashSet<TblTMCommStructureTMCommStructures_TblPersonnelPersonnelList>();
  20. this.TblTMCommTables = new HashSet<TblTMCommTable>();
  21. this.TblPersonnels = new HashSet<TblPersonnel>();
  22. }
  23. public int OID { get; set; }
  24. public Nullable<System.DateTime> DateCreated { get; set; }
  25. public string CreatedBy { get; set; }
  26. public string StructureName { get; set; }
  27. public Nullable<int> BonusTarget { get; set; }
  28. public Nullable<int> BonusPercentage { get; set; }
  29. public Nullable<int> SalesVenue { get; set; }
  30. public Nullable<int> OptimisticLockField { get; set; }
  31. public Nullable<int> GCRecord { get; set; }
  32. public Nullable<int> DealTargetOne { get; set; }
  33. public Nullable<int> DealTargetTwo { get; set; }
  34. public Nullable<int> DealTargetThree { get; set; }
  35. public Nullable<decimal> AddSomeAmount { get; set; }
  36. public Nullable<decimal> PublicHolidayAmount { get; set; }
  37. public Nullable<int> DealTargetFour { get; set; }
  38. public Nullable<int> AddsomeDaysMissedForLevel2 { get; set; }
  39. public Nullable<decimal> AddsomeLevel2Amount { get; set; }
  40. public Nullable<bool> DoNotPayOnThisStructure { get; set; }
  41. public virtual TblSalesVenue TblSalesVenue { get; set; }
  42. public virtual ICollection<TblTMCommDealTarget> TblTMCommDealTargets { get; set; }
  43. public virtual ICollection<TblTMCommGroup> TblTMCommGroups { get; set; }
  44. public virtual ICollection<TblTMCommStructureTMCommStructures_TblPersonnelPersonnelList> TblTMCommStructureTMCommStructures_TblPersonnelPersonnelList { get; set; }
  45. public virtual ICollection<TblTMCommTable> TblTMCommTables { get; set; }
  46. public virtual ICollection<TblPersonnel> TblPersonnels { get; set; }
  47. }
  48. }