KxsShdLeaderCheck.cs 910 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsShdLeaderCheck
  6. {
  7. public int Id { get; set; }
  8. public string StatMonth { get; set; }
  9. public int BigMarketCount { get; set; }
  10. public decimal TotalTradeAmount { get; set; }
  11. public decimal SmallTradeAmount { get; set; }
  12. public int DeepStaCount { get; set; }
  13. public int StaCount { get; set; }
  14. public int LeaderType { get; set; }
  15. public string PidPath { get; set; }
  16. public int Pid { get; set; }
  17. public int UserId { get; set; }
  18. public string UpdateBy { get; set; }
  19. public string CreateBy { get; set; }
  20. public int Version { get; set; }
  21. public string DelFlag { get; set; }
  22. public DateTime? UpdateTime { get; set; }
  23. public DateTime? CreateTime { get; set; }
  24. }
  25. }