Exemplo n.º 1
0
        public AjaxResult GetHYCP2([FromBody] dynamic Json)
        {
            Bll_TMD_HY_PLAN tmd_hy_plan = new Bll_TMD_HY_PLAN();

            #region                  //参数

            string date = Json.date; //日期
            #endregion

            #region//数据操作
            AjaxResult result = new AjaxResult();
            result.Code   = DoResult.Success;
            result.Result = JsonConvert.SerializeObject(tmd_hy_plan.GetListFrist(date).Tables[0]);

            #endregion

            return(result);
        }