17 lines
354 B
17 lines
354 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Pingchuan.BeijingSafeguard.App.Controllers
|
|
{
|
|
public class StatisticAnalysisController : Controller
|
|
{
|
|
// GET: StatisticAnalysis
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|