12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.SpModels
- {
- public partial class ProfitRecord
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public string TopOrgNo { get; set; }
- public string CreateTime { get; set; }
- public string ApplyDay { get; set; }
- public string ActualIncomeAmt { get; set; }
- public string IncomeScale { get; set; }
- public string RateFee { get; set; }
- public string ProfitRate { get; set; }
- public string ActualCouponAmt { get; set; }
- public string CouponAmt { get; set; }
- public string ProfitCost { get; set; }
- public string OriginalFee { get; set; }
- public string OriginalRate { get; set; }
- public string BalanceDirection { get; set; }
- public string ValueType { get; set; }
- public string OrderNo { get; set; }
- public string Amount { get; set; }
- public string OrganizationName { get; set; }
- public string OrganizationNumber { get; set; }
- public string RequestId { get; set; }
- }
- }
|