ProfitResult.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. namespace MySystem
  3. {
  4. public class ProfitResult
  5. {
  6. public int UserId { get; set; }
  7. public string MakerCode { get; set; }
  8. public string RealName { get; set; }
  9. public decimal Money { get; set; }
  10. public int MachineCount { get; set; }
  11. public string UserNav { get; set; }
  12. public string Message { get; set; }
  13. public int BankCardType { get; set; }
  14. public int QrPayFlag { get; set; }
  15. public int DirectFlag { get; set; }
  16. public int BrandId { get; set; }
  17. public int IsSubsidy { get; set; } //是否补贴
  18. public int HelpFlag { get; set; }
  19. public int MerchantId { get; set; }
  20. public decimal TradeAmount { get; set; }
  21. public string PosSn { get; set; }
  22. public decimal ProfitRate { get; set; } //创客预设分润比例
  23. public decimal ProfitPercent { get; set; } //创客预设分润百分比
  24. public decimal AddOrSubRate { get; set; } //浮动空间
  25. public decimal ProfitRateBase { get; set; } //分润比例基数
  26. }
  27. public class ActiveCheckData
  28. {
  29. public string TableName { get; set; }
  30. public string StatField { get; set; }
  31. public string CheckField { get; set; }
  32. public string OtherCondition { get; set; }
  33. public int StartId { get; set; }
  34. }
  35. }