UserMachineData.cs 617 B

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