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; } } }