123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.SpModels
- {
- public partial class KqTradeFlux
- {
- public string MerNo { get; set; }
- public string DeviceNetwork { get; set; }
- public string TerminalNo { get; set; }
- public string InputModel { get; set; }
- public string KqTradeSeq { get; set; }
- public string BillType { 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; }
- }
- }
|