OfflineCardRepLoss.cs 463 B

12345678910111213141516
  1. using System;
  2. namespace Dfs.WayneChina.SpsDataCourier.HostModels
  3. {
  4. public class OfflineCardRepLoss
  5. {
  6. public long gid { get; set; }
  7. public string cardNo { get; set; }
  8. public byte operType { get; set; }
  9. public string operNo { get; set; }
  10. public int sNo { get; set; }
  11. public DateTime LossTime { get; set; }
  12. public string reason { get; set; }
  13. public byte operationType { get; set; }
  14. }
  15. }