1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
- public class KqProductData
- {
- public decimal TotalMachineCount { get; set; }
- public int UnBindCount { get; set; }
- public int BindCount { get; set; }
- public decimal TradeProfit { get; set; }
- public decimal ActProfit { get; set; }
- public decimal OpenProfit { get; set; }
- public decimal DividendsProfit { get; set; }
- public decimal OtherProfit { get; set; }
- public decimal FluxProfit { get; set; }
- }
- }
|