123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TAcctinfo
- {
- public ulong Gid { get; set; }
- public byte? AcctSno { get; set; }
- public uint? Sno { get; set; }
- public string AcctId { get; set; }
- public string BelongTo { get; set; }
- public string Address { get; set; }
- public string PhoneNo { get; set; }
- public byte? AcctType { get; set; }
- public int? Amount { get; set; }
- public byte AmtType { get; set; }
- public string FuelNo { get; set; }
- public uint? Gift { get; set; }
- public byte? AcctState { get; set; }
- public DateTime? AcctDate { get; set; }
- public string CertfType { get; set; }
- public string CertfNo { get; set; }
- public long? RechgTotal { get; set; }
- public uint? Tmac { get; set; }
- public uint? Waitmalloc { get; set; }
- public byte? EnableSms { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|