/// <summary>
 /// 获取移动管理平台的配置
 /// </summary>
 /// <returns></returns>
 public MoveWebAppSetting GetMoveWebAppSetting()
 {
     try
     {
         DataSet ds = t_sm_service.GetList(" ServiceSetID = 10", null);
         if (ds.Tables[0].Rows.Count > 0)
         {
             MoveWebAppSetting model = new MoveWebAppSetting();
             return(model.ToModel(ds.Tables[0].Rows[0]["ServiceSet"].ToString()));
         }
         else
         {
             return(null);
         }
     }
     catch
     {
         throw;
     }
 }