12345678910111213141516171819 |
- using System;
- namespace Dfs.WayneChina.SpsDataCourier.HostModels
- {
- public class OfflineBlackCardInfo
- {
- public long gid { get; set; }
- public string cardNo { get; set; }
- public DateTime blackDate { get; set; }
- public long acctGid { get; set; }
- public string acctId { get; set; }
- public byte cardType { get; set; }
- public ushort discountNo { get; set; }
- public string reason { get; set; }
- public byte uploadFlag { get; set; }
- public byte blackType { get; set; }
- public byte operationType { get; set; }
- }
- }
|