123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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 EpsTransactionMode mop { get; set; } // 1 - carplate; 2 - iccard
- public string payMethod { get; set; } // "01" - oilCard, "07" - weixin "07_pos" -- weixin QRCode
- public string car_number { get; set; }
- public string card_no { get; set; }
- public CardType cardType { get; set; } //1 - OilCard, 8--WeiXin
- 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; }
- public int nozzleSelected { get; set; }
- public string openId { get; set; }
- #region These fields are Not in DB
- public string EnryptedPIN { get; set; }
- public string pay_url { get; set; }
- public string invoiceUrl { get; set; }
- public Dictionary<int, string> AvailableNozzleGrade { get; set; }
- #endregion
- }
- public class Xiaofei2Model
- {
- public string plate_number { 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 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; }
- }
- }
|