From 1fcc0a68a34408c21f72b6cbdbd7c48720b5e135 Mon Sep 17 00:00:00 2001 From: "15007173189@163.com" Date: Sat, 13 Apr 2024 00:08:01 +0800 Subject: [PATCH 01/12] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=A2=9E=E6=94=B9=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/modules.xml | 8 - .../web/backstage/system/information/add.html | 279 +++++++++++++++ .../backstage/system/information/edit.html | 319 ++++++++++++++++++ .../backstage/system/information/list.html | 226 +++++++++++++ 4 files changed, 824 insertions(+), 8 deletions(-) delete mode 100644 .idea/modules.xml create mode 100644 htmlweb/web/backstage/system/information/add.html create mode 100644 htmlweb/web/backstage/system/information/edit.html create mode 100644 htmlweb/web/backstage/system/information/list.html diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 9f540ed7..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/htmlweb/web/backstage/system/information/add.html b/htmlweb/web/backstage/system/information/add.html new file mode 100644 index 00000000..845d5097 --- /dev/null +++ b/htmlweb/web/backstage/system/information/add.html @@ -0,0 +1,279 @@ +<#include "/common/taglibs.html" /> + + + + + 信息字段管理添加 + + + +<#include "/head/headaddedit.html" /> + + + +
+
+
+
+
+
信息字段新增
+
+ +
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+ +
+
+
+
+ +
+
+ + +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+ +<#include "/head/footadd.html" /> + + + + + + diff --git a/htmlweb/web/backstage/system/information/edit.html b/htmlweb/web/backstage/system/information/edit.html new file mode 100644 index 00000000..8844cf3b --- /dev/null +++ b/htmlweb/web/backstage/system/information/edit.html @@ -0,0 +1,319 @@ +<#include "/common/taglibs.html" /> + + + + + 岗位信息 + + + +<#include "/head/headaddedit.html" /> + + + +
+
+
+
+
+
信息字段编辑
+
+
+
+
+ + +
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+
+ + +
+
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+
+ +
+
+
+
+ +
+
+ + +
+
+
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+ +<#include "/head/footadd.html" /> + + + + + + diff --git a/htmlweb/web/backstage/system/information/list.html b/htmlweb/web/backstage/system/information/list.html new file mode 100644 index 00000000..bfdefe61 --- /dev/null +++ b/htmlweb/web/backstage/system/information/list.html @@ -0,0 +1,226 @@ +<#include "/common/taglibs.html" /> + + + + + 信息字段管理 + + + +<#include "/head/headlist.html" /> + + +
+
+
+
+
+ +
+ +
+
+ +
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<#include "/head/footlist.html" /> + + + + -- 2.39.3 From 92d3993ef71ff31cb5f2c45dbd7ce7958402cf54 Mon Sep 17 00:00:00 2001 From: guanzheng <17633119157@163.com> Date: Sat, 13 Apr 2024 01:16:40 +0800 Subject: [PATCH 02/12] init --- .idea/compiler.xml | 8 +- .idea/encodings.xml | 23 ++ .idea/jarRepositories.xml | 30 +- .../web/backstage/oa/ocr/information/add.html | 279 +++++++++++++++ .../backstage/oa/ocr/information/edit.html | 319 ++++++++++++++++++ .../backstage/oa/ocr/information/list.html | 226 +++++++++++++ .../backstage/system/information/list.html | 2 +- .../ocr/controller/OcrFieldController.java | 45 ++- .../controller/OcrFieldHtmlController.java | 55 +++ .../jyjz/xiaoyao/ocr/dataobject/OcrField.java | 4 + .../cn/jyjz/xiaoyao/ocr/dto/OcrFieldDto.java | 4 + .../xiaoyao/ocr/service/OcrFieldService.java | 4 +- .../ocr/service/impl/OcrFieldServiceImpl.java | 39 +-- .../cn/jyjz/xiaoyao/ocr/vo/OcrFieldVo.java | 12 + .../src/main/resources/application-dev.yml | 10 +- 15 files changed, 1009 insertions(+), 51 deletions(-) create mode 100644 htmlweb/web/backstage/oa/ocr/information/add.html create mode 100644 htmlweb/web/backstage/oa/ocr/information/edit.html create mode 100644 htmlweb/web/backstage/oa/ocr/information/list.html create mode 100644 jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/controller/OcrFieldHtmlController.java diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 5a9d7818..41c17930 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -31,18 +31,18 @@