1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TShiftcheckinfo
- {
- public ulong Gid { get; set; }
- public uint? Sno { get; set; }
- public byte? PumpType { get; set; }
- public sbyte? Posid { get; set; }
- public uint? ShiftNo { get; set; }
- public string FuelName { get; set; }
- public byte? NozzleNo { get; set; }
- public long? VolBeg { get; set; }
- public long? VolEnd { get; set; }
- public long? MoneyBegin { get; set; }
- public long? MoneyEnd { get; set; }
- public uint? Mtotal { get; set; }
- public int? VolTotal { get; set; }
- public uint? BackTank { get; set; }
- public uint? OwnUse { get; set; }
- public uint? Other { get; set; }
- public int? RealSell { get; set; }
- public uint? TotalTrd { get; set; }
- public uint? Price { get; set; }
- public uint? Cash { get; set; }
- public uint? CashM { get; set; }
- public uint? Ic { get; set; }
- public uint? Icm { get; set; }
- public uint? BankCard { get; set; }
- public uint? BankCardM { get; set; }
- public uint? Retail { get; set; }
- public int? TotalMoney { get; set; }
- public int? DisctMoney { get; set; }
- public int? FuelCash { get; set; }
- public int? RealCash { get; set; }
- public int? Margin { get; set; }
- public byte? UploadFlag { get; set; }
- }
- }
|