wangsheng
2022-03-22 4e4227f9d9b0c7efc4e4afd2bb371bae9fe6cc03
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; }
 
  
  }
}