123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TLiquidGau
- {
- public int Gid { get; set; }
- public string GauName { get; set; }
- public int? LimitDate { get; set; }
- public string Factory { get; set; }
- public string State { get; set; }
- public int? TankId { get; set; }
- public string FactNo { get; set; }
- public DateTime? FactDate { get; set; }
- public string ProType { get; set; }
- }
- }
|