CumulativeBreakdownOfFailuresController.cs 319 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 using Microsoft.AspNetCore.Mvc; namespace HHECS.Web.Areas.SysReports.Controllers { /// <summary> /// 累计故障明细 /// </summary> public class CumulativeBreakdownOfFailuresController : Controller { public IActionResult Index() { return View(); } } }