PaymentRequest.cs 717 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SinochemCloudClient.Models
  7. {
  8. public class PaymentRequest : RequestBase
  9. {
  10. public string ttc { get; set; }
  11. public string password { get; set; }
  12. public string code { get; set; }
  13. public double price { get; set; }
  14. public double lpm { get; set; }
  15. public double amount { get; set; }
  16. public string gas_Up_Time { get; set; }
  17. public string rear_Pump_Code { get; set; }
  18. public string off_Line_Sign { get; set; }
  19. public string tradeDateTime { get; set; }
  20. public string mac { get; set; }
  21. }
  22. }