KxsProfitInit2024.cs 882 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsProfitInit2024
  6. {
  7. public int Id { get; set; }
  8. public int FromUserId { get; set; }
  9. public int Status { get; set; }
  10. public string MessageId { get; set; }
  11. public int ProfitMonth { get; set; }
  12. public decimal ProfitAmt { get; set; }
  13. public int UserId { get; set; }
  14. public int ProfitType { get; set; }
  15. public int BrandId { get; set; }
  16. public DateTime? CreateTime { get; set; }
  17. public DateTime? UpdateTime { get; set; }
  18. public string DelFlag { get; set; }
  19. public int Version { get; set; }
  20. public string Remark { get; set; }
  21. public int Level { get; set; }
  22. public decimal TradeAmt { get; set; }
  23. public decimal Rate { get; set; }
  24. }
  25. }