public ActionResult GetPickUpTransportPoint(MGJH_PickUpTransportPointSearchModel model, int searchPage)
        {
            SearchDataWithPagedDatas <MGJH_PickUpTransportPointSearchModel, MGJH_PickUpTransportPointListModel> result = new SearchDataWithPagedDatas <MGJH_PickUpTransportPointSearchModel, MGJH_PickUpTransportPointListModel>();

            result.SearchModel = model;
            result.PagedDatas  = MGJH_TransportPointBLL.GetPagedPickUpTransportPoints(result.SearchModel, searchPage, this.PageSize);
            return(PartialView("_PickUpTransportPointPagedGrid", result));
        }
        //
        // GET: /Admin/MGJH_TransportPoint/

        #region  查询
        public ActionResult PickUpTransportPointSetting()
        {
            SearchDataWithPagedDatas <MGJH_PickUpTransportPointSearchModel, MGJH_PickUpTransportPointListModel> model = new SearchDataWithPagedDatas <MGJH_PickUpTransportPointSearchModel, MGJH_PickUpTransportPointListModel>();

            model.SearchModel = new MGJH_PickUpTransportPointSearchModel();
            model.PagedDatas  = MGJH_TransportPointBLL.GetPagedPickUpTransportPoints(model.SearchModel, 1, this.PageSize);
            return(PartialView("_PickUpTransportPointSetting", model));
        }