12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class BlackCardInfo
- {
- [JsonProperty("gid")]
- public long Gid { get; set; }
- [JsonProperty("cardNo")]
- public string CardNo { get; set; }
- [JsonProperty("blackDate")]
- public string BlackDate { get; set; }
- [JsonProperty("acctGid")]
- public long AcctGid { get; set; }
- [JsonProperty("acctId")]
- public string AcctId { get; set; }
- [JsonProperty("cardType")]
- public byte CardType { get; set; }
- [JsonProperty("discountNo")]
- public int DiscountNo { get; set; }
- [JsonProperty("reason")]
- public string Reason { get; set; }
- [JsonProperty("uploadFlag")]
- public byte UploadFlag { get; set; }
-
-
-
- [JsonProperty("operationType")]
- public byte OperationType { get; set; }
-
-
-
- [JsonProperty("blackType")]
- public byte BlackType { get; set; }
- }
- }
|