12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MainModels2
- {
- public partial class AgentProfitRecord
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string TradeMonth { get; set; }
- public string Remark { get; set; }
- public int CheckStatus { get; set; }
- public decimal TradeProfit { get; set; }
- public decimal CreditTradeAmt { get; set; }
- public int ProfitType { get; set; }
- public int UserId { get; set; }
- public int ActFlag { get; set; }
- public string Operator { get; set; }
- public string OrderNo { get; set; }
- }
- }
|