1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TAuthinfo
- {
- public long Gid { get; set; }
- public byte? Posid { get; set; }
- public string CardNo { get; set; }
- public long? Vol { get; set; }
- public long? Mon { get; set; }
- public byte? ConsType { get; set; }
- public long? CardBal { get; set; }
- public DateTime? Ttctime { get; set; }
- public DateTime? TtctimeEnd { get; set; }
- public int? Ttc { get; set; }
- public int? SeqNo { get; set; }
- public long? PayTemId { get; set; }
- public int? DiscountNo { get; set; }
- public int? PayType { get; set; }
- public long? Ctc { get; set; }
- public byte? NozzleNo { get; set; }
- public byte? PumpNo { get; set; }
- public byte? AuthState { get; set; }
- public string FuelNo { get; set; }
- public byte? CardType { get; set; }
- public int? Prc { get; set; }
- public long? TotVol { get; set; }
- public string Psamasn { get; set; }
- public int? Psamtac { get; set; }
- public string Psamtid { get; set; }
- public int? Psamttc { get; set; }
- public int? Tac { get; set; }
- public int? Gmac { get; set; }
- public int? Tmac { get; set; }
- }
- }
|