wzp
2021-09-16 b65806043f0f2f411f1c02501e92ba8e2f86fcf2
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; }
  }
}