1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SinochemInternetPlusApp
- {
- public class EpsTransactionModel
- {
- public int id { get; set; }
- public int jihao { get; set; }
- public string youpin { get; set; }
- public double qty { get; set; }
- public double danjia { get; set; }
- public double amount { get; set; }
- public DateTime xf_date { get; set; }
- public string xf_time { get; set; }
- public string liushuino { get; set; }
- public string fzqty { get; set; }
- public double fzamount { get; set; }
- public EpsTrxStatus trx_status { get; set; }
- public TransactionMode mop { get; set; } // 1 - carplate; 2 - iccard
- public string car_number { get; set; }
- public string card_no { get; set; }
- public string ttc { get; set; }
- public string token { get; set; }
- public string tid { get; set; }
- public string mac { get; set; }
- public double balance_before_trx { get; set; }
- public double real_pay_amount { get; set; }
- public string auth_time { get; set; }
- public string bill_id { get; set; }
- public DateTime created_time { get; set; }
- public string shift_id { get; set; }
- public string business_date { get; set; }
- public NotifyPosFlag notify_pos { get; set; }
- public string cardNo_masked { get; set; }
- #region These fields are Not in DB
- public string EnryptedPIN { get; set; }
- public string InvoiceUrl { get; set; }
- #endregion
- }
- public class Xiaofei2Model
- {
- public int jihao { get; set; }
- public string youpin { get; set; }
- public double qty { get; set; }
- public double danjia { get; set; }
- public double amount { get; set; }
- public DateTime xf_date { get; set; }
- public string xf_time { get; set; }
- public string liushuino { get; set; }
- public string fzqty { get; set; }
- public double fzamount { get; set; }
- }
- public class JyInfoModel
- {
- public int jihao { get; set; }
- public string status { get; set; }
- public string youpin { get; set; }
- public double qty { get; set; }
- public double amount { get; set; }
- public string fzqty { get; set; }
- public double fzamount { get; set; }
- }
- }
|