123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TAcctinfo
- {
- public long Gid { get; set; }
- public byte? AcctSno { get; set; }
- public int? 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 int? 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 int? Tmac { get; set; }
- public int? Waitmalloc { get; set; }
- public byte? EnableSms { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|