12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.SpModels
- {
- public partial class KqTradeCallBack
- {
- public string MerNo { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public string Remark { get; set; }
- public string ReceiptType { get; set; }
- public string IsStoreCashier { get; set; }
- public decimal DigAmt { get; set; }
- public string DigAmtFlag { get; set; }
- public string MerMobile { get; set; }
- public string DeviceType { get; set; }
- public string TradeSnNo { get; set; }
- public string BankCardType { get; set; }
- public string SerEntryMode { get; set; }
- public string TradeType { get; set; }
- public string TradeTime { get; set; }
- public string TradeDate { get; set; }
- public string ErrorMsg { get; set; }
- public string ErrorCode { get; set; }
- public string TradeStatus { get; set; }
- public string ProductType { get; set; }
- public string DiscountRateFlag { get; set; }
- public string BankAuthCode { get; set; }
- public string TradeReferNo { get; set; }
- public decimal TradeAmount { get; set; }
- public string MerName { get; set; }
- }
- }
|