diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Learun.Application.WebApi.csproj b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Learun.Application.WebApi.csproj
index 4519a993b..5c72d0817 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Learun.Application.WebApi.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Learun.Application.WebApi.csproj
@@ -195,6 +195,7 @@
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/EducationalAdministration/OfficeEquipmentApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/EducationalAdministration/OfficeEquipmentApi.cs
new file mode 100644
index 000000000..a6ab58ab7
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/EducationalAdministration/OfficeEquipmentApi.cs
@@ -0,0 +1,121 @@
+using Nancy;
+using Learun.Util;
+using System.Collections.Generic;
+using System;
+using Learun.Application.TwoDevelopment.EducationalAdministration;
+
+namespace Learun.Application.WebApi
+{
+ ///
+ /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
+ /// Copyright (c) 2013-2018 北京泉江科技有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2019-12-25 14:53
+ /// 描 述:日程安排
+ ///
+ public class OfficeEquipmentApi : BaseApi
+ {
+ private OfficeEquipmentIBLL OfficeEquipmentIBLL = new OfficeEquipmentBLL();
+
+ ///
+ /// 注册接口
+ ///
+ public OfficeEquipmentApi()
+ : base("/Learun/adms/EducationalAdministration/OfficeEquipment")
+ {
+ Get["/pagelist"] = GetPageList;
+ Get["/form"] = GetForm;
+ Post["/delete"] = DeleteForm;
+ Post["/save"] = SaveForm;
+ }
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表分页数据
+ ///
+ ///
+ ///
+ public Response GetPageList(dynamic _)
+ {
+ ReqPageParam parameter = this.GetReqData();
+ var data = OfficeEquipmentIBLL.GetPageList(parameter.pagination, parameter.queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = parameter.pagination.total,
+ page = parameter.pagination.page,
+ records = parameter.pagination.records
+ };
+ return Success(jsonData);
+ }
+ /////
+ ///// 获取页面显示列表数据
+ /////
+ /////
+ /////
+ //public Response GetList(dynamic _)
+ //{
+ // string queryJson = this.GetReqData();
+ // var data = OfficeEquipmentIBLL.GetList();
+ // return Success(data);
+ //}
+ ///
+ /// 获取表单数据
+ ///
+ ///
+ ///
+ public Response GetForm(dynamic _)
+ {
+ string keyValue = this.GetReqData();
+ var OfficeEquipmentData = OfficeEquipmentIBLL.GetOfficeEquipmentEntity(keyValue);
+
+ var jsonData = new
+ {
+ OfficeEquipment = OfficeEquipmentData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ ///
+ ///
+ public Response DeleteForm(dynamic _)
+ {
+ string keyValue = this.GetReqData();
+ OfficeEquipmentIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ ///
+ ///
+ public Response SaveForm(dynamic _)
+ {
+ ReqFormEntity parameter = this.GetReqData();
+ OfficeEquipmentEntity entity = parameter.strEntity.ToObject();
+ OfficeEquipmentIBLL.SaveEntity(parameter.keyValue, entity);
+ return Success("保存成功!");
+ }
+
+ #endregion
+
+ #region 私有类
+
+ ///
+ /// 表单实体类
+ ///
+ private class ReqFormEntity
+ {
+ public string keyValue { get; set; }
+ public string strEntity { get; set; }
+ }
+ #endregion
+
+ }
+}