12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.SpModels
- {
- public partial class KqTrade
- {
- public string MerNo { get; set; }
- public string InputModel { get; set; }
- public string KqTradeSeq { get; set; }
- public string DigStatus { get; set; }
- public string S0settleStatus { get; set; }
- public decimal TotalRebateAmt { get; set; }
- public decimal TotalCostAmt { get; set; }
- public decimal SettleRebateAmt { get; set; }
- public decimal SettleCostAmt { get; set; }
- public decimal SettleFeeRebateAmt { get; set; }
- public decimal SettleFeeCostAmt { get; set; }
- public string BillType { get; set; }
- public decimal SettleTotalFee { get; set; }
- public string SourceType { get; set; }
- public string BizEnterName { get; set; }
- public string BizEnterNo { get; set; }
- public string SmallDouble { get; set; }
- public decimal SettleFee { get; set; }
- public string SettleMethod { get; set; }
- public decimal FeeAmount { get; set; }
- public string BankCardNo { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public string Remark { get; set; }
- public decimal DigAmt { get; set; }
- public string DigAmtFlag { get; set; }
- public string TradeSnNo { get; set; }
- public string BankCardType { get; set; }
- public string TradeTime { get; set; }
- public string TradeDate { get; set; }
- public string TradeStatus { get; set; }
- public string ProductType { get; set; }
- public decimal TradeAmount { get; set; }
- public string MerName { get; set; }
- }
- }
|