TTankinit.cs 355 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TTankinit
  6. {
  7. public int TankId { get; set; }
  8. public int? TabVol { get; set; }
  9. public int? RealVol { get; set; }
  10. public int? Whight { get; set; }
  11. public int? OilHight { get; set; }
  12. }
  13. }