1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using Cache;
- using Common;
- using KJH55128_Rec.Business;
- using KJH55128_Rec.Business.Test;
- using KJH55128_Rec.Business.TrendChart;
- using KJH55128_Rec.Util;
- using Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace KJH55128_Rec.Controllers
- {
- public class TestController : Controller
- {
-
- public ActionResult Index()
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- var tmpdata=AppCtrl.GetObj().GetTrendChartCache().GetTrendChart((int)EnumZXTid.走势图, (int)EnumZXCid.QG_FC3D);
- var tmpdata2= TrendChastApiBLL.GetTrendChartChache( (int)EnumZXCid.QG_FC3D,(int)EnumZXTid.走势图);
-
-
- return View();
- }
- }
- }
|