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; }
///
/// Type of the black list record, 0=create, 1=update, 2=delete
///
[JsonProperty("operationType")]
public byte OperationType { get; set; }
///
/// Type of black list card info origin, 0=t_blackcard, 1=t_addblackcard, 2=t_delblackcard
///
[JsonProperty("blackType")]
public byte BlackType { get; set; }
}
}