TAcctinfo.cs 1.0 KB

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TAcctinfo
  6. {
  7. public long Gid { get; set; }
  8. public byte? AcctSno { get; set; }
  9. public int? Sno { get; set; }
  10. public string AcctId { get; set; }
  11. public string BelongTo { get; set; }
  12. public string Address { get; set; }
  13. public string PhoneNo { get; set; }
  14. public byte? AcctType { get; set; }
  15. public int? Amount { get; set; }
  16. public byte? AmtType { get; set; }
  17. public string FuelNo { get; set; }
  18. public int? Gift { get; set; }
  19. public byte? AcctState { get; set; }
  20. public DateTime? AcctDate { get; set; }
  21. public string CertfType { get; set; }
  22. public string CertfNo { get; set; }
  23. public long? RechgTotal { get; set; }
  24. public int? Tmac { get; set; }
  25. public int? Waitmalloc { get; set; }
  26. public byte? EnableSms { get; set; }
  27. public byte? UploadFlag { get; set; }
  28. }
  29. }