|
- using Learun.Application.TwoDevelopment.EducationalAdministration;
- using Learun.Util;
- using System.Data;
- using System.Web.Mvc;
-
- namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers
- {
- /// <summary>
- /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
- /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
- /// 创 建:超级管理员
- /// 日 期:2022-11-23 10:48
- /// 描 述:阳光教育
- /// </summary>
- public class SunshineEducationController : MvcControllerBase
- {
- private SunshineEducationIBLL sunshineEducationIBLL = new SunshineEducationBLL();
-
- #region 视图功能
-
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Index()
- {
- return View();
- }
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult IndexComplaint()
- {
- return View();
- }
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult IndexHelp()
- {
- return View();
- }
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult IndexPolicy()
- {
- return View();
- }
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult IndexPraise()
- {
- return View();
- }
- /// <summary>
- /// 主页面
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult IndexSuggest()
- {
- return View();
- }
- /// <summary>
- /// 表单页
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult Form()
- {
- return View();
- }
- /// <summary>
- /// 表单页
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult FormReply()
- {
- return View();
- }
-
- /// <summary>
- /// 表单页
- /// </summary>
- /// <returns></returns>
-
- public ActionResult UserForm()
- {
- return View();
- }
- #endregion
-
- #region 获取数据
- /// <summary>
- /// 身份
- /// </summary>
- /// <returns></returns>
- public ActionResult GetQuestionerIdentity(string ProblemType)
- {
- var data = sunshineEducationIBLL.GetQuestionerIdentity(ProblemType);
- return Success(data);
- }
- /// <summary>
- /// 部门班级
- /// </summary>
- /// <returns></returns>
- public ActionResult GetMatterType(string ProblemType)
- {
- var data = sunshineEducationIBLL.GetMatterType(ProblemType);
- return Success(data);
- }
- /// <summary>
- /// 身份证类型
- /// </summary>
- /// <returns></returns>
- public ActionResult GetMatterTypeContent(string ProblemType)
- {
- var data = sunshineEducationIBLL.GetMatterTypeContent(ProblemType);
- return Success(data);
- }
-
- /// <summary>
- /// 获取列表数据
- /// </summary>
- /// <param name="queryJson">查询参数</param>
- /// <returns></returns>
- [HttpGet]
- [AjaxOnly]
- public ActionResult GetList(string queryJson)
- {
- var data = sunshineEducationIBLL.GetList(queryJson);
- return Success(data);
- }
- /// <summary>
- /// 获取列表分页数据
- /// </summary>
- /// <param name="pagination">分页参数</param>
- /// <param name="queryJson">查询参数</param>
- /// <returns></returns>
- [HttpGet]
- [AjaxOnly]
- public ActionResult GetPageList(string pagination, string queryJson)
- {
- Pagination paginationobj = pagination.ToObject<Pagination>();
- var data = sunshineEducationIBLL.GetPageList(paginationobj, queryJson);
- var jsonData = new
- {
- rows = data,
- total = paginationobj.total,
- page = paginationobj.page,
- records = paginationobj.records
- };
- return Success(jsonData);
- }
- /// <summary>
- /// 获取表单数据
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpGet]
- [AjaxOnly]
- public ActionResult GetFormData(string keyValue)
- {
- var data = sunshineEducationIBLL.GetEntity(keyValue);
- data.Contents = WebHelper.HtmlDecode(data.Contents);
- return Success(data);
- }
- #endregion
-
- #region 提交数据
-
- /// <summary>
- /// 删除实体数据
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult DeleteForm(string keyValue)
- {
- sunshineEducationIBLL.DeleteEntity(keyValue);
- return Success("删除成功!");
- }
- /// <summary>
- /// 保存实体数据(新增、修改)
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <param name="entity">实体</param>
- /// <returns></returns>
- [HttpPost]
- [ValidateAntiForgeryToken]
- [AjaxOnly]
- [ValidateInput(false)]
- public ActionResult SaveForm(string keyValue, SunshineEducationEntity entity)
- {
- if (!string.IsNullOrEmpty(keyValue))
- {
- var data = sunshineEducationIBLL.GetEntity(keyValue);
- }
- else
- {
- entity.Contents = WebHelper.HtmlEncode(entity.Contents);
- }
- sunshineEducationIBLL.SaveEntity(keyValue, entity);
- return Success("保存成功!");
- }
- /// <summary>
- /// 受理中
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult ReplyForm(string keyValue)
- {
- sunshineEducationIBLL.ReplyEntity(keyValue);
- return Success("操作成功!");
- }
-
- /// <summary>
- /// 受理中
- /// </summary>
- /// <param name="keyValue">主键</param>
- /// <returns></returns>
- [HttpPost]
- [AjaxOnly]
- public ActionResult AuditorForm(string keyValue, SunshineEducationEntity entity)
- {
- sunshineEducationIBLL.AuditorEntity(keyValue, entity);
- return Success("操作成功!");
- }
-
- #endregion
-
- }
- }
|