DbModels.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SinochemInternetPlusApp
  7. {
  8. public class EpsTransactionModel
  9. {
  10. public int id { get; set; }
  11. public int jihao { get; set; }
  12. public string youpin { get; set; }
  13. public double qty { get; set; }
  14. public double danjia { get; set; }
  15. public double amount { get; set; }
  16. public DateTime xf_date { get; set; }
  17. public string xf_time { get; set; }
  18. public string liushuino { get; set; }
  19. public string fzqty { get; set; }
  20. public double fzamount { get; set; }
  21. public EpsTrxStatus trx_status { get; set; }
  22. public TransactionMode mop { get; set; } // 1 - carplate; 2 - iccard
  23. public string car_number { get; set; }
  24. public string card_no { get; set; }
  25. public string ttc { get; set; }
  26. public string token { get; set; }
  27. public string tid { get; set; }
  28. public string mac { get; set; }
  29. public double balance_before_trx { get; set; }
  30. public double real_pay_amount { get; set; }
  31. public string auth_time { get; set; }
  32. public string bill_id { get; set; }
  33. public DateTime created_time { get; set; }
  34. public string shift_id { get; set; }
  35. public string business_date { get; set; }
  36. public NotifyPosFlag notify_pos { get; set; }
  37. public string cardNo_masked { get; set; }
  38. #region These fields are Not in DB
  39. public string EnryptedPIN { get; set; }
  40. public string InvoiceUrl { get; set; }
  41. #endregion
  42. }
  43. public class Xiaofei2Model
  44. {
  45. public int jihao { get; set; }
  46. public string youpin { get; set; }
  47. public double qty { get; set; }
  48. public double danjia { get; set; }
  49. public double amount { get; set; }
  50. public DateTime xf_date { get; set; }
  51. public string xf_time { get; set; }
  52. public string liushuino { get; set; }
  53. public string fzqty { get; set; }
  54. public double fzamount { get; set; }
  55. }
  56. public class JyInfoModel
  57. {
  58. public int jihao { get; set; }
  59. public string status { get; set; }
  60. public string youpin { get; set; }
  61. public double qty { get; set; }
  62. public double amount { get; set; }
  63. public string fzqty { get; set; }
  64. public double fzamount { get; set; }
  65. }
  66. }