12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class CardOperationInfo
- {
- [JsonProperty("cardNo")]
- public string CardNo { get; set; }
- [JsonProperty("accountId")]
- public string AccountId { get; set; }
- [JsonProperty("timeStamp")]
- public string TimeStamp { get; set; }
- [JsonProperty("operationType")]
- public ushort OperationType { get; set; }
- }
- }
|