diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/CalculateProjectController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/CalculateProjectController.cs
new file mode 100644
index 000000000..f1f957487
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/CalculateProjectController.cs
@@ -0,0 +1,117 @@
+using Learun.Util;
+using System.Data;
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Web.Mvc;
+using System.Collections.Generic;
+
+namespace Learun.Application.Web.Areas.LR_Desktop.Controllers
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 10:04
+ /// 描 述:计算项目管理
+ ///
+ public class CalculateProjectController : MvcControllerBase
+ {
+ private CalculateProjectIBLL calculateProjectIBLL = new CalculateProjectBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = calculateProjectIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var CalculateProjectData = calculateProjectIBLL.GetCalculateProjectEntity( keyValue );
+ var jsonData = new {
+ CalculateProject = CalculateProjectData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ calculateProjectIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ CalculateProjectEntity entity = strEntity.ToObject();
+ calculateProjectIBLL.SaveEntity(keyValue,entity);
+ if (string.IsNullOrEmpty(keyValue))
+ {
+ }
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaChildController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaChildController.cs
new file mode 100644
index 000000000..abb74dc96
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaChildController.cs
@@ -0,0 +1,125 @@
+using Learun.Util;
+using System.Data;
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Web.Mvc;
+using System.Collections.Generic;
+
+namespace Learun.Application.Web.Areas.LR_Desktop.Controllers
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 11:26
+ /// 描 述:公式子表
+ ///
+ public class FormulaChildController : MvcControllerBase
+ {
+ private FormulaChildIBLL formulaChildIBLL = new FormulaChildBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ #endregion
+
+ #region 获取数据
+ ///
+ /// 获取左侧树形数据
+ ///
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetTree()
+ {
+ var data = formulaChildIBLL.GetTree();
+ return Success(data);
+ }
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = formulaChildIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var FormulaChildData = formulaChildIBLL.GetFormulaChildEntity(keyValue);
+ var jsonData = new
+ {
+ FormulaChild = FormulaChildData,
+ };
+ return Success(jsonData);
+ }
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ formulaChildIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveList(string mainEntity, List strEntity)
+ {
+ FormulaChildEntity model = mainEntity.ToObject();
+ formulaChildIBLL.SaveList(model.MainId, strEntity);
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaMainController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaMainController.cs
new file mode 100644
index 000000000..4c4e06352
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Controllers/FormulaMainController.cs
@@ -0,0 +1,141 @@
+using Learun.Util;
+using System.Data;
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Web.Mvc;
+using System.Collections.Generic;
+
+namespace Learun.Application.Web.Areas.LR_Desktop.Controllers
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 11:07
+ /// 描 述:公式管理
+ ///
+ public class FormulaMainController : MvcControllerBase
+ {
+ private FormulaMainIBLL formulaMainIBLL = new FormulaMainBLL();
+
+ #region 视图功能
+
+ ///
+ /// 主页面
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Index()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult Form()
+ {
+ return View();
+ }
+ ///
+ /// 表单页
+ ///
+ ///
+ [HttpGet]
+ public ActionResult FormChild()
+ {
+ return View();
+ }
+
+ #endregion
+
+ #region 获取数据
+
+ ///
+ /// 获取页面显示列表数据
+ ///
+ /// 分页参数
+ /// 查询参数
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetPageList(string pagination, string queryJson)
+ {
+ Pagination paginationobj = pagination.ToObject();
+ var data = formulaMainIBLL.GetPageList(paginationobj, queryJson);
+ var jsonData = new
+ {
+ rows = data,
+ total = paginationobj.total,
+ page = paginationobj.page,
+ records = paginationobj.records
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取表单数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormData(string keyValue)
+ {
+ var FormulaMainData = formulaMainIBLL.GetFormulaMainEntity( keyValue );
+ var jsonData = new {
+ FormulaMain = FormulaMainData,
+ };
+ return Success(jsonData);
+ }
+ ///
+ /// 获取子表数据
+ ///
+ /// 主键
+ ///
+ [HttpGet]
+ [AjaxOnly]
+ public ActionResult GetFormChildList(string keyValue)
+ {
+ var list = formulaMainIBLL.GetFormChildList(keyValue);
+
+ return Success(list);
+ }
+
+ #endregion
+
+ #region 提交数据
+
+ ///
+ /// 删除实体数据
+ ///
+ /// 主键
+ ///
+ [HttpPost]
+ [AjaxOnly]
+ public ActionResult DeleteForm(string keyValue)
+ {
+ formulaMainIBLL.DeleteEntity(keyValue);
+ return Success("删除成功!");
+ }
+ ///
+ /// 保存实体数据(新增、修改)
+ ///
+ /// 主键
+ /// 实体
+ ///
+ [HttpPost]
+ [ValidateAntiForgeryToken]
+ [AjaxOnly]
+ public ActionResult SaveForm(string keyValue, string strEntity)
+ {
+ FormulaMainEntity entity = strEntity.ToObject();
+ formulaMainIBLL.SaveEntity(keyValue,entity);
+ if (string.IsNullOrEmpty(keyValue))
+ {
+ }
+ return Success("保存成功!");
+ }
+ #endregion
+
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.cshtml
new file mode 100644
index 000000000..dd069bcfa
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.cshtml
@@ -0,0 +1,27 @@
+@{
+ ViewBag.Title = "计算项目管理";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/CalculateProject/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.js
new file mode 100644
index 000000000..61f645896
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Form.js
@@ -0,0 +1,70 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 10:04
+ * 描 述:计算项目管理
+ */
+var acceptClick;
+var keyValue = request('keyValue');
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ $('.lr-form-wrap').lrscroll();
+ page.bind();
+ page.initData();
+ },
+ bind: function () {
+ $('#Type').lrDataItemSelect({
+ code: 'projectType', select: function (item) {
+ if (item) {
+ if (item.id == '常量') {
+ $("#valueDiv").attr("style", "display:block;");
+ } else {
+ $("#valueDiv").attr("style", "display:none;");
+ }
+ }
+ }
+ });
+ $('#IsEnable').lrRadioCheckbox({
+ type: 'radio',
+ code: 'EnableStatus',
+ });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/LR_Desktop/CalculateProject/GetFormData?keyValue=' + keyValue, function (data) {
+ for (var id in data) {
+ if (!!data[id].length && data[id].length > 0) {
+ $('#' + id ).jfGridSet('refreshdata', data[id]);
+ }
+ else {
+ $('[data-table="' + id + '"]').lrSetFormData(data[id]);
+ }
+ }
+ });
+ }
+ }
+ };
+ // 保存数据
+ acceptClick = function (callBack) {
+ if (!$('body').lrValidform()) {
+ return false;
+ }
+ var strEntity = JSON.stringify($('body').lrGetFormData());
+ if (strEntity.type == '常量' && !strEntity.value) {
+ return learun.alert.warning('值不能为空!');
+ }
+
+ var postData = {
+ strEntity: strEntity
+ };
+ $.lrSaveForm(top.$.rootUrl + '/LR_Desktop/CalculateProject/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.cshtml
new file mode 100644
index 000000000..91bfd0f93
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.cshtml
@@ -0,0 +1,41 @@
+@{
+ ViewBag.Title = "计算项目管理";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/CalculateProject/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.js
new file mode 100644
index 000000000..701482011
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/CalculateProject/Index.js
@@ -0,0 +1,111 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 10:04
+ * 描 述:计算项目管理
+ */
+var refreshGirdData;
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ page.initGird();
+ page.bind();
+ },
+ bind: function () {
+ $('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
+ page.search(queryJson);
+ }, 220, 400);
+ $('#Type').lrDataItemSelect({ code: 'projectType' });
+ // 刷新
+ $('#lr_refresh').on('click', function () {
+ location.reload();
+ });
+ // 新增
+ $('#lr_add').on('click', function () {
+ learun.layerForm({
+ id: 'form',
+ title: '新增',
+ url: top.$.rootUrl + '/LR_Desktop/CalculateProject/Form',
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ });
+ // 编辑
+ $('#lr_edit').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerForm({
+ id: 'form',
+ title: '编辑',
+ url: top.$.rootUrl + '/LR_Desktop/CalculateProject/Form?keyValue=' + keyValue,
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ }
+ });
+ // 删除
+ $('#lr_delete').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerConfirm('是否确认删除该项!', function (res) {
+ if (res) {
+ learun.deleteForm(top.$.rootUrl + '/LR_Desktop/CalculateProject/DeleteForm', { keyValue: keyValue}, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ // 打印
+ $('#lr_print').on('click', function () {
+ $('#gridtable').jqprintTable();
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').jfGrid({
+ url: top.$.rootUrl + '/LR_Desktop/CalculateProject/GetPageList',
+ headData: [
+ { label: "计算项", name: "Name", width: 150, align: "left"},
+ { label: "类型", name: "Type", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op,$cell) {
+ learun.clientdata.getAsync('dataItem', {
+ key: value,
+ code: 'projectType',
+ callback: function (_data) {
+ callback(_data.text);
+ }
+ });
+ }},
+ { label: "值", name: "Value", width: 100, align: "left"},
+ { label: "排序", name: "Sort", width: 100, align: "left"},
+ { label: "状态", name: "IsEnable", width: 100, align: "left",
+ formatter: function (cellvalue) {
+ return cellvalue == 0 ? "禁用" : "启用";
+
+ }},
+ ],
+ mainId:'Id',
+ isPage: true,
+ sidx: 'Sort',
+ sord: 'ASC',
+ });
+ page.search();
+ },
+ search: function (param) {
+ param = param || {};
+ $('#gridtable').jfGridSet('reload',{ queryJson: JSON.stringify(param) });
+ }
+ };
+ refreshGirdData = function () {
+ $('#gridtable').jfGridSet('reload');
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.cshtml
new file mode 100644
index 000000000..fd089aab2
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.cshtml
@@ -0,0 +1,19 @@
+@{
+ ViewBag.Title = "公式子表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/FormulaChild/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.js
new file mode 100644
index 000000000..ed3a502c6
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Form.js
@@ -0,0 +1,52 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 11:26
+ * 描 述:公式子表
+ */
+var acceptClick;
+var keyValue = request('keyValue');
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ $('.lr-form-wrap').lrscroll();
+ page.bind();
+ page.initData();
+ },
+ bind: function () {
+ $('#MainId').lrDataSourceSelect({ code: 'FormulaMain',value: 'id',text: 'name' });
+ $('#ProjectId').lrDataSourceSelect({ code: 'CalculateProject',value: 'id',text: 'name' });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/LR_Desktop/FormulaChild/GetFormData?keyValue=' + keyValue, function (data) {
+ for (var id in data) {
+ if (!!data[id].length && data[id].length > 0) {
+ $('#' + id ).jfGridSet('refreshdata', data[id]);
+ }
+ else {
+ $('[data-table="' + id + '"]').lrSetFormData(data[id]);
+ }
+ }
+ });
+ }
+ }
+ };
+ // 保存数据
+ acceptClick = function (callBack) {
+ if (!$('body').lrValidform()) {
+ return false;
+ }
+ var postData = {
+ strEntity: JSON.stringify($('body').lrGetFormData())
+ };
+ $.lrSaveForm(top.$.rootUrl + '/LR_Desktop/FormulaChild/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.cshtml
new file mode 100644
index 000000000..e5eeb6d2e
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.cshtml
@@ -0,0 +1,37 @@
+@{
+ ViewBag.Title = "公式子表";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/FormulaChild/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.js
new file mode 100644
index 000000000..b554c9c6c
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaChild/Index.js
@@ -0,0 +1,136 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 11:26
+ * 描 述:公式子表
+ */
+var refreshGirdData;
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ page.initGird();
+ page.bind();
+ },
+ bind: function () {
+ // 初始化左侧树形数据
+ $('#dataTree').lrtree({
+ url: top.$.rootUrl + '/LR_Desktop/FormulaChild/GetTree',
+ nodeClick: function (item) {
+ page.search({ MainId: item.value });
+ }
+ });
+ // 刷新
+ $('#lr_refresh').on('click', function () {
+ location.reload();
+ });
+ // 新增
+ $('#lr_add').on('click', function () {
+ learun.layerForm({
+ id: 'form',
+ title: '新增',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaChild/Form',
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ });
+ // 编辑
+ $('#lr_edit').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerForm({
+ id: 'form',
+ title: '编辑',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaChild/Form?keyValue=' + keyValue,
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ }
+ });
+ // 删除
+ $('#lr_delete').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerConfirm('是否确认删除该项!', function (res) {
+ if (res) {
+ learun.deleteForm(top.$.rootUrl + '/LR_Desktop/FormulaChild/DeleteForm', { keyValue: keyValue }, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ //分类管理
+ $('#lr_main').on('click', function () {
+ learun.layerForm({
+ id: 'index',
+ title: '分类管理',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaMain/Index',
+ width: 1000,
+ height: 700,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+
+ });
+
+ // 打印
+ $('#lr_print').on('click', function () {
+ $('#gridtable').jqprintTable();
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').lrAuthorizeJfGrid({
+ url: top.$.rootUrl + '/LR_Desktop/FormulaChild/GetPageList',
+ headData: [
+ {
+ label: "上级", name: "MainId", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op, $cell) {
+ learun.clientdata.getAsync('custmerData', {
+ url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'FormulaMain',
+ key: value,
+ keyId: '',
+ callback: function (_data) {
+ callback(_data['']);
+ }
+ });
+ }
+ },
+ {
+ label: "计算项目", name: "ProjectId", width: 100, align: "left",
+ formatterAsync: function (callback, value, row, op, $cell) {
+ learun.clientdata.getAsync('custmerData', {
+ url: '/LR_SystemModule/DataSource/GetDataTable?code=' + 'CalculateProject',
+ key: value,
+ keyId: 'id',
+ callback: function (_data) {
+ callback(_data['name']);
+ }
+ });
+ }
+ },
+ { label: "顺序", name: "Sort", width: 100, align: "left" },
+ ],
+ mainId: 'Id',
+ isPage: true
+ });
+ page.search();
+ },
+ search: function (param) {
+ param = param || {};
+ $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
+ }
+ };
+ refreshGirdData = function () {
+ $('#gridtable').jfGridSet('reload');
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.cshtml
new file mode 100644
index 000000000..1800d2eb1
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.cshtml
@@ -0,0 +1,23 @@
+@{
+ ViewBag.Title = "公式管理";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/FormulaMain/Form.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.js
new file mode 100644
index 000000000..16fd0da23
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Form.js
@@ -0,0 +1,54 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 11:07
+ * 描 述:公式管理
+ */
+var acceptClick;
+var keyValue = request('keyValue');
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ $('.lr-form-wrap').lrscroll();
+ page.bind();
+ page.initData();
+ },
+ bind: function () {
+ $('#IsEnable').lrRadioCheckbox({
+ type: 'radio',
+ code: 'EnableStatus',
+ });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/LR_Desktop/FormulaMain/GetFormData?keyValue=' + keyValue, function (data) {
+ for (var id in data) {
+ if (!!data[id].length && data[id].length > 0) {
+ $('#' + id ).jfGridSet('refreshdata', data[id]);
+ }
+ else {
+ $('[data-table="' + id + '"]').lrSetFormData(data[id]);
+ }
+ }
+ });
+ }
+ }
+ };
+ // 保存数据
+ acceptClick = function (callBack) {
+ if (!$('body').lrValidform()) {
+ return false;
+ }
+ var postData = {
+ strEntity: JSON.stringify($('body').lrGetFormData())
+ };
+ $.lrSaveForm(top.$.rootUrl + '/LR_Desktop/FormulaMain/SaveForm?keyValue=' + keyValue, postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.cshtml
new file mode 100644
index 000000000..cdc0336f5
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.cshtml
@@ -0,0 +1,18 @@
+@{
+ ViewBag.Title = "公式子表";
+ Layout = "~/Views/Shared/_Form.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/FormulaMain/FormChild.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.js
new file mode 100644
index 000000000..500dd18a8
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/FormChild.js
@@ -0,0 +1,193 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 11:26
+ * 描 述:公式子表
+ */
+var acceptClick;
+var keyValue = request('keyValue');
+var arr = [];
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ $('.lr-form-wrap').lrscroll();
+ page.bind();
+ page.initData();
+ page.addcontent();
+ },
+ bind: function () {
+ $('#MainId').lrDataSourceSelect({ code: 'FormulaMain', value: 'id', text: 'name' });
+ $('#ProjectId').lrDataSourceSelect({ code: 'CalculateProject', value: 'id', text: 'name' });
+
+ // 新增
+ $('#lr_add').on('click', function () {
+ page.addcontent();
+ });
+ // 删除
+ $('#form').on('click',
+ '.child_delete',
+ function () {
+ var id = $(this).attr("id");
+ //删除当前行
+ $('#' + id).remove();
+ //从数组删除
+ //如果存在删除
+ removeByValue(arr, 'iid', id);
+
+ //重新排序并显示
+ arr.sort(sortBy("Sort"));
+ page.refreshRes();
+ });
+
+ //失去焦点,重新排序并显示
+ $('#form').on('blur',
+ '.sort',
+ function () {
+ var id = $(this)[0].id;
+ var parId = id.replace('Sort', '');
+ arr.forEach(m => {
+ if (m.iid == parId) {
+ return m.Sort = $('#' + id).val();
+ }
+ });
+ arr.sort(sortBy("Sort"));
+ page.refreshRes();
+ });
+ },
+ initData: function () {
+ if (!!keyValue) {
+ $.lrSetForm(top.$.rootUrl + '/LR_Desktop/FormulaMain/GetFormChildList?keyValue=' + keyValue, function (data) {
+ $('#content1').html('');
+ var html = '';
+ if (data) {
+ $('#MainId').lrselectSet(data[0].MainId);
+ for (var i = 0; i < data.length; i++) {
+ var id = learun.newGuid();
+ var html = '';
+ html += '';
+ html += '
';
+ html += '
';
+ html += '
';
+
+ $('#content1').append(html);
+ $('#pro' + id).lrDataSourceSelect({
+ code: 'CalculateProject',
+ value: 'id',
+ text: 'name',
+ select:
+ function (item) {
+ if (item) {
+ var id = $(this).attr('id');
+ var parId = id.replace('pro', '');
+ if (arr.indexOf(parId) != -1) {
+ //如果存在删除
+ removeByValue(arr, 'iid', parId);
+ }
+ arr.push({ iid: parId, ProjectId: item.id, ProjectName: item.name, Sort: $('#Sort' + parId).val() });
+
+ arr.sort(sortBy("Sort"));
+ page.refreshRes();
+ }
+ }
+ });
+
+ $('#pro' + id).lrselectSet(data[i].ProjectId);
+ }
+
+ } else {
+ page.addcontent();
+ }
+ });
+ }
+ },
+ addcontent: function () {
+ var id = learun.newGuid();
+ var html = '';
+ html += '';
+ html += '
';
+ html += '
';
+ html += '
';
+ $('#content1').append(html);
+ $('#pro' + id).lrDataSourceSelect({
+ code: 'CalculateProject',
+ value: 'id',
+ text: 'name',
+ select:
+ function (item) {
+ if (item) {
+ var id = $(this).attr('id');
+ var parId = id.replace('pro', '');
+ if (arr.indexOf(parId) != -1) {
+ //如果存在删除
+ removeByValue(arr, 'iid', parId);
+ }
+ arr.push({ iid: parId, ProjectId: item.id, ProjectName: item.name, Sort: $('#Sort' + parId).val() });
+
+ arr.sort(sortBy("Sort"));
+ page.refreshRes();
+ }
+ }
+ });
+ },
+ refreshRes: function () {
+ //页面显示公式结果
+ var text = '';
+ arr.forEach(m => {
+ text += m.ProjectName;
+ });
+ $('#result').html(text);
+ }
+ };
+ // 保存数据
+ acceptClick = function (callBack) {
+ if (!$('body').lrValidform()) {
+ return false;
+ }
+ var strEntity = JSON.stringify($('body').lrGetFormData());
+
+ var postData = {
+ mainEntity: strEntity,
+ strEntity: arr
+ };
+ $.lrSaveForm(top.$.rootUrl + '/LR_Desktop/FormulaChild/SaveList', postData, function (res) {
+ // 保存成功后才回调
+ if (!!callBack) {
+ callBack();
+ }
+ });
+ };
+ page.init();
+ //删除数组元素
+ function removeByValue(arr, attr, value) {
+ var index = 0;
+ for (var i in arr) {
+ if (arr[i][attr] == value) {
+ index = i;
+ break;
+ }
+ }
+ arr.splice(index, 1);
+ }
+
+ //数组排序
+ function sortBy(props) {
+ return function (a, b) {
+ return a[props] - b[props];
+ }
+ }
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.cshtml
new file mode 100644
index 000000000..a26fc5ead
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.cshtml
@@ -0,0 +1,38 @@
+@{
+ ViewBag.Title = "公式管理";
+ Layout = "~/Views/Shared/_Index.cshtml";
+}
+
+@Html.AppendJsFile("/Areas/LR_Desktop/Views/FormulaMain/Index.js")
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.js
new file mode 100644
index 000000000..3d6ce9711
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/FormulaMain/Index.js
@@ -0,0 +1,117 @@
+/* * 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架(http://www.learun.cn)
+ * Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ * 创建人:超级管理员
+ * 日 期:2021-06-22 11:07
+ * 描 述:公式管理
+ */
+var refreshGirdData;
+var bootstrap = function ($, learun) {
+ "use strict";
+ var page = {
+ init: function () {
+ page.initGird();
+ page.bind();
+ },
+ bind: function () {
+ $('#multiple_condition_query').lrMultipleQuery(function (queryJson) {
+ page.search(queryJson);
+ }, 220, 400);
+ // 刷新
+ $('#lr_refresh').on('click', function () {
+ location.reload();
+ });
+ // 新增
+ $('#lr_add').on('click', function () {
+ learun.layerForm({
+ id: 'form',
+ title: '新增',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaMain/Form',
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ });
+ // 编辑
+ $('#lr_edit').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerForm({
+ id: 'form',
+ title: '编辑',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaMain/Form?keyValue=' + keyValue,
+ width: 600,
+ height: 400,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ }
+ });
+ // 编辑公式
+ $('#lr_editgs').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerForm({
+ id: 'form',
+ title: '编辑',
+ url: top.$.rootUrl + '/LR_Desktop/FormulaMain/FormChild?keyValue=' + keyValue,
+ width: 600,
+ height: 500,
+ callBack: function (id) {
+ return top[id].acceptClick(refreshGirdData);
+ }
+ });
+ }
+ });
+ // 删除
+ $('#lr_delete').on('click', function () {
+ var keyValue = $('#gridtable').jfGridValue('Id');
+ if (learun.checkrow(keyValue)) {
+ learun.layerConfirm('是否确认删除该项!', function (res) {
+ if (res) {
+ learun.deleteForm(top.$.rootUrl + '/LR_Desktop/FormulaMain/DeleteForm', { keyValue: keyValue }, function () {
+ refreshGirdData();
+ });
+ }
+ });
+ }
+ });
+ // 打印
+ $('#lr_print').on('click', function () {
+ $('#gridtable').jqprintTable();
+ });
+ },
+ // 初始化列表
+ initGird: function () {
+ $('#gridtable').jfGrid({
+ url: top.$.rootUrl + '/LR_Desktop/FormulaMain/GetPageList',
+ headData: [
+ { label: "名称", name: "Name", width: 100, align: "left" },
+ { label: "排序", name: "Sort", width: 100, align: "left" },
+ {
+ label: "状态", name: "IsEnable", width: 100, align: "left",
+ formatter: function (cellvalue) {
+ return cellvalue == 0 ? "禁用" : "启用";
+
+ }
+ },
+ { label: "公式", name: "Result", width: 250, align: "left" },
+ { label: "描述", name: "Desc", width: 100, align: "left" }
+ ],
+ mainId: 'Id',
+ isPage: true
+ });
+ page.search();
+ },
+ search: function (param) {
+ param = param || {};
+ $('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
+ }
+ };
+ refreshGirdData = function () {
+ $('#gridtable').jfGridSet('reload');
+ };
+ page.init();
+}
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
index 1043409c1..d7e595e09 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
@@ -814,6 +814,9 @@
+
+
+
@@ -1285,6 +1288,7 @@
+
@@ -6490,6 +6494,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
@@ -7323,6 +7339,7 @@
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/CalculateProjectMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/CalculateProjectMap.cs
new file mode 100644
index 000000000..78780b402
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/CalculateProjectMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 10:04
+ /// 描 述:计算项目管理
+ ///
+ public class CalculateProjectMap : EntityTypeConfiguration
+ {
+ public CalculateProjectMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("CALCULATEPROJECT");
+ //主键
+ this.HasKey(t => t.Id);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaChildMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaChildMap.cs
new file mode 100644
index 000000000..64782dbd2
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaChildMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 11:26
+ /// 描 述:公式子表
+ ///
+ public class FormulaChildMap : EntityTypeConfiguration
+ {
+ public FormulaChildMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("FORMULACHILD");
+ //主键
+ this.HasKey(t => t.Id);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaMainMap.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaMainMap.cs
new file mode 100644
index 000000000..2935e1718
--- /dev/null
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_Desktop/FormulaMainMap.cs
@@ -0,0 +1,29 @@
+using Learun.Application.TwoDevelopment.LR_Desktop;
+using System.Data.Entity.ModelConfiguration;
+
+namespace Learun.Application.Mapping
+{
+ ///
+ /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
+ /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
+ /// 创 建:超级管理员
+ /// 日 期:2021-06-22 11:07
+ /// 描 述:公式管理
+ ///
+ public class FormulaMainMap : EntityTypeConfiguration
+ {
+ public FormulaMainMap()
+ {
+ #region 表、主键
+ //表
+ this.ToTable("FORMULAMAIN");
+ //主键
+ this.HasKey(t => t.Id);
+ #endregion
+
+ #region 配置关系
+ #endregion
+ }
+ }
+}
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
index 1042ec8f5..ff5bf0590 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj
@@ -566,6 +566,9 @@
+
+
+
diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
index a91318dc1..8ea20a359 100644
--- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
+++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/DBModel/资产系统.PDM
@@ -1,5 +1,5 @@
-
+
@@ -12,8 +12,8 @@
PHYSICAL_DATA_MODEL_1
0
-1623922619
-edz
+1624325901
+edy
[FolderOptions]
[FolderOptions\Physical Objects]
@@ -3675,8 +3675,8 @@ PhysOpts=
DIAGRAM_1
0
-1623922619
-edz
+1624325901
+edy
[DisplayPreferences]
[DisplayPreferences\PDM]
@@ -4636,25 +4636,11 @@ Shadow=0
新宋体,8,N
1
-
-后勤-项目管理
-1623920863
-1623920893
-((-417689,-15282), (-410208,-11682))
-4130
-0
-0
-7
-0
-12632256
-新宋体,8,N
-1
-
-
+
1552635393
1581041982
-((1162,-25709), (2412,-23533))
-((1787,-25309),(1787,-23933))
+((1191,-24970), (2441,-23170))
+((1816,-23847),(1816,-24570))
1
1
12615680
@@ -4663,20 +4649,20 @@ Shadow=0
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1552635777
1581041982
-((619,-61101), (1869,-57683))
-((1244,-60701),(1244,-58083))
+((634,-60945), (1884,-59145))
+((1259,-60214),(1259,-59545))
1
1
12615680
@@ -4685,20 +4671,20 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553245426
1581041982
-((6790,-65563), (26694,-61058))
-((7190,-65163),(26069,-65163),(26069,-61458))
+((7438,-65460), (26694,-61470))
+((7838,-65060),(26069,-65060),(26069,-61870))
1
1
12615680
@@ -4707,20 +4693,20 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553247802
1581041982
-((58567,9999), (59817,17167))
-((59192,10399),(59192,16767))
+((58623,10449), (59873,16755))
+((59248,10849),(59248,16355))
1
1
12615680
@@ -4729,20 +4715,20 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553248376
1581041982
-((69546,-13370), (78605,-12120))
-((78205,-12745),(69946,-12745))
+((70797,-13380), (77841,-12130))
+((77441,-12755),(71197,-12755))
1
1
12615680
@@ -4751,20 +4737,20 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553248622
1581041982
-((58069,-30809), (77405,-29009))
-((77005,-29809),(58694,-29809),(58694,-30409))
+((58144,-30472), (76641,-28672))
+((76241,-29393),(58769,-29393),(58769,-30072))
1
1
12615680
@@ -4773,140 +4759,140 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553480798
1581041982
-((50318,-8722), (51718,17167))
-((51018,16767),(51018,-8322))
+((49461,-8347), (50861,16755))
+((50161,16355),(50161,-7947))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553480802
1581041982
-((64088,-8909), (86102,5550))
-((64488,5150),(85402,5150),(85402,-8509))
+((64760,-8572), (86102,5550))
+((65160,5150),(85402,5150),(85402,-8172))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553480824
1581041982
-((83498,-27247), (84898,-16133))
-((84198,-16533),(84198,-26847))
+((83438,-26572), (84838,-16470))
+((84138,-16870),(84138,-26172))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553480944
1581041982
-((56791,-30809), (58191,-16770))
-((57491,-30409),(57491,-17170))
+((56698,-30472), (58098,-17145))
+((57398,-30072),(57398,-17545))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553481652
1581041982
-((25669,-52184), (47553,-33326))
-((26069,-51784),(26069,-34026),(47153,-34026))
+((25669,-51772), (46348,-33293))
+((26069,-51372),(26069,-33993),(45948,-33993))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553481745
1581041982
-((6790,-66763), (84902,-41895))
-((7190,-66363),(84202,-66363),(84202,-42295))
+((7438,-66763), (84902,-42570))
+((7838,-66363),(84202,-66363),(84202,-42970))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553483161
1581041982
-((14137,-77190), (24505,-75940))
-((24105,-76565),(14537,-76565))
+((15342,-77115), (23833,-75865))
+((23433,-76490),(15742,-76490))
1
1
12615680
@@ -4915,60 +4901,60 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553483170
1581041982
-((14137,-78760), (23905,-61058))
-((23505,-61458),(23505,-78060),(14537,-78060))
+((15342,-78527), (23635,-61470))
+((23235,-61870),(23235,-77827),(15742,-77827))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1553483177
1581041982
-((6790,-68863), (24505,-67463))
-((7190,-68163),(24105,-68163))
+((7438,-68683), (23833,-67283))
+((7838,-67983),(23433,-67983))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1555404296
1581041982
-((2591,39817), (10794,41067))
-((10394,40442),(2991,40442))
+((3634,39812), (9751,41062))
+((9351,40437),(4034,40437))
1
1
12615680
@@ -4977,16 +4963,16 @@ DESTINATION 0 新宋体,8,N
SOURCE 0 新宋体,8,N
DESTINATION 0 新宋体,8,N
-
+
-
+
-
+
-
+
1585299189
1585299191
((-143263,-33234), (-141863,-22806))
@@ -4997,16 +4983,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1585299189
1585299191
((-116299,-33581), (-114899,-23315))
@@ -5017,16 +5003,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1585299189
1585299191
((-135354,-37414), (-124088,-36014))
@@ -5037,16 +5023,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1589786013
1589786018
((-41936,170162), (-38251,171562))
@@ -5057,16 +5043,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1589786013
1589786018
((-59521,169408), (-54334,170808))
@@ -5077,16 +5063,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1589786013
1589786018
((-21829,170162), (-17125,171562))
@@ -5097,16 +5083,16 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1589786013
1589786018
((-22303,157539), (-17273,158939))
@@ -5117,100 +5103,100 @@ DESTINATION 0 新宋体,8,N
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1590138702
1590457070
-((-83182,146928), (-76465,148328))
-((-82782,147628),(-76865,147628))
+((-82672,146926), (-77067,148326))
+((-82272,147626),(-77467,147626))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1590138719
1590457068
-((-88551,149317), (-87151,157817))
-((-87851,149717),(-87851,157417))
+((-88161,149416), (-86761,156805))
+((-87461,149816),(-87461,156405))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1590462306
1590462306
-((-103645,145262), (-102245,157817))
-((-102945,145662),(-102945,157417))
+((-104097,145361), (-102697,156805))
+((-103397,145761),(-103397,156405))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1590462308
1590462308
-((-114051,143182), (-107614,144582))
-((-108014,143882),(-113651,143882))
+((-113379,143188), (-108124,144588))
+((-108524,143888),(-112979,143888))
1
8
16744576
12632256
OBJXSTR 0 新宋体,8,N
-
+
-
+
-
+
-
+
1552554261
1581041982
-1
-((-5409,-23933), (8985,-9309))
+((-6173,-24570), (9749,-8672))
12615680
16570034
12632256
@@ -5228,14 +5214,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552555337
1581041982
-1
-((-24252,-22798), (-9858,-10650))
+((-25016,-23323), (-9094,-10125))
12615680
16570034
12632256
@@ -5253,14 +5239,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552555914
1581041982
-1
-((-5522,-496), (6554,6702))
+((-6147,-796), (7179,7002))
12615680
16570034
12632256
@@ -5278,14 +5264,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552617547
1623220673
-1
-((47442,-17170), (69946,-8322))
+((46191,-17545), (71197,-7947))
12615680
16570034
12632256
@@ -5303,14 +5289,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552617908
1623220673
-1
-((51640,-99), (64488,10399))
+((50968,-549), (65160,10849))
12615680
16570034
12632256
@@ -5328,14 +5314,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552621432
1623220673
-1
-((-5272,-72025), (7190,-60701))
+((-5920,-72512), (7838,-60214))
12615680
16570034
12632256
@@ -5353,14 +5339,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552634867
1623220673
-1
-((-5566,-58083), (8054,-25309))
+((-6284,-59545), (8772,-23847))
12615680
16570034
12632256
@@ -5378,14 +5364,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1552636024
1581041982
-1
-((-25717,-533), (-14413,6665))
+((-26296,-833), (-13834,6965))
12615680
16570034
12632256
@@ -5403,14 +5389,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553243203
1623220673
-1
-((47153,-38433), (68885,-30409))
+((45948,-38770), (70090,-30072))
12615680
16570034
12632256
@@ -5428,14 +5414,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553245366
1623220673
-1
-((19259,-61458), (32879,-51784))
+((18541,-61870), (33597,-51372))
12615680
16570034
12632256
@@ -5453,14 +5439,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553247490
1623220673
-1
-((47937,16767), (70441,26441))
+((46686,16355), (71692,26853))
12615680
16570034
12632256
@@ -5478,14 +5464,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553248023
1623220673
-1
-((78205,-16533), (92599,-8509))
+((77441,-16870), (93363,-8172))
12615680
16570034
12632256
@@ -5503,14 +5489,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553248462
1623220673
-1
-((77005,-42295), (91399,-26847))
+((76241,-42970), (92163,-26172))
12615680
16570034
12632256
@@ -5528,14 +5514,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553481769
1623220673
-1
-((-7195,-85635), (14537,-75961))
+((-8400,-86047), (15742,-75549))
12615680
16570034
12632256
@@ -5553,14 +5539,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1553481769
1623220673
-1
-((24105,-80535), (36953,-67561))
+((23433,-81097), (37625,-66999))
12615680
16570034
12632256
@@ -5578,14 +5564,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1555401810
1623220673
-1
-((-16037,32718), (2991,48166))
+((-17080,32043), (4034,48841))
12615680
16570034
12632256
@@ -5603,14 +5589,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1555401814
1623220673
-1
-((10394,34484), (29422,46632))
+((9351,33959), (30465,47157))
12615680
16570034
12632256
@@ -5628,14 +5614,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1555898719
1623220673
-1
-((-80067,37196), (-69923,43570))
+((-80577,36934), (-69413,43832))
12615680
16570034
12632256
@@ -5653,10 +5639,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
统一身份认证
1555898726
1581041982
@@ -5670,7 +5656,7 @@ LABL 0 新宋体,8,N
新宋体,14,N
1
-
+
1555899309
1581041982
-1
@@ -5694,10 +5680,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1555900067
1581041982
-1
@@ -5721,10 +5707,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1555990961
1581041982
-1
@@ -5748,10 +5734,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
问卷调查
1555990961
1581041982
@@ -5765,7 +5751,7 @@ LABL 0 新宋体,8,N
新宋体,16,B
1
-
+
1555990961
1581041982
-1
@@ -5789,10 +5775,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1555990961
1581041982
-1
@@ -5816,10 +5802,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1555990961
1581041982
-1
@@ -5843,14 +5829,14 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1556001443
1623220673
-1
-((-96539,75842), (-86395,82216))
+((-97049,75580), (-85885,82478))
12615680
16570034
12632256
@@ -5868,14 +5854,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1556071766
1623220673
-1
-((60321,49811), (75873,57009))
+((59487,49511), (76707,57309))
12615680
16570034
12632256
@@ -5893,10 +5879,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1556261625
1581041982
-1
@@ -5920,10 +5906,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
青桔
1560936845
1581041982
@@ -5937,7 +5923,7 @@ LABL 0 新宋体,8,N
新宋体,12,B
1
-
+
1560999529
1581041982
-1
@@ -5961,10 +5947,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
{\rtf1\ansi\ansicpg936\deff0\nouicompat\deflang1033\deflangfe2052{\fonttbl{\f0\froman \'ce\'a2\'c8\'ed\'d1\'c5\'ba\'da;}{\f1\fnil\fcharset0 Microsoft Sans Serif;}}
{\*\generator Riched20 10.0.17134}\viewkind4\uc1
\pard\qc\f0\fs24\lang2052\u23398?\u29983?\u20303?\u23487?\u31649?\u29702?\f1\fs20\par
@@ -5982,7 +5968,7 @@ LABL 0 新宋体,8,N
新宋体,8,N
1
-
+
{\rtf1\ansi\ansicpg936\deff0\nouicompat\deflang1033\deflangfe2052{\fonttbl{\f0\froman \'ce\'a2\'c8\'ed\'d1\'c5\'ba\'da;}{\f1\fnil\fcharset0 Microsoft Sans Serif;}}
{\*\generator Riched20 10.0.17763}\viewkind4\uc1
\pard\f0\fs29\lang2052\u22270?\u20070?\u31649?\u29702?\f1\fs20\par
@@ -6000,7 +5986,7 @@ LABL 0 新宋体,8,N
新宋体,8,N
1
-
+
{\rtf1\ansi\ansicpg936\deff0\nouicompat\deflang1033\deflangfe2052{\fonttbl{\f0\froman\fcharset134 \'ce\'a2\'c8\'ed\'d1\'c5\'ba\'da;}{\f1\fnil\fcharset0 Microsoft Sans Serif;}}
{\*\generator Riched20 10.0.17763}\viewkind4\uc1
\pard\f0\fs29\lang2052\'bd\'cc\'ca\'a6\'bf\'bc\'c7\'da\f1\fs20\par
@@ -6018,11 +6004,11 @@ LABL 0 新宋体,8,N
新宋体,8,N
1
-
+
1562579519
1623220673
-1
-((50937,58882), (62627,80106))
+((50335,57945), (63229,81043))
12615680
16570034
12632256
@@ -6040,14 +6026,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((65954,71043), (77258,79067))
+((65375,70706), (77837,79404))
12615680
16570034
12632256
@@ -6065,14 +6051,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((27508,94822), (38426,101196))
+((26953,94560), (38981,101458))
12615680
16570034
12632256
@@ -6090,14 +6076,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((39571,91497), (51261,101171))
+((38969,91085), (51863,101583))
12615680
16570034
12632256
@@ -6115,14 +6101,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((52128,87485), (64204,101283))
+((51503,86885), (64829,101883))
12615680
16570034
12632256
@@ -6140,14 +6126,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((15090,96299), (26394,101023))
+((14511,96112), (26973,101210))
12615680
16570034
12632256
@@ -6165,14 +6151,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((14897,86435), (26587,95283))
+((14295,86060), (27189,95658))
12615680
16570034
12632256
@@ -6190,14 +6176,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((27411,86386), (39873,90386))
+((26763,86287), (40521,90485))
12615680
16570034
12632256
@@ -6215,14 +6201,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579519
1623220673
-1
-((71939,95817), (83243,102191))
+((71360,95555), (83822,102453))
12615680
16570034
12632256
@@ -6240,14 +6226,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579541
1623220673
-1
-((-8717,94679), (1427,98679))
+((-9227,94580), (1937,98778))
12615680
16570034
12632256
@@ -6265,10 +6251,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1562579541
1581041982
-1
@@ -6292,14 +6278,14 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1562579541
1623220673
-1
-((2430,87134), (13734,93508))
+((1851,86872), (14313,93770))
12615680
16570034
12632256
@@ -6317,14 +6303,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1563327388
1623220673
-1
-((94027,49187), (111511,114961))
+((93078,46225), (112460,117923))
12615680
16570034
12632256
@@ -6342,14 +6328,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727369
1623220673
-1
-((-247878,46888), (-235416,52436))
+((-248526,46663), (-234768,52661))
12615680
16570034
12632256
@@ -6367,10 +6353,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
教务基本信息
1564727448
1581041982
@@ -6384,11 +6370,11 @@ LABL 0 新宋体,8,N
新宋体,8,N
1
-
+
1564727458
1623220673
-1
-((-231996,44362), (-217988,54860))
+((-232737,43912), (-217247,55310))
12615680
16570034
12632256
@@ -6406,14 +6392,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727462
1623220673
-1
-((-212279,42847), (-193251,56645))
+((-213322,42247), (-192208,57245))
12615680
16570034
12632256
@@ -6431,14 +6417,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727478
1623220673
-1
-((-247038,32333), (-234576,38707))
+((-247686,32071), (-233928,38969))
12615680
16570034
12632256
@@ -6456,14 +6442,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727484
1623220673
-1
-((-230518,19679), (-210330,39253))
+((-231629,18817), (-209219,40115))
12615680
16570034
12632256
@@ -6481,14 +6467,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727491
1623220673
-1
-((-247336,23802), (-233328,28526))
+((-248077,23615), (-232587,28713))
12615680
16570034
12632256
@@ -6506,14 +6492,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727497
1623220673
-1
-((-205599,28848), (-191205,37696))
+((-206363,28473), (-190441,38071))
12615680
16570034
12632256
@@ -6531,14 +6517,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727510
1623220673
-1
-((-246904,9482), (-234442,15030))
+((-247552,9257), (-233794,15255))
12615680
16570034
12632256
@@ -6556,14 +6542,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727515
1623220673
-1
-((-230767,6056), (-207489,15730))
+((-232064,5644), (-206192,16142))
12615680
16570034
12632256
@@ -6581,14 +6567,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727521
1623220673
-1
-((-204519,12371), (-192829,16371))
+((-205121,12272), (-192227,16470))
12615680
16570034
12632256
@@ -6606,14 +6592,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1564727535
1623220673
-1
-((-243983,-9670), (-218003,1654))
+((-245443,-10157), (-216543,2141))
12615680
16570034
12632256
@@ -6631,14 +6617,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568084423
1581041982
-1
-((13619,-16250), (23171,-9052))
+((13133,-16550), (23657,-8752))
12615680
16570034
12632256
@@ -6656,14 +6642,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568085572
1623220673
-1
-((14144,-41586), (23696,-35212))
+((13658,-41848), (24182,-34950))
12615680
16570034
12632256
@@ -6681,14 +6667,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568085575
1623220673
-1
-((13916,-30611), (23468,-24237))
+((13430,-30873), (23954,-23975))
12615680
16570034
12632256
@@ -6706,14 +6692,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568107582
1581041982
-1
-((28148,-17599), (42542,-2151))
+((27384,-18274), (43306,-1476))
12615680
16570034
12632256
@@ -6731,14 +6717,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568164892
1581041982
-1
-((28148,-33237), (42542,-18613))
+((27384,-33874), (43306,-17976))
12615680
16570034
12632256
@@ -6756,10 +6742,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1568165051
1581041982
-1
@@ -6783,14 +6769,14 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1569645311
1623220673
-1
-((-69804,-39309), (-58500,-31285))
+((-70383,-39646), (-57921,-30948))
12615680
16570034
12632256
@@ -6808,14 +6794,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1569646063
1623220673
-1
-((-52179,-39533), (-40875,-31509))
+((-52758,-39870), (-40296,-31172))
12615680
16570034
12632256
@@ -6833,14 +6819,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1569719832
1623220673
-1
-((-69761,-45344), (-58843,-39796))
+((-70316,-45569), (-58288,-39571))
12615680
16570034
12632256
@@ -6858,14 +6844,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1569720903
1623220673
-1
-((-53510,-45759), (-44344,-39385))
+((-53973,-46021), (-43881,-39123))
12615680
16570034
12632256
@@ -6883,10 +6869,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1569814225
1581041982
-1
@@ -6910,10 +6896,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1569814225
1581041982
-1
@@ -6937,10 +6923,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1569814225
1581041982
-1
@@ -6964,10 +6950,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1569814225
1581041982
-1
@@ -6991,10 +6977,10 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
评教功能
1569814233
1581041982
@@ -7008,11 +6994,11 @@ LABL 0 新宋体,8,N
新宋体,16,B
1
-
+
1571301572
1623220673
-1
-((44882,-24988), (55206,-18614))
+((44349,-25250), (55739,-18352))
12615680
16570034
12632256
@@ -7030,10 +7016,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1571732106
1581041982
-1
@@ -7055,14 +7041,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1573701666
1623220673
-1
-((-10625,-91701), (1065,-86153))
+((-11227,-91926), (1667,-85928))
12615680
16570034
12632256
@@ -7080,14 +7066,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062455
1623220673
-1
-((-142394,-66779), (-132250,-62055))
+((-142904,-66966), (-131740,-61868))
12615680
16570034
12632256
@@ -7105,14 +7091,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062456
1623220673
-1
-((-129108,-66658), (-118964,-61934))
+((-129618,-66845), (-118454,-61747))
12615680
16570034
12632256
@@ -7130,14 +7116,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062863
1623220673
-1
-((-142515,-73848), (-132371,-69124))
+((-143025,-74035), (-131861,-68937))
12615680
16570034
12632256
@@ -7155,14 +7141,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062880
1623220673
-1
-((-142999,-81336), (-132855,-76612))
+((-143509,-81523), (-132345,-76425))
12615680
16570034
12632256
@@ -7180,14 +7166,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062883
1623220673
-1
-((-128624,-80370), (-118480,-75646))
+((-129134,-80557), (-117970,-75459))
12615680
16570034
12632256
@@ -7205,14 +7191,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574062883
1623220673
-1
-((-128625,-73122), (-118481,-68398))
+((-129135,-73309), (-117971,-68211))
12615680
16570034
12632256
@@ -7230,14 +7216,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574067182
1623220673
-1
-((-216494,-3976), (-204032,2398))
+((-217142,-4238), (-203384,2660))
12615680
16570034
12632256
@@ -7255,14 +7241,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574068698
1623220673
-1
-((-249678,-67951), (-238760,-59927))
+((-250233,-68288), (-238205,-59590))
12615680
16570034
12632256
@@ -7280,14 +7266,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574068698
1623220673
-1
-((-236367,-67427), (-224291,-56103))
+((-236992,-67914), (-223666,-55616))
12615680
16570034
12632256
@@ -7305,10 +7291,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574068699
1581041982
-1
@@ -7332,14 +7318,14 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1574068699
1623220673
-1
-((-253254,-82446), (-241950,-74422))
+((-253833,-82783), (-241371,-74085))
12615680
16570034
12632256
@@ -7357,14 +7343,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574068700
1623220673
-1
-((-234290,-82879), (-222986,-75681))
+((-234869,-83179), (-222407,-75381))
12615680
16570034
12632256
@@ -7382,14 +7368,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574068701
1623220673
-1
-((-216222,-79641), (-205304,-74093))
+((-216777,-79866), (-204749,-73868))
12615680
16570034
12632256
@@ -7407,14 +7393,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574126940
1623220673
-1
-((-254462,-92009), (-243158,-85635))
+((-255041,-92271), (-242579,-85373))
12615680
16570034
12632256
@@ -7432,14 +7418,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574131527
1623220673
-1
-((-240039,-104299), (-229121,-97101))
+((-240594,-104599), (-228566,-96801))
12615680
16570034
12632256
@@ -7457,14 +7443,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574133606
1623220673
-1
-((-229283,-132539), (-217979,-127815))
+((-229862,-132726), (-217400,-127628))
12615680
16570034
12632256
@@ -7482,14 +7468,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574143721
1581484342
-1
-((-238928,-163916), (-227624,-153418))
+((-239507,-164366), (-227045,-152968))
12615680
16570034
12632256
@@ -7507,14 +7493,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574143722
1581484343
-1
-((-223200,-160124), (-213442,-154576))
+((-223686,-160349), (-212956,-154351))
12615680
16570034
12632256
@@ -7532,14 +7518,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574144579
1581483904
-1
-((-209001,-159261), (-199243,-153713))
+((-209487,-159486), (-198757,-153488))
12615680
16570034
12632256
@@ -7557,14 +7543,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574145306
1581483913
-1
-((-197857,-158578), (-188099,-153854))
+((-198343,-158765), (-187613,-153667))
12615680
16570034
12632256
@@ -7582,14 +7568,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574145885
1581483934
-1
-((-197849,-165635), (-188091,-160911))
+((-198335,-165822), (-187605,-160724))
12615680
16570034
12632256
@@ -7607,14 +7593,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574146004
1581483937
-1
-((-184995,-160242), (-173691,-153868))
+((-185574,-160504), (-173112,-153606))
12615680
16570034
12632256
@@ -7632,14 +7618,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574146268
1581483940
-1
-((-184777,-168394), (-173473,-162020))
+((-185356,-168656), (-172894,-161758))
12615680
16570034
12632256
@@ -7657,14 +7643,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1574146328
1581483942
-1
-((-184807,-178271), (-173503,-171073))
+((-185386,-178571), (-172924,-170773))
12615680
16570034
12632256
@@ -7682,14 +7668,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1576201288
1623220673
-1
-((-54069,-224789), (-43151,-216765))
+((-54624,-225126), (-42596,-216428))
12615680
16570034
12632256
@@ -7707,14 +7693,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1576202064
1623220673
-1
-((-69161,-224127), (-58243,-216929))
+((-69716,-224427), (-57688,-216629))
12615680
16570034
12632256
@@ -7732,14 +7718,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1576203521
1623220673
-1
-((-68751,-230104), (-58993,-225380))
+((-69237,-230291), (-58507,-225193))
12615680
16570034
12632256
@@ -7757,14 +7743,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577686109
1623220673
-1
-((-256077,-159126), (-245933,-153578))
+((-256587,-159351), (-245423,-153353))
12615680
16570034
12632256
@@ -7782,14 +7768,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577686110
1623220673
-1
-((-256109,-164714), (-246351,-159990))
+((-256595,-164901), (-245865,-159803))
12615680
16570034
12632256
@@ -7807,14 +7793,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577686111
1623220673
-1
-((-256134,-178624), (-242126,-164826))
+((-256875,-179224), (-241385,-164226))
12615680
16570034
12632256
@@ -7832,14 +7818,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577686111
1623220673
-1
-((-256132,-185151), (-244828,-179603))
+((-256711,-185376), (-244249,-179378))
12615680
16570034
12632256
@@ -7857,14 +7843,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577688245
1623220673
-1
-((-256254,-192012), (-245336,-185638))
+((-256809,-192274), (-244781,-185376))
12615680
16570034
12632256
@@ -7882,14 +7868,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577689702
1581041982
-1
-((-226597,-200425), (-216067,-194051))
+((-227130,-200687), (-215534,-193789))
12615680
16570034
12632256
@@ -7907,14 +7893,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577689702
1581041982
-1
-((-214973,-199660), (-202125,-194112))
+((-215645,-199885), (-201453,-193887))
12615680
16570034
12632256
@@ -7932,10 +7918,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
{\rtf1\ansi\ansicpg936\deff0\nouicompat\deflang1033\deflangfe2052{\fonttbl{\f0\froman\fcharset134 \'ce\'a2\'c8\'ed\'d1\'c5\'ba\'da;}{\f1\fnil\fcharset0 Microsoft Sans Serif;}}
{\*\generator Riched20 10.0.17763}\viewkind4\uc1
\pard\qc\f0\fs29\lang2052\'bf\'c6\'d1\'d0\'b9\'dc\'c0\'ed\f1\fs20\par
@@ -7953,11 +7939,11 @@ LABL 0 新宋体,8,N
新宋体,8,N
1
-
+
1577698047
1581041982
-1
-((-201583,-199543), (-188735,-193995))
+((-202255,-199768), (-188063,-193770))
12615680
16570034
12632256
@@ -7975,14 +7961,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577698048
1581041982
-1
-((-226652,-209302), (-215348,-201278))
+((-227231,-209639), (-214769,-200941))
12615680
16570034
12632256
@@ -8000,14 +7986,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577698061
1581041982
-1
-((-213162,-207112), (-202244,-200738))
+((-213717,-207374), (-201689,-200476))
12615680
16570034
12632256
@@ -8025,14 +8011,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577947155
1623220673
-1
-((-404051,196114), (-391203,207438))
+((-404723,195627), (-390531,207925))
12615680
16570034
12632256
@@ -8050,14 +8036,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577947697
1623220673
-1
-((-403919,187589), (-388367,194787))
+((-404753,187289), (-387533,195087))
12615680
16570034
12632256
@@ -8075,14 +8061,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577948321
1623220673
-1
-((-404132,177129), (-391284,185153))
+((-404804,176792), (-390612,185490))
12615680
16570034
12632256
@@ -8100,14 +8086,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577948758
1623220673
-1
-((-385846,200802), (-374928,205526))
+((-386401,200615), (-374373,205713))
12615680
16570034
12632256
@@ -8125,14 +8111,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577949086
1623220673
-1
-((-386325,189557), (-373863,199231))
+((-386973,189145), (-373215,199643))
12615680
16570034
12632256
@@ -8150,14 +8136,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1577949314
1623220673
-1
-((-386552,181728), (-374862,188102))
+((-387154,181466), (-374260,188364))
12615680
16570034
12632256
@@ -8175,14 +8161,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1579242092
1623220673
-1
-((-13795,-160986), (599,-140588))
+((-14559,-161886), (1363,-139688))
12615680
16570034
12632256
@@ -8200,14 +8186,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1580696016
1581041982
-1
-((-126715,-143784), (-113481,-123386))
+((-127410,-144684), (-112786,-122486))
12615680
16570034
12632256
@@ -8225,14 +8211,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1580699304
1581041982
-1
-((-110581,-136163), (-99663,-124015))
+((-111136,-136688), (-99108,-123490))
12615680
16570034
12632256
@@ -8250,14 +8236,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581042048
1623220673
-1
-((-423636,91271), (-412332,98469))
+((-424215,90971), (-411753,98769))
12615680
16570034
12632256
@@ -8275,14 +8261,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581042914
1623220673
-1
-((-410548,91254), (-399244,98452))
+((-411127,90954), (-398665,98752))
12615680
16570034
12632256
@@ -8300,14 +8286,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581043658
1623220673
-1
-((-396751,90325), (-385833,98349))
+((-397306,89988), (-385278,98686))
12615680
16570034
12632256
@@ -8325,14 +8311,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581048875
1623220673
-1
-((-423521,81471), (-412603,90319))
+((-424076,81096), (-412048,90694))
12615680
16570034
12632256
@@ -8350,14 +8336,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581049359
1623220673
-1
-((-409998,83938), (-399080,90312))
+((-410553,83676), (-398525,90574))
12615680
16570034
12632256
@@ -8375,14 +8361,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581049730
1623220673
-1
-((-397174,83927), (-386256,88651))
+((-397729,83740), (-385701,88838))
12615680
16570034
12632256
@@ -8400,14 +8386,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581322202
1581333345
-1
-((-110462,-147464), (-98000,-138616))
+((-111110,-147839), (-97352,-138241))
12615680
16570034
12632256
@@ -8425,14 +8411,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581333346
1581333349
-1
-((-98065,-135988), (-87147,-123840))
+((-98620,-136513), (-86592,-123315))
12615680
16570034
12632256
@@ -8450,14 +8436,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581483965
1623220673
-1
-((-272908,-162760), (-261604,-153912))
+((-273487,-163135), (-261025,-153537))
12615680
16570034
12632256
@@ -8475,14 +8461,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581484360
1623220673
-1
-((-273166,-171156), (-260318,-164782))
+((-273838,-171418), (-259646,-164520))
12615680
16570034
12632256
@@ -8500,14 +8486,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581484574
1623220673
-1
-((-272992,-177970), (-262074,-173246))
+((-273547,-178157), (-261519,-173059))
12615680
16570034
12632256
@@ -8525,14 +8511,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581484671
1623220673
-1
-((-273050,-189682), (-260202,-180008))
+((-273722,-190094), (-259530,-179596))
12615680
16570034
12632256
@@ -8550,14 +8536,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485067
1623220673
-1
-((-420100,199618), (-408796,205992))
+((-420679,199356), (-408217,206254))
12615680
16570034
12632256
@@ -8575,14 +8561,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485288
1623220673
-1
-((-420019,186652), (-407171,196326))
+((-420691,186240), (-406499,196738))
12615680
16570034
12632256
@@ -8600,14 +8586,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485365
1623220673
-1
-((-435365,196664), (-424061,205512))
+((-435944,196289), (-423482,205887))
12615680
16570034
12632256
@@ -8625,14 +8611,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485386
1623220673
-1
-((-435495,187592), (-422647,193966))
+((-436167,187330), (-421975,194228))
12615680
16570034
12632256
@@ -8650,14 +8636,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485600
1623220673
-1
-((-420218,178187), (-407370,183735))
+((-420890,177962), (-406698,183960))
12615680
16570034
12632256
@@ -8675,14 +8661,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485773
1623220673
-1
-((-358865,201064), (-346017,205788))
+((-359537,200877), (-345345,205975))
12615680
16570034
12632256
@@ -8700,14 +8686,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581485916
1623220673
-1
-((-357977,189868), (-347059,198716))
+((-358532,189493), (-346504,199091))
12615680
16570034
12632256
@@ -8725,14 +8711,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486150
1623220673
-1
-((-358092,179316), (-346788,188164))
+((-358671,178941), (-346209,188539))
12615680
16570034
12632256
@@ -8750,14 +8736,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486189
1623220673
-1
-((-341280,200759), (-329976,206307))
+((-341859,200534), (-329397,206532))
12615680
16570034
12632256
@@ -8775,14 +8761,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486320
1623220673
-1
-((-341841,192263), (-329765,197811))
+((-342466,192038), (-329140,198036))
12615680
16570034
12632256
@@ -8800,14 +8786,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486645
1623220673
-1
-((-326022,199714), (-314718,206912))
+((-326601,199414), (-314139,207212))
12615680
16570034
12632256
@@ -8825,14 +8811,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486790
1623220673
-1
-((-325679,192008), (-316513,197556))
+((-326142,191783), (-316050,197781))
12615680
16570034
12632256
@@ -8850,14 +8836,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581486967
1623220673
-1
-((-325832,183205), (-314528,190403))
+((-326411,182905), (-313949,190703))
12615680
16570034
12632256
@@ -8875,14 +8861,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581652527
1623220673
-1
-((-325832,177080), (-314528,181080))
+((-326411,176981), (-313949,181179))
12615680
16570034
12632256
@@ -8900,14 +8886,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581652634
1623220673
-1
-((-325952,171535), (-314648,175535))
+((-326531,171436), (-314069,175634))
12615680
16570034
12632256
@@ -8925,14 +8911,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1581908796
1623220673
-1
-((-421055,-290894), (-411683,-286894))
+((-421518,-290994), (-411220,-286796))
12615680
16570034
12632256
@@ -8950,14 +8936,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582687641
1623220673
-1
-((-390245,-295070), (-378941,-287872))
+((-390824,-295370), (-378362,-287572))
12615680
16570034
12632256
@@ -8975,14 +8961,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582687975
1623220673
-1
-((-426460,-303650), (-415156,-293976))
+((-427039,-304062), (-414577,-293564))
12615680
16570034
12632256
@@ -9000,14 +8986,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582688727
1623220673
-1
-((-413278,-300581), (-401974,-295033))
+((-413857,-300806), (-401395,-294808))
12615680
16570034
12632256
@@ -9025,14 +9011,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582689050
1623220673
-1
-((-400627,-303788), (-389709,-295764))
+((-401182,-304125), (-389154,-295427))
12615680
16570034
12632256
@@ -9050,14 +9036,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582693500
1623220673
-1
-((-426797,-312540), (-415107,-305342))
+((-427399,-312840), (-414505,-305042))
12615680
16570034
12632256
@@ -9075,14 +9061,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582693732
1623220673
-1
-((-400130,-313738), (-389212,-304890))
+((-400685,-314113), (-388657,-304515))
12615680
16570034
12632256
@@ -9100,14 +9086,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582694031
1623220673
-1
-((-387919,-312045), (-377001,-304847))
+((-388474,-312345), (-376446,-304547))
12615680
16570034
12632256
@@ -9125,14 +9111,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582694311
1623220673
-1
-((-413023,-312706), (-402105,-304682))
+((-413578,-313043), (-401550,-304345))
12615680
16570034
12632256
@@ -9150,14 +9136,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582694681
1623220673
-1
-((-413340,-321939), (-402036,-313915))
+((-413919,-322276), (-401457,-313578))
12615680
16570034
12632256
@@ -9175,14 +9161,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582695055
1623220673
-1
-((-426783,-320619), (-415865,-314245))
+((-427338,-320881), (-415310,-313983))
12615680
16570034
12632256
@@ -9200,14 +9186,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582695828
1623220673
-1
-((-400351,-318467), (-390978,-314467))
+((-400814,-318567), (-390515,-314369))
12615680
16570034
12632256
@@ -9225,14 +9211,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582696093
1623220673
-1
-((-389257,-318953), (-379885,-314229))
+((-389720,-319140), (-379422,-314042))
12615680
16570034
12632256
@@ -9250,14 +9236,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582697722
1623220673
-1
-((-427755,-330616), (-414521,-321768))
+((-428450,-330991), (-413826,-321393))
12615680
16570034
12632256
@@ -9275,14 +9261,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582698321
1623220673
-1
-((-413622,-331421), (-400388,-322573))
+((-414317,-331796), (-399693,-322198))
12615680
16570034
12632256
@@ -9300,14 +9286,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582701378
1623220673
-1
-((-427563,-338395), (-416645,-332021))
+((-428118,-338657), (-416090,-331759))
12615680
16570034
12632256
@@ -9325,14 +9311,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1582702828
1623220673
-1
-((-413544,-336401), (-403785,-332401))
+((-414030,-336501), (-403299,-332303))
12615680
16570034
12632256
@@ -9350,14 +9336,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1583230167
1623220673
-1
-((-226580,196326), (-215276,201874))
+((-227159,196101), (-214697,202099))
12615680
16570034
12632256
@@ -9375,14 +9361,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1583230372
1623220673
-1
-((-226523,189031), (-215605,194579))
+((-227078,188806), (-215050,194804))
12615680
16570034
12632256
@@ -9400,14 +9386,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1583230487
1623220673
-1
-((-226648,181879), (-215344,187427))
+((-227227,181654), (-214765,187652))
12615680
16570034
12632256
@@ -9425,14 +9411,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1583230624
1623220673
-1
-((-211488,194553), (-199412,201751))
+((-212113,194253), (-198787,202051))
12615680
16570034
12632256
@@ -9450,14 +9436,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1583230805
1623220673
-1
-((-195898,196198), (-184594,201746))
+((-196477,195973), (-184015,201971))
12615680
16570034
12632256
@@ -9475,10 +9461,10 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584435574
1584435705
-1
@@ -9502,14 +9488,14 @@ LABL 0 新宋体,8,N
16777215
1
-
+
-
+
1584504148
1623220673
-1
-((-385888,-329762), (-374970,-322564))
+((-386443,-330062), (-374415,-322264))
12615680
16570034
12632256
@@ -9527,14 +9513,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584504454
1623220673
-1
-((-398563,-339475), (-387645,-331451))
+((-399118,-339812), (-387090,-331114))
12615680
16570034
12632256
@@ -9552,14 +9538,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584507245
1623220673
-1
-((-386264,-335877), (-375346,-331153))
+((-386819,-336064), (-374791,-330966))
12615680
16570034
12632256
@@ -9577,14 +9563,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584507389
1623220673
-1
-((-386338,-342367), (-375420,-336819))
+((-386893,-342592), (-374865,-336594))
12615680
16570034
12632256
@@ -9602,14 +9588,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584507523
1623220673
-1
-((-398713,-345892), (-387795,-340344))
+((-399268,-346117), (-387240,-340119))
12615680
16570034
12632256
@@ -9627,14 +9613,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584508415
1623220673
-1
-((-398713,-352369), (-387795,-346821))
+((-399268,-352594), (-387240,-346596))
12615680
16570034
12632256
@@ -9652,14 +9638,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584517837
1623220673
-1
-((-385876,-349552), (-375732,-344004))
+((-386386,-349777), (-375222,-343779))
12615680
16570034
12632256
@@ -9677,14 +9663,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584522203
1623220673
-1
-((-427588,-344515), (-416670,-338967))
+((-428143,-344740), (-416115,-338742))
12615680
16570034
12632256
@@ -9702,14 +9688,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584522205
1623220673
-1
-((-413863,-342715), (-402945,-337167))
+((-414418,-342940), (-402390,-336942))
12615680
16570034
12632256
@@ -9727,14 +9713,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584522973
1623220673
-1
-((-427438,-352651), (-416520,-346277))
+((-427993,-352913), (-415965,-346015))
12615680
16570034
12632256
@@ -9752,14 +9738,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584585414
1623220673
-1
-((-413962,-351067), (-403044,-344693))
+((-414517,-351329), (-402489,-344431))
12615680
16570034
12632256
@@ -9777,14 +9763,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584685517
1623220673
-1
-((-419510,147261), (-408592,153635))
+((-420065,146999), (-408037,153897))
12615680
16570034
12632256
@@ -9802,14 +9788,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584685777
1623220673
-1
-((-434645,145010), (-421411,153858))
+((-435340,144635), (-420716,154233))
12615680
16570034
12632256
@@ -9827,14 +9813,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584685963
1623220673
-1
-((-435394,135950), (-422160,143148))
+((-436089,135650), (-421465,143448))
12615680
16570034
12632256
@@ -9852,14 +9838,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686180
1623220673
-1
-((-406592,147474), (-392972,153848))
+((-407310,147212), (-392254,154110))
12615680
16570034
12632256
@@ -9877,14 +9863,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686339
1623220673
-1
-((-406218,140802), (-396074,145526))
+((-406728,140615), (-395564,145713))
12615680
16570034
12632256
@@ -9902,14 +9888,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686443
1623220673
-1
-((-406353,133708), (-396209,139256))
+((-406863,133483), (-395699,139481))
12615680
16570034
12632256
@@ -9927,14 +9913,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686637
1623220673
-1
-((-372522,200114), (-361218,205662))
+((-373101,199889), (-360639,205887))
12615680
16570034
12632256
@@ -9952,14 +9938,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686739
1623220673
-1
-((-372045,190085), (-360741,198933))
+((-372624,189710), (-360162,199308))
12615680
16570034
12632256
@@ -9977,14 +9963,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686845
1623220673
-1
-((-383099,149250), (-370637,153974))
+((-383747,149063), (-369989,154161))
12615680
16570034
12632256
@@ -10002,14 +9988,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584686937
1623220673
-1
-((-383405,141661), (-370171,147209))
+((-384100,141436), (-369476,147434))
12615680
16570034
12632256
@@ -10027,14 +10013,14 @@ LABL 0 新宋体,8,N
65
16777215
-
+
-
+
1584687137
1623220673
-1
-((-382875,134235), (-372345,139783))
+((-383408,134010), (-371812,140008))
12615680
16570034
12632256
@@ -10052,14 +10038,14 @@ LABL 0 新宋体,8,N
65
16777215
-