1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SinochemCloudClient.Models
- {
- public class PaymentRequest : RequestBase
- {
- public string ttc { get; set; }
- public string password { get; set; }
- public string code { get; set; }
- public double price { get; set; }
- public double lpm { get; set; }
- public double amount { get; set; }
- public string gas_Up_Time { get; set; }
- public string rear_Pump_Code { get; set; }
- public string off_Line_Sign { get; set; }
- public string tradeDateTime { get; set; }
- public string mac { get; set; }
- }
- }
|