DevelopSOPController.cs 1.3 KB
using Infrastructure;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using WebApp;
using WebRepository;

namespace WebMvc
{
    /// <summary>
	/// 开发指南
	/// </summary>
    [Area("management")]
    public class DevelopSOPController : BaseController
    {

        public DevelopSOPController(IAuth authUtil) : base(authUtil)
        {
        }

        #region 视图功能
        public ActionResult Index()
        {
            return View();
        }

        /// <summary>
        /// 主子表界面设计
        /// </summary>
        /// <returns></returns>
        public ActionResult HeadDetail()
        {
            return View();
        }

        /// <summary>
        /// 打印功能
        /// </summary>
        /// <returns></returns>
        public ActionResult Print()
        {
            return View();
        }

        /// <summary>
        /// 自定义报表
        /// </summary>
        /// <returns></returns>
        public ActionResult ExcelReport()
        {
            return View();
        }

        /// <summary>
        /// 定时器任务
        /// </summary>
        /// <returns></returns>
        public ActionResult QuartzJob()
        {
            return View();
        }
        #endregion

    }
}