TRechdebitRep.cs 995 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TRechdebitRep
  6. {
  7. public long Gid { get; set; }
  8. public int? 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 int? Bal { get; set; }
  15. public DateTime? Ttctime { get; set; }
  16. public int? Ctc { get; set; }
  17. public int? Ttc { get; set; }
  18. public int? DiscountNo { get; set; }
  19. public string OperNo { get; set; }
  20. public byte? RechgType { get; set; }
  21. public int? 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. }