1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TTrdinfo
- {
- public long Gid { get; set; }
- public int? Sno { get; set; }
- public int? ShiftNo { get; set; }
- public byte? Posid { get; set; }
- public byte? PumpType { get; set; }
- public string Operator { get; set; }
- public string CardNo { get; set; }
- public string OperCardNo { get; set; }
- public int? PaymodeId { get; set; }
- public string PaymodeNo { get; set; }
- public byte TrdType { get; set; }
- public string CommId { get; set; }
- public int? Prc { get; set; }
- public int? Vol { get; set; }
- public int? Mon { get; set; }
- public int? RealMon { get; set; }
- public int? CardBal { get; set; }
- public byte? CardType { get; set; }
- public int? Ctc { get; set; }
- public DateTime Ttctime { get; set; }
- public DateTime? TtctimeEnd { get; set; }
- public int Ttc { get; set; }
- public int? SeqNo { get; set; }
- public int? BillNo { get; set; }
- public int? NozNo { get; set; }
- public byte PumpNo { get; set; }
- public long? PayTemId { get; set; }
- public long? EndPumpId { get; set; }
- public int? DiscountNo { 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; }
- public int? Integral { get; set; }
- public byte? UploadFlag { get; set; }
- public byte? PointFlag { get; set; }
- public string CarId { get; set; }
- public string CarLicsNo { get; set; }
- public string LineNo { get; set; }
- public byte? BillType { get; set; }
- public byte? BillFlag { get; set; }
- }
- }
|