ProfitResult.cs 869 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace MySystem
  3. {
  4. public class ProfitResult
  5. {
  6. public int UserId { get; set; }
  7. public decimal Money { get; set; }
  8. public int MachineCount { get; set; }
  9. public string UserNav { get; set; }
  10. public string Message { get; set; }
  11. public decimal ProfitRate { get; set; } //创客预设分润比例
  12. public decimal ProfitPercent { get; set; } //创客预设分润百分比
  13. public decimal AddOrSubRate { get; set; } //浮动空间
  14. public decimal ProfitRateBase { get; set; } //分润比例基数
  15. }
  16. public class ActiveCheckData
  17. {
  18. public string TableName { get; set; }
  19. public string StatField { get; set; }
  20. public string CheckField { get; set; }
  21. public string OtherCondition { get; set; }
  22. public int StartId { get; set; }
  23. }
  24. }