From 9bac380c268ddfd465710154680477ae5248e5ee Mon Sep 17 00:00:00 2001 From: haown <454902499@qq.com> Date: Tue, 15 Jul 2025 15:59:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E6=96=87?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exam-admin/target/classes/application-dev.yml | 85 ------------- .../target/classes/application-local.yml | 117 ----------------- exam-admin/target/classes/application.yml | 31 ----- .../classes/mapper/exam/ExamDepartMapper.xml | 17 --- .../target/classes/mapper/exam/ExamMapper.xml | 119 ------------------ .../classes/mapper/exam/ExamRepoMapper.xml | 38 ------ .../classes/mapper/paper/PaperMapper.xml | 65 ---------- .../mapper/paper/PaperQuAnswerMapper.xml | 46 ------- .../classes/mapper/paper/PaperQuMapper.xml | 58 --------- .../classes/mapper/qu/QuAnswerMapper.xml | 20 --- .../target/classes/mapper/qu/QuMapper.xml | 104 --------------- .../target/classes/mapper/qu/QuRepoMapper.xml | 20 --- .../target/classes/mapper/repo/RepoMapper.xml | 51 -------- .../mapper/sys/depart/SysDepartMapper.xml | 40 ------ .../mapper/sys/system/SysDictMapper.xml | 9 -- .../classes/mapper/sys/user/SysRoleMapper.xml | 16 --- .../classes/mapper/sys/user/SysUserMapper.xml | 25 ---- .../mapper/sys/user/SysUserRoleMapper.xml | 17 --- .../classes/mapper/user/UserBookMapper.xml | 23 ---- .../classes/mapper/user/UserExamMapper.xml | 54 -------- 20 files changed, 955 deletions(-) delete mode 100644 exam-admin/target/classes/application-dev.yml delete mode 100644 exam-admin/target/classes/application-local.yml delete mode 100644 exam-admin/target/classes/application.yml delete mode 100644 exam-admin/target/classes/mapper/exam/ExamDepartMapper.xml delete mode 100644 exam-admin/target/classes/mapper/exam/ExamMapper.xml delete mode 100644 exam-admin/target/classes/mapper/exam/ExamRepoMapper.xml delete mode 100644 exam-admin/target/classes/mapper/paper/PaperMapper.xml delete mode 100644 exam-admin/target/classes/mapper/paper/PaperQuAnswerMapper.xml delete mode 100644 exam-admin/target/classes/mapper/paper/PaperQuMapper.xml delete mode 100644 exam-admin/target/classes/mapper/qu/QuAnswerMapper.xml delete mode 100644 exam-admin/target/classes/mapper/qu/QuMapper.xml delete mode 100644 exam-admin/target/classes/mapper/qu/QuRepoMapper.xml delete mode 100644 exam-admin/target/classes/mapper/repo/RepoMapper.xml delete mode 100644 exam-admin/target/classes/mapper/sys/depart/SysDepartMapper.xml delete mode 100644 exam-admin/target/classes/mapper/sys/system/SysDictMapper.xml delete mode 100644 exam-admin/target/classes/mapper/sys/user/SysRoleMapper.xml delete mode 100644 exam-admin/target/classes/mapper/sys/user/SysUserMapper.xml delete mode 100644 exam-admin/target/classes/mapper/sys/user/SysUserRoleMapper.xml delete mode 100644 exam-admin/target/classes/mapper/user/UserBookMapper.xml delete mode 100644 exam-admin/target/classes/mapper/user/UserExamMapper.xml diff --git a/exam-admin/target/classes/application-dev.yml b/exam-admin/target/classes/application-dev.yml deleted file mode 100644 index 088eb63..0000000 --- a/exam-admin/target/classes/application-dev.yml +++ /dev/null @@ -1,85 +0,0 @@ -# 开发环境配置文件 -spring: - # 数据库配置 - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://8.131.93.145:54081/yf_exam_lite?useSSL=false&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true - username: root - password: 1qaz!@#$ - # druid相关配置 - druid: - max-active: 5000 - initial-size: 20 - min-idle: 5 - async-init: true - # 监控统计 - filters: stat,wall - filter: - stat: - log-slow-sql: true - slow-sql-millis: 5000 - wall: - config: - create-table-allow: false - alter-table-allow: false - drop-table-allow: false - truncate-allow: false - - # 定时任务配置 - quartz: - # 数据库方式 - job-store-type: jdbc - # quartz 相关属性配置 - properties: - org: - quartz: - scheduler: - instanceName: eamScheduler - instanceId: AUTO - jobStore: - class: org.quartz.impl.jdbcjobstore.JobStoreTX - driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate - tablePrefix: QRTZ_ - isClustered: true - clusterCheckinInterval: 10000 - useProperties: false - threadPool: - class: org.quartz.simpl.SimpleThreadPool - threadCount: 10 - threadPriority: 5 - threadsInheritContextClassLoaderOfInitializingThread: true - -# 文件上传配置 -conf: - upload: - # 物理文件存储位置,以/结束,windows已正斜杠,如:d:/exam-upload/ - dir: D:/exam-upload/ - # 访问地址,注意不要去除/upload/file/,此节点为虚拟标识符 - # 如:http://localhost:8101/upload/file/exam.jpg,对应物理文件为:/data/upload/exam.jpg - url: http://8.131.93.145:54012/upload/file/ - # 允许上传的文件后缀 - allow-extensions: jpg,jpeg,png - folder: - # 身份证正面存储文件夹名称 - card_front_url: cardfront/ - # 身份证背面存储文件夹名称 - card_back_url: cardback/ - # 身份证正反面复印件 - card_copy_url: cardcopy/ - # 证件照 - photo_url: photo/ - # 学历证明 - certificate_url: certificate/ - # 体检报告 - physical_report_url: physicalreport/ - # 签名图片 - sign_picture_url: signpicture/ -# 开启文档 -swagger: - enable: true - -logging: - level: - root: debug - path: logs/${spring.application.name}/ diff --git a/exam-admin/target/classes/application-local.yml b/exam-admin/target/classes/application-local.yml deleted file mode 100644 index 5c0117c..0000000 --- a/exam-admin/target/classes/application-local.yml +++ /dev/null @@ -1,117 +0,0 @@ -# 独立配置文件,可以拿到jar外面跑 -spring: - application: - name: yf-exam-lite - profiles: - active: dev - main: - allow-bean-definition-overriding: true - jackson: - date-format: yyyy-MM-dd HH:mm:ss - time-zone: GMT+8 - default-property-inclusion: non_null - deserialization: - fail_on_unknown_properties: false - parser: - # 允许出现特殊字符和转义符 - allow_unquoted_control_chars: true - #允许出现单引号 - allow_single_quotes: true - serialization: - fail-on-empty-beans: false - mapper: - # 支持类型转换 - allow-coercion-of-scalars: true - - # 数据库配置 - datasource: - type: com.alibaba.druid.pool.DruidDataSource - driver-class-name: com.mysql.cj.jdbc.Driver - url: jdbc:mysql://localhost:3306/yf_exam_lite?useSSL=false&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&allowPublicKeyRetrieval=true - username: root - password: root - # druid相关配置 - druid: - max-active: 5000 - initial-size: 20 - min-idle: 5 - async-init: true - # 监控统计 - filters: stat,wall - filter: - stat: - log-slow-sql: true - slow-sql-millis: 5000 - wall: - config: - create-table-allow: false - alter-table-allow: false - drop-table-allow: false - truncate-allow: false - - # 定时任务配置 - quartz: - # 数据库方式 - job-store-type: jdbc - # quartz 相关属性配置 - properties: - org: - quartz: - scheduler: - instanceName: examScheduler - instanceId: AUTO - jobStore: - class: org.quartz.impl.jdbcjobstore.JobStoreTX - driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate - tablePrefix: QRTZ_ - isClustered: true - clusterCheckinInterval: 10000 - useProperties: false - threadPool: - class: org.quartz.simpl.SimpleThreadPool - threadCount: 10 - threadPriority: 5 - threadsInheritContextClassLoaderOfInitializingThread: true - -server: - port: 8101 - # 启用服务端压缩 - compression: - enabled: true - min-response-size: 10 - mime-types: application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css - -# 文件上传配置 -conf: - upload: - # 物理文件存储位置,以/结束,windows已正斜杠,如:d:/exam-upload/ - dir: /data/upload/ - # 访问地址,注意不要去除/upload/file/,此节点为虚拟标识符 - # 如:http://localhost:8101/upload/file/exam.jpg,对应物理文件为:/data/upload/exam.jpg - url: http://8.131.93.145:54012/upload/file/ - # 允许上传的文件后缀 - allow-extensions: jpg,jpeg,png - folder: - # 身份证正面存储文件夹名称 - card_front_url: cardfront/ - # 身份证背面存储文件夹名称 - card_back_url: cardback/ - # 身份证正反面复印件 - card_copy_url: cardcopy/ - # 证件照 - photo_url: photo/ - # 学历证明 - certificate_url: certificate/ - # 体检报告 - physical_report_url: physicalreport/ - # 签名图片 - sign_picture_url: signpicture/ - -# 开启文档 -swagger: - enable: true - -logging: - level: - root: debug - path: logs/${spring.application.name}/ diff --git a/exam-admin/target/classes/application.yml b/exam-admin/target/classes/application.yml deleted file mode 100644 index 739a661..0000000 --- a/exam-admin/target/classes/application.yml +++ /dev/null @@ -1,31 +0,0 @@ -spring: - application: - name: yf-exam-lite - profiles: - active: dev - main: - allow-bean-definition-overriding: true - jackson: - date-format: yyyy-MM-dd HH:mm:ss - time-zone: GMT+8 - default-property-inclusion: non_null - deserialization: - fail_on_unknown_properties: false - parser: - # 允许出现特殊字符和转义符 - allow_unquoted_control_chars: true - #允许出现单引号 - allow_single_quotes: true - serialization: - fail-on-empty-beans: false - mapper: - # 支持类型转换 - allow-coercion-of-scalars: true -server: - port: 8101 - # 启用服务端压缩 - compression: - enabled: true - min-response-size: 10 - mime-types: application/json,application/xml,text/html,text/xml,text/plain,application/javascript,text/css - diff --git a/exam-admin/target/classes/mapper/exam/ExamDepartMapper.xml b/exam-admin/target/classes/mapper/exam/ExamDepartMapper.xml deleted file mode 100644 index 7a9a90b..0000000 --- a/exam-admin/target/classes/mapper/exam/ExamDepartMapper.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - `id`,`exam_id`,`depart_id` - - - diff --git a/exam-admin/target/classes/mapper/exam/ExamMapper.xml b/exam-admin/target/classes/mapper/exam/ExamMapper.xml deleted file mode 100644 index add64d0..0000000 --- a/exam-admin/target/classes/mapper/exam/ExamMapper.xml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - `id`,`title`,`content`,`open_type`,`join_type`,`level`,`state`,`time_limit`,`start_date`,`end_date`,`start_time`,`end_time`,`create_time`,`update_time`,`total_score`,`total_time`,`qualify_score` - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/exam/ExamRepoMapper.xml b/exam-admin/target/classes/mapper/exam/ExamRepoMapper.xml deleted file mode 100644 index bc06691..0000000 --- a/exam-admin/target/classes/mapper/exam/ExamRepoMapper.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`exam_id`,`repo_id`,`radio_count`,`radio_score`,`multi_count`,`multi_score`,`judge_count`,`judge_score` - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/paper/PaperMapper.xml b/exam-admin/target/classes/mapper/paper/PaperMapper.xml deleted file mode 100644 index 8653ab1..0000000 --- a/exam-admin/target/classes/mapper/paper/PaperMapper.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - `id`,`user_id`,`depart_id`,`exam_id`,`title`,`total_time`,`user_time`,`total_score`,`qualify_score`,`obj_score`,`subj_score`,`user_score`,`has_saq`,`state`,`create_time`,`update_time`,`limit_time` - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/paper/PaperQuAnswerMapper.xml b/exam-admin/target/classes/mapper/paper/PaperQuAnswerMapper.xml deleted file mode 100644 index bd4f89b..0000000 --- a/exam-admin/target/classes/mapper/paper/PaperQuAnswerMapper.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - `id`,`paper_id`,`answer_id`,`qu_id`,`is_right`,`checked`,`sort`,`abc` - - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/paper/PaperQuMapper.xml b/exam-admin/target/classes/mapper/paper/PaperQuMapper.xml deleted file mode 100644 index 0498b71..0000000 --- a/exam-admin/target/classes/mapper/paper/PaperQuMapper.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - `id`,`paper_id`,`qu_id`,`qu_type`,`answered`,`answer`,`sort`,`score`,`actual_score`,`is_right` - - - - - - - - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/qu/QuAnswerMapper.xml b/exam-admin/target/classes/mapper/qu/QuAnswerMapper.xml deleted file mode 100644 index a5cfd35..0000000 --- a/exam-admin/target/classes/mapper/qu/QuAnswerMapper.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`qu_id`,`is_right`,`image`,`content`,`analysis` - - - diff --git a/exam-admin/target/classes/mapper/qu/QuMapper.xml b/exam-admin/target/classes/mapper/qu/QuMapper.xml deleted file mode 100644 index 20ed746..0000000 --- a/exam-admin/target/classes/mapper/qu/QuMapper.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`qu_type`,`level`,`image`,`content`,`create_time`,`update_time`,`remark`,`analysis` - - - - - - - - - - - - - - - - - - - - - - - - - - AND q.qu_type = #{query.quType} - - - AND po.repo_id IN - #{repoId} - - - AND q.content LIKE CONCAT('%',#{query.content},'%') - - - AND q.id NOT IN - - #{quId} - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/qu/QuRepoMapper.xml b/exam-admin/target/classes/mapper/qu/QuRepoMapper.xml deleted file mode 100644 index 3353d6c..0000000 --- a/exam-admin/target/classes/mapper/qu/QuRepoMapper.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - `id`,`qu_id`,`repo_id`,`qu_type`,`sort` - - - - diff --git a/exam-admin/target/classes/mapper/repo/RepoMapper.xml b/exam-admin/target/classes/mapper/repo/RepoMapper.xml deleted file mode 100644 index d026b31..0000000 --- a/exam-admin/target/classes/mapper/repo/RepoMapper.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`code`,`title`,`radio_count`,`multi_count`,`judge_count`,`remark`,`create_time`,`update_time` - - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/sys/depart/SysDepartMapper.xml b/exam-admin/target/classes/mapper/sys/depart/SysDepartMapper.xml deleted file mode 100644 index 2bae742..0000000 --- a/exam-admin/target/classes/mapper/sys/depart/SysDepartMapper.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - `id`,`dept_type`,`parent_id`,`dept_name`,`dept_code`,`sort` - - - - - - - - - - - - diff --git a/exam-admin/target/classes/mapper/sys/system/SysDictMapper.xml b/exam-admin/target/classes/mapper/sys/system/SysDictMapper.xml deleted file mode 100644 index 194ff86..0000000 --- a/exam-admin/target/classes/mapper/sys/system/SysDictMapper.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/exam-admin/target/classes/mapper/sys/user/SysRoleMapper.xml b/exam-admin/target/classes/mapper/sys/user/SysRoleMapper.xml deleted file mode 100644 index f79fbf6..0000000 --- a/exam-admin/target/classes/mapper/sys/user/SysRoleMapper.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - `id`,`role_name` - - - diff --git a/exam-admin/target/classes/mapper/sys/user/SysUserMapper.xml b/exam-admin/target/classes/mapper/sys/user/SysUserMapper.xml deleted file mode 100644 index 584251b..0000000 --- a/exam-admin/target/classes/mapper/sys/user/SysUserMapper.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - `id`,`user_name`,`real_name`,phone,`password`,`salt`,`role_ids`,`depart_id`,`create_time`,`update_time`,`state` - - - diff --git a/exam-admin/target/classes/mapper/sys/user/SysUserRoleMapper.xml b/exam-admin/target/classes/mapper/sys/user/SysUserRoleMapper.xml deleted file mode 100644 index f2ea833..0000000 --- a/exam-admin/target/classes/mapper/sys/user/SysUserRoleMapper.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - `id`,`user_id`,`role_id` - - - diff --git a/exam-admin/target/classes/mapper/user/UserBookMapper.xml b/exam-admin/target/classes/mapper/user/UserBookMapper.xml deleted file mode 100644 index 17d6775..0000000 --- a/exam-admin/target/classes/mapper/user/UserBookMapper.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - `id`,`exam_id`,`user_id`,`qu_id`,`create_time`,`update_time`,`wrong_count`,`title`,`sort` - - - diff --git a/exam-admin/target/classes/mapper/user/UserExamMapper.xml b/exam-admin/target/classes/mapper/user/UserExamMapper.xml deleted file mode 100644 index d123ee7..0000000 --- a/exam-admin/target/classes/mapper/user/UserExamMapper.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - `id`,`user_id`,`exam_id`,`try_count`,`max_score`,`passed`,`create_time`,`update_time` - - - - - - - - - - -