KqProductData.cs 553 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class KqProductData
  6. {
  7. public decimal TotalMachineCount { get; set; }
  8. public int UnBindCount { get; set; }
  9. public int BindCount { get; set; }
  10. public decimal TradeProfit { get; set; }
  11. public decimal ActProfit { get; set; }
  12. public decimal OpenProfit { get; set; }
  13. public decimal DividendsProfit { get; set; }
  14. public decimal OtherProfit { get; set; }
  15. public decimal FluxProfit { get; set; }
  16. }
  17. }