KxsUserWithdrawal.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsUserWithdrawal
  6. {
  7. public int Id { get; set; }
  8. public string ChannelName { get; set; }
  9. public string BankCode { get; set; }
  10. public string BankName { get; set; }
  11. public int WithdrawalType { get; set; }
  12. public string Result { get; set; }
  13. public int ApplyStatus { get; set; }
  14. public int Status { get; set; }
  15. public string Remark { get; set; }
  16. public string ApplyNo { get; set; }
  17. public decimal ServiceAmount { get; set; }
  18. public decimal TaxAmount { get; set; }
  19. public decimal RealAmount { get; set; }
  20. public decimal ApplyAmount { get; set; }
  21. public int UserId { get; set; }
  22. public int Version { get; set; }
  23. public int DelFlag { get; set; }
  24. public DateTime? UpdateTime { get; set; }
  25. public DateTime? CreateTime { get; set; }
  26. public decimal BeforeAmt { get; set; }
  27. }
  28. }