wzp
2021-09-01 332564792992cabbf3979289ac6fd6f8b9283661
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; }
  }
}