yzh
2022-04-14 78a0852831f1119372e36e90dc1e91ce46b8ef66
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
using System;
 
namespace Dao
{
  public class GwDiverter
  {
    public int DiverterID { get; set; }
 
    public string DiverterName { get; set; }
 
    public string Content { get; set; }
 
    public DateTime CreateTime { get; set; }
  }
}