12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models
- {
- 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; }
- }
- }
|