wzp
2022-10-18 0ae3194bdd3dd29e5ad1450328a19f7fdbe53ea9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
using Newtonsoft.Json;
 
namespace Dao
{
  [JsonObject]
  public class GwDiverterItem
  {
    public string Keywords { get; set; }
 
    public int SmMaxLength { get; set; }
 
    public int SmMinLength { get; set; }
 
    public int CMOPID { get; set; }
 
    public int CUOPID { get; set; }
 
    public int CTOPID { get; set; }
 
    public string CMExtNo { get; set; }
 
    public string CUExtNo { get; set; }
 
    public string CTExtNo { get; set; }
 
    public string CMExtParams { get; set; }
 
    public string CTExtParams { get; set; }
 
    public string CUExtParams { get; set; }
 
//新加的导流参数
    public int Mode { get; set; }
    public string Segments { get; set; }
    public string ExtNoMode { get; set; }
    public string Province { get; set; }
 
  
  }
}