12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class RechargeDebitInfo
- {
- [JsonProperty("acctID")]
- public string AcctId { get; set; }
- [JsonProperty("bal")]
- public int Bal { get; set; }
- [JsonProperty("billFlag")]
- public byte BillFlag { get; set; }
- [JsonProperty("billType")]
- public byte BillType { get; set; }
- [JsonProperty("cardNo")]
- public string CardNo { get; set; }
- [JsonProperty("ctc")]
- public int CTC { get; set; }
- [JsonProperty("disIntegral")]
- public int DisIntegral { get; set; }
- [JsonProperty("disMoney")]
- public int DisMoney { get; set; }
- [JsonProperty("discountNo")]
- public int DiscountNo { get; set; }
- [JsonProperty("gid")]
- public long Gid { get; set; }
- [JsonProperty("mon")]
- public int Mon { get; set; }
- [JsonProperty("operNo")]
- public string OperNo { get; set; }
- [JsonProperty("rechgType")]
- public byte RechgType { get; set; }
- [JsonProperty("sno")]
- public short SNo { get; set; }
- [JsonProperty("tmac")]
- public long TMac { get; set; }
- [JsonProperty("trdType")]
- public byte TrdType { get; set; }
- [JsonProperty("ttc")]
- public int TTC { get; set; }
- [JsonProperty("ttctime")]
- public string TTCTime { get; set; }
- [JsonProperty("uploadFlag")]
- public byte UploadFlag { get; set; }
- }
- }
|