View_ChannelSpreadLogicDetail.cs 648 B

1234567891011121314151617181920212223
  1. using SMP.Model.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SMP.Model.Finance
  8. {
  9. public class View_ChannelSpreadLogicDetail
  10. {
  11. public int ChannelId { get; set; }
  12. public string ThirdPartyUniqueId { get; set; }
  13. public int SpreadlogicId { get; set; }
  14. public int SpreadlogicDetailId { get; set; }
  15. public ApportionMethodEnum ApportionMethod { get; set; }
  16. public int ExpenseId { get; set; }
  17. public int ExpenseItemId { get; set; }
  18. public int ServiceProviderId { get; set; }
  19. }
  20. }