ProfitRecord.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class ProfitRecord
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string SeoTitle { get; set; }
  14. public string SeoKeyword { get; set; }
  15. public string SeoDescription { get; set; }
  16. public string TopOrgNo { get; set; }
  17. public string CreateTime { get; set; }
  18. public string ApplyDay { get; set; }
  19. public string ActualIncomeAmt { get; set; }
  20. public string IncomeScale { get; set; }
  21. public string RateFee { get; set; }
  22. public string ProfitRate { get; set; }
  23. public string ActualCouponAmt { get; set; }
  24. public string CouponAmt { get; set; }
  25. public string ProfitCost { get; set; }
  26. public string OriginalFee { get; set; }
  27. public string OriginalRate { get; set; }
  28. public string BalanceDirection { get; set; }
  29. public string ValueType { get; set; }
  30. public string OrderNo { get; set; }
  31. public string Amount { get; set; }
  32. public string OrganizationName { get; set; }
  33. public string OrganizationNumber { get; set; }
  34. public string RequestId { get; set; }
  35. }
  36. }