コード例 #1
0
        public ActionResult GetTiXianList(int state = 0, int pageIndex = 1, int pageSize = 10, string phone = "")
        {
            Return_Msg           returnObj = new Return_Msg();
            string               msg       = string.Empty;
            int                  count     = 0;
            List <PinGoodsOrder> orderList = _pinGoodsOrderBLL.GetListByDraw(phone, state, pageIndex, pageSize, ref count, ref msg);

            returnObj.dataObj = new { list = orderList, count = count };
            returnObj.isok    = msg.Length <= 0;
            returnObj.Msg     = msg;

            return(Json(returnObj));
        }