12345678910111213141516171819202122232425262728293031323334353637 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
-
- namespace ERD
- {
- using System;
- using System.Collections.Generic;
-
- public partial class TblPromotionCommission
- {
- public System.Guid Oid { get; set; }
- public Nullable<System.Guid> SalesCommissionInfo { get; set; }
- public Nullable<decimal> PromotionPercentage { get; set; }
- public Nullable<decimal> PromotionAmount { get; set; }
- public Nullable<bool> UseAmount { get; set; }
- public Nullable<decimal> UpfrontAmount { get; set; }
- public Nullable<decimal> UpfrontAmountPaid { get; set; }
- public Nullable<decimal> DripAmount { get; set; }
- public Nullable<decimal> DripAmountPaid { get; set; }
- public Nullable<decimal> UpfrontPercentage { get; set; }
- public Nullable<decimal> DripPercentage { get; set; }
- public Nullable<int> NumberOfDrips { get; set; }
- public Nullable<int> DripStartOnInstallment { get; set; }
- public Nullable<System.Guid> PromotionCommissionStructure { get; set; }
- public Nullable<int> OptimisticLockField { get; set; }
- public Nullable<int> GCRecord { get; set; }
-
- public virtual TblPromotionCommissionStructure TblPromotionCommissionStructure { get; set; }
- public virtual TblSalesCommissionInfo TblSalesCommissionInfo { get; set; }
- }
- }
|