AgentProfitRecord.cs 847 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models.Main
  4. {
  5. public partial class AgentProfitRecord
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int Status { get; set; }
  10. public int Version { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string TradeMonth { get; set; }
  14. public string Remark { get; set; }
  15. public int CheckStatus { get; set; }
  16. public decimal TradeProfit { get; set; }
  17. public decimal CreditTradeAmt { get; set; }
  18. public int ProfitType { get; set; }
  19. public int UserId { get; set; }
  20. public int ActFlag { get; set; }
  21. public string Operator { get; set; }
  22. public string OrderNo { get; set; }
  23. }
  24. }