TRechdebitRep.cs 1005 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TRechdebitRep
  6. {
  7. public ulong Gid { get; set; }
  8. public uint? Sno { get; set; }
  9. public string AcctId { get; set; }
  10. public string CardNo { get; set; }
  11. public byte? CardType { get; set; }
  12. public byte? TrdType { get; set; }
  13. public int? Mon { get; set; }
  14. public uint? Bal { get; set; }
  15. public DateTime? Ttctime { get; set; }
  16. public uint? Ctc { get; set; }
  17. public uint? Ttc { get; set; }
  18. public uint? DiscountNo { get; set; }
  19. public string OperNo { get; set; }
  20. public byte? RechgType { get; set; }
  21. public uint? Tmac { get; set; }
  22. public byte? BillType { get; set; }
  23. public int? DisMoney { get; set; }
  24. public int? DisIntegral { get; set; }
  25. public byte? BillFlag { get; set; }
  26. public byte? UploadFlag { get; set; }
  27. }
  28. }