示例#1
0
        /// <summary>
        /// 加载出让合同数据
        /// </summary>
        public ActionResult loadCrhtData(CrhtSearch crhtSearch)
        {
            crhtSearch.PageIndex = Convert.ToInt32(Request["page"]);
            crhtSearch.PageSize  = Convert.ToInt32(Request["rows"]);
            var list = D_RECService.loadCrhtData(crhtSearch);

            return(Content(SerializeHelper.SerializeToList(crhtSearch.TotalCount, list).Callback()));
        }
示例#2
0
        /// <summary>
        /// 加载已供地报批项目列表
        /// </summary>
        public ActionResult ShowList(YgdbpxmSearch ygdbpxmSearch)
        {
            ygdbpxmSearch.PageIndex = Convert.ToInt32(Request["page"]);
            ygdbpxmSearch.PageSize  = Convert.ToInt32(Request["rows"]);
            var list = D_RECService.LoadSerachEntities(ygdbpxmSearch);

            return(Content(SerializeHelper.SerializeToList(ygdbpxmSearch.TotalCount, list).Callback()));
        }
示例#3
0
        /// <summary>
        /// 获取报批项目查询数据
        /// </summary>
        public ActionResult GetQueryData(string BPSLH)
        {
            var model = D_RECService.GetEntity(BPSLH);

            return(Content(SerializeHelper.SerializeToString(model).Callback()));
        }