TLevelvol.cs 307 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TLevelvol
  6. {
  7. public long Gid { get; set; }
  8. public byte? TankId { get; set; }
  9. public int? Height { get; set; }
  10. public int? Vol { get; set; }
  11. }
  12. }