12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Newtonsoft.Json;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class ReportedLostCard
- {
- [JsonProperty("gid")]
- public long Gid { get; set; }
- [JsonProperty("cardNo")]
- public string CardNo { get; set; }
- [JsonProperty("operType")]
- public byte OperType { get; set; }
- [JsonProperty("operNo")]
- public string OperNo { get; set; }
- [JsonProperty("sNo")]
- public ushort SNo { get; set; }
- [JsonProperty("lossTime")]
- public string LossTime { get; set; }
- [JsonProperty("reason")]
- public string Reason { get; set; }
- [JsonProperty("operationType")]
- public byte OperationType { get; set; }
- }
- }
|