12345678910111213141516171819202122232425 |
- using System;
- namespace MySystem
- {
- public class ProfitResult
- {
- public int UserId { get; set; }
- public decimal Money { get; set; }
- public int MachineCount { get; set; }
- public string UserNav { get; set; }
- public string Message { get; set; }
- public decimal ProfitRate { get; set; } //创客预设分润比例
- public decimal ProfitPercent { get; set; } //创客预设分润百分比
- public decimal AddOrSubRate { get; set; } //浮动空间
- public decimal ProfitRateBase { get; set; } //分润比例基数
- }
- public class ActiveCheckData
- {
- public string TableName { get; set; }
- public string StatField { get; set; }
- public string CheckField { get; set; }
- public string OtherCondition { get; set; }
- public int StartId { get; set; }
- }
- }
|