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