TrxNotificationRequest.cs 995 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SinochemPosClient.Models
  7. {
  8. public class TrxNotificationRequest : RequestBase
  9. {
  10. public string ticketId { get; set; }
  11. public string person { get; set; }
  12. public string cardNo { get; set; }
  13. public string cardType { get; set; }
  14. public string oilName { get; set; }
  15. public double units { get; set; }
  16. public double price { get; set; }
  17. public double totalAmount { get; set; }
  18. public double amount { get; set; }
  19. public string oilLiuShuiNo { get; set; }
  20. public string gunNum { get; set; }
  21. public string oilTime { get; set; }
  22. public double cardDiscount { get; set; }
  23. public double promDiscount { get; set; }
  24. public string payMethod { get; set; }
  25. public string transId { get; set; }
  26. public string openId { get; set; }
  27. }
  28. }