1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PlateformModels
- {
- public partial class ProfitRewardExport
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public decimal DebitTradeProfit { get; set; }
- public decimal DebitTradeAmt { get; set; }
- public decimal NotHelpCreditTradeProfit { get; set; }
- public decimal NotHelpCreditTradeAmt { get; set; }
- public decimal HelpCreditTradeProfit { get; set; }
- public decimal HelpCreditTradeAmt { get; set; }
- public decimal NonQrCreditTradeProfit { get; set; }
- public decimal NonQrCreditTradeAmt { get; set; }
- public decimal QrCreditTradeProfit { get; set; }
- public decimal QrCreditTradeAmt { get; set; }
- public decimal CreditTradeProfit { get; set; }
- public decimal CreditTradeAmt { get; set; }
- public string BrandName { get; set; }
- public string DirectFlag { get; set; }
- public int Rank { get; set; }
- public int UserLevel { get; set; }
- public string RealName { get; set; }
- public string MakerCode { get; set; }
- public decimal ProfitCreditTradeProfit { get; set; }
- public decimal ProfitCreditTradeAmt { get; set; }
- }
- }
|