12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.KxsMainModels
- {
- public partial class UserMachineData
- {
- public string IdBrand { get; set; }
- public decimal FluxProfit { get; set; }
- public decimal OtherProfit { get; set; }
- public decimal DividendsProfit { get; set; }
- public decimal OpenProfit { get; set; }
- public decimal ActProfit { get; set; }
- public decimal TradeProfit { get; set; }
- public int BindCount { get; set; }
- public int UnBindCount { get; set; }
- public int TotalMachineCount { get; set; }
- }
- }
|