KxsUserProfitLog.cs 785 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsUserProfitLog
  6. {
  7. public int Id { get; set; }
  8. public decimal ZlbProfitAmt { get; set; }
  9. public decimal GdProfitAmt { get; set; }
  10. public decimal LkbProfitAmt { get; set; }
  11. public decimal PosProfitAmt { get; set; }
  12. public decimal ServerFee { get; set; }
  13. public int ProfitMonth { get; set; }
  14. public int UserId { get; set; }
  15. public string UpdateBy { get; set; }
  16. public string CreateBy { get; set; }
  17. public int Version { get; set; }
  18. public string DelFlag { get; set; }
  19. public DateTime? UpdateTime { get; set; }
  20. public DateTime? CreateTime { get; set; }
  21. }
  22. }