wangsheng
2021-09-26 fad59c96add549467aeb66a0e1c39950886ce02b
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; }
  }
}