TFuelapply.cs 591 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TFuelapply
  6. {
  7. public long Gid { get; set; }
  8. public string ApplyNo { get; set; }
  9. public string FuelNo { get; set; }
  10. public int? TotalVol { get; set; }
  11. public int? NeedVol { get; set; }
  12. public string Applicant { get; set; }
  13. public DateTime? ApplyTime { get; set; }
  14. public DateTime? ComeTime { get; set; }
  15. public byte? ApplyState { get; set; }
  16. public string Remark { get; set; }
  17. }
  18. }