1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDataCourier.SpsData
- {
- public partial class TTanktruckcheck
- {
- public ulong Gid { get; set; }
- public string InceptBill { get; set; }
- public uint? TankId { get; set; }
- public string StoreName { get; set; }
- public DateTime? InceptTime { get; set; }
- public string LadingBill { get; set; }
- public string BearUnit { get; set; }
- public string CardNo { get; set; }
- public string Driver { get; set; }
- public string Discharger { get; set; }
- public string Incepter { get; set; }
- public int? StoreVol { get; set; }
- public int? StoreHight { get; set; }
- public int? StoreNullH { get; set; }
- public int? StorePipeVol { get; set; }
- public int? InceptVol { get; set; }
- public int? InceptHight { get; set; }
- public int? InceptNullH { get; set; }
- public int? InceptPipeVol { get; set; }
- public int? LossVol { get; set; }
- public string LossReason { get; set; }
- public sbyte? InceptState { get; set; }
- public string RefuseReson { get; set; }
- }
- }
|