KxsUserProfitLkb.cs 662 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsUserProfitLkb
  6. {
  7. public int Id { get; set; }
  8. public int IsTeam { get; set; }
  9. public int TradeType { get; set; }
  10. public string Remark { get; set; }
  11. public int ProfitMonth { get; set; }
  12. public int Status { get; set; }
  13. public decimal ProfitAmt { get; set; }
  14. public int UserId { get; set; }
  15. public int Version { get; set; }
  16. public string DelFlag { get; set; }
  17. public DateTime? UpdateTime { get; set; }
  18. public DateTime? CreateTime { get; set; }
  19. }
  20. }