From 7280a8c5f370e4fc569770f8a4db8b8760252d9e Mon Sep 17 00:00:00 2001 From: lqy <3139512106@qq.com> Date: Wed, 1 May 2024 16:10:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=91=B8=E5=BA=95=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 + .idea/compiler.xml | 18 ++ .idea/encodings.xml | 6 + .idea/jarRepositories.xml | 20 +++ .idea/misc.xml | 16 ++ .idea/vcs.xml | 6 + pom.xml | 123 ++++++++++++++ .../BbybExaminationApplication.java | 16 ++ .../examination/config/JacksonConfig.java | 72 ++++++++ .../controller/UserController.java | 75 +++++++++ .../mapper/ExaminationApplyMapper.java | 16 ++ .../mapper/ExaminationMajorMapper.java | 16 ++ .../mapper/ExaminationPaperAnswerMapper.java | 16 ++ .../mapper/ExaminationPaperMapper.java | 16 ++ .../ExaminationPaperQuestionMapper.java | 16 ++ .../mapper/ExaminationPaperResultMapper.java | 16 ++ .../mapper/ExaminationPaperScoreMapper.java | 16 ++ .../mapper/ExaminationPlanMapper.java | 16 ++ .../mapper/ExaminationSubjectMapper.java | 16 ++ .../examination/mapper/MenuMapper.java | 16 ++ .../mapper/QuestionTypeMapper.java | 16 ++ .../examination/mapper/RoleMapper.java | 16 ++ .../examination/mapper/RoleMenuMapper.java | 16 ++ .../examination/mapper/RoleUserMapper.java | 16 ++ .../examination/mapper/SysDicMapper.java | 16 ++ .../examination/mapper/UserMapper.java | 16 ++ .../model/po/ExaminationApply.java | 105 ++++++++++++ .../model/po/ExaminationMajor.java | 85 ++++++++++ .../model/po/ExaminationPaper.java | 125 ++++++++++++++ .../model/po/ExaminationPaperAnswer.java | 65 ++++++++ .../model/po/ExaminationPaperQuestion.java | 126 ++++++++++++++ .../model/po/ExaminationPaperResult.java | 86 ++++++++++ .../model/po/ExaminationPaperScore.java | 96 +++++++++++ .../examination/model/po/ExaminationPlan.java | 125 ++++++++++++++ .../model/po/ExaminationSubject.java | 95 +++++++++++ .../operating/examination/model/po/Menu.java | 135 +++++++++++++++ .../examination/model/po/QuestionType.java | 95 +++++++++++ .../operating/examination/model/po/Role.java | 85 ++++++++++ .../examination/model/po/RoleMenu.java | 85 ++++++++++ .../examination/model/po/RoleUser.java | 85 ++++++++++ .../examination/model/po/SysDic.java | 95 +++++++++++ .../operating/examination/model/po/User.java | 155 ++++++++++++++++++ .../examination/model/vo/CommonResult.java | 77 +++++++++ .../examination/service/UserService.java | 14 ++ .../service/impl/UserServiceImpl.java | 40 +++++ src/main/resources/application.properties | 10 ++ target/bbyb-examination-0.0.1-SNAPSHOT.jar | Bin 0 -> 35753 bytes target/classes/application.properties | 10 ++ .../BbybExaminationApplication.class | Bin 0 -> 1247 bytes .../examination/config/JacksonConfig.class | Bin 0 -> 4117 bytes .../controller/UserController.class | Bin 0 -> 2577 bytes .../mapper/ExaminationApplyMapper.class | Bin 0 -> 654 bytes .../mapper/ExaminationMajorMapper.class | Bin 0 -> 654 bytes .../mapper/ExaminationPaperAnswerMapper.class | Bin 0 -> 684 bytes .../mapper/ExaminationPaperMapper.class | Bin 0 -> 654 bytes .../ExaminationPaperQuestionMapper.class | Bin 0 -> 694 bytes .../mapper/ExaminationPaperResultMapper.class | Bin 0 -> 684 bytes .../mapper/ExaminationPaperScoreMapper.class | Bin 0 -> 679 bytes .../mapper/ExaminationPlanMapper.class | Bin 0 -> 649 bytes .../mapper/ExaminationSubjectMapper.class | Bin 0 -> 664 bytes .../examination/mapper/MenuMapper.class | Bin 0 -> 594 bytes .../mapper/QuestionTypeMapper.class | Bin 0 -> 634 bytes .../examination/mapper/RoleMapper.class | Bin 0 -> 594 bytes .../examination/mapper/RoleMenuMapper.class | Bin 0 -> 614 bytes .../examination/mapper/RoleUserMapper.class | Bin 0 -> 614 bytes .../examination/mapper/SysDicMapper.class | Bin 0 -> 604 bytes .../examination/mapper/UserMapper.class | Bin 0 -> 594 bytes .../model/po/ExaminationApply.class | Bin 0 -> 2656 bytes .../model/po/ExaminationMajor.class | Bin 0 -> 2237 bytes .../model/po/ExaminationPaper.class | Bin 0 -> 3120 bytes .../model/po/ExaminationPaperAnswer.class | Bin 0 -> 1845 bytes .../model/po/ExaminationPaperQuestion.class | Bin 0 -> 3194 bytes .../model/po/ExaminationPaperResult.class | Bin 0 -> 2320 bytes .../model/po/ExaminationPaperScore.class | Bin 0 -> 2513 bytes .../model/po/ExaminationPlan.class | Bin 0 -> 3090 bytes .../model/po/ExaminationSubject.class | Bin 0 -> 2457 bytes .../operating/examination/model/po/Menu.class | Bin 0 -> 3250 bytes .../examination/model/po/QuestionType.class | Bin 0 -> 2457 bytes .../operating/examination/model/po/Role.class | Bin 0 -> 2195 bytes .../examination/model/po/RoleMenu.class | Bin 0 -> 2195 bytes .../examination/model/po/RoleUser.class | Bin 0 -> 2195 bytes .../examination/model/po/SysDic.class | Bin 0 -> 2409 bytes .../operating/examination/model/po/User.class | Bin 0 -> 3597 bytes .../examination/model/vo/CommonResult.class | Bin 0 -> 2291 bytes .../examination/service/UserService.class | Bin 0 -> 397 bytes .../service/impl/UserServiceImpl.class | Bin 0 -> 1303 bytes target/maven-archiver/pom.properties | 3 + .../compile/default-compile/createdFiles.lst | 38 +++++ .../compile/default-compile/inputFiles.lst | 38 +++++ .../default-testCompile/createdFiles.lst | 0 .../default-testCompile/inputFiles.lst | 0 91 files changed, 2489 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 pom.xml create mode 100644 src/main/java/com/bbyb/operating/examination/BbybExaminationApplication.java create mode 100644 src/main/java/com/bbyb/operating/examination/config/JacksonConfig.java create mode 100644 src/main/java/com/bbyb/operating/examination/controller/UserController.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationMajorMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/ExaminationSubjectMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/MenuMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/QuestionTypeMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/RoleMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/RoleMenuMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/RoleUserMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/SysDicMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/mapper/UserMapper.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationApply.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationMajor.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaper.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperAnswer.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperQuestion.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperResult.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperScore.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationPlan.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/ExaminationSubject.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/Menu.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/QuestionType.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/Role.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/RoleMenu.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/RoleUser.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/SysDic.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/po/User.java create mode 100644 src/main/java/com/bbyb/operating/examination/model/vo/CommonResult.java create mode 100644 src/main/java/com/bbyb/operating/examination/service/UserService.java create mode 100644 src/main/java/com/bbyb/operating/examination/service/impl/UserServiceImpl.java create mode 100644 src/main/resources/application.properties create mode 100644 target/bbyb-examination-0.0.1-SNAPSHOT.jar create mode 100644 target/classes/application.properties create mode 100644 target/classes/com/bbyb/operating/examination/BbybExaminationApplication.class create mode 100644 target/classes/com/bbyb/operating/examination/config/JacksonConfig.class create mode 100644 target/classes/com/bbyb/operating/examination/controller/UserController.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationMajorMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/ExaminationSubjectMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/MenuMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/QuestionTypeMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/RoleMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/RoleMenuMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/RoleUserMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/SysDicMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/mapper/UserMapper.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationApply.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationMajor.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPaper.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperAnswer.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperQuestion.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperResult.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperScore.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationPlan.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/ExaminationSubject.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/Menu.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/QuestionType.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/Role.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/RoleMenu.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/RoleUser.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/SysDic.class create mode 100644 target/classes/com/bbyb/operating/examination/model/po/User.class create mode 100644 target/classes/com/bbyb/operating/examination/model/vo/CommonResult.class create mode 100644 target/classes/com/bbyb/operating/examination/service/UserService.class create mode 100644 target/classes/com/bbyb/operating/examination/service/impl/UserServiceImpl.class create mode 100644 target/maven-archiver/pom.properties create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..134a11e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..63e9001 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..5a2f139 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8bb4a3e --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,16 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..e873123 --- /dev/null +++ b/pom.xml @@ -0,0 +1,123 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-starter-parent + 2.7.8 + + + + com.bbyb.operating.examination + bbyb-examination + 0.0.1-SNAPSHOT + bbyb-examination + bbyb-examination + + + 1.8 + + + + + org.springframework.boot + spring-boot-starter-web-services + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + 2.3.0 + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + com.mysql + mysql-connector-j + + + org.springframework.boot + spring-boot-configuration-processor + true + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + org.mybatis + mybatis-typehandlers-jsr310 + 1.0.2 + + + org.apache.commons + commons-lang3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/java/com/bbyb/operating/examination/BbybExaminationApplication.java b/src/main/java/com/bbyb/operating/examination/BbybExaminationApplication.java new file mode 100644 index 0000000..02feb86 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/BbybExaminationApplication.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan("com.bbyb.operating.examination.mapper") +public class BbybExaminationApplication { + + public static void main(String[] args) { + SpringApplication.run(BbybExaminationApplication.class, args); + System.out.printf("启动成功================================================================================================================================================"); + } + +} diff --git a/src/main/java/com/bbyb/operating/examination/config/JacksonConfig.java b/src/main/java/com/bbyb/operating/examination/config/JacksonConfig.java new file mode 100644 index 0000000..f7fd4cf --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/config/JacksonConfig.java @@ -0,0 +1,72 @@ +package com.bbyb.operating.examination.config; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; +import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; +import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer; +import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; +import com.fasterxml.jackson.datatype.jsr310.deser.LocalTimeDeserializer; +import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer; +import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; +import com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter; + +import java.text.SimpleDateFormat; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.time.format.DateTimeFormatter; +import java.util.TimeZone; + +/** + * className: JacksonConfig + * datetime: 2023/2/13 17:41 + * author: lx + */ +@Configuration +public class JacksonConfig { + + /** 默认日期时间格式 */ + public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss"; + /** 默认日期格式 */ + public static final String DEFAULT_DATE_FORMAT = "yyyy-MM-dd"; + /** 默认时间格式 */ + public static final String DEFAULT_TIME_FORMAT = "HH:mm:ss"; + + @Bean + public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter() { + MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter(); + ObjectMapper objectMapper = new ObjectMapper(); + + // 忽略json字符串中不识别的属性 + objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + // 忽略无法转换的对象 + objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false); + // PrettyPrinter 格式化输出 + objectMapper.configure(SerializationFeature.INDENT_OUTPUT, true); + // NULL不参与序列化 + objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + + // 指定时区 + objectMapper.setTimeZone(TimeZone.getTimeZone("GMT+8:00")); + // 日期类型字符串处理 + objectMapper.setDateFormat(new SimpleDateFormat(DEFAULT_DATE_TIME_FORMAT)); + + // java8日期日期处理 + JavaTimeModule javaTimeModule = new JavaTimeModule(); + javaTimeModule.addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT))); + javaTimeModule.addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT))); + javaTimeModule.addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT))); + javaTimeModule.addDeserializer(LocalDateTime.class, new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_TIME_FORMAT))); + javaTimeModule.addDeserializer(LocalDate.class, new LocalDateDeserializer(DateTimeFormatter.ofPattern(DEFAULT_DATE_FORMAT))); + javaTimeModule.addDeserializer(LocalTime.class, new LocalTimeDeserializer(DateTimeFormatter.ofPattern(DEFAULT_TIME_FORMAT))); + objectMapper.registerModule(javaTimeModule); + + converter.setObjectMapper(objectMapper); + return converter; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/controller/UserController.java b/src/main/java/com/bbyb/operating/examination/controller/UserController.java new file mode 100644 index 0000000..701042d --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/controller/UserController.java @@ -0,0 +1,75 @@ +package com.bbyb.operating.examination.controller; + +import com.bbyb.operating.examination.model.po.Role; +import com.bbyb.operating.examination.model.po.User; +import com.bbyb.operating.examination.model.vo.CommonResult; +import com.bbyb.operating.examination.service.UserService; +import org.apache.commons.lang3.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +/** + * 账号 + * className: UserController + * datetime: 2023/2/10 14:28 + * author: lx + */ +@RestController() +@RequestMapping("/user") +public class UserController { + + @Autowired + private UserService userService; + + @PostMapping(value = "add") + public CommonResult addUser(@RequestBody User user){ + if(user == null){ + return new CommonResult<>(601, "用户信息不能为空"); + } + + if(StringUtils.isBlank(user.getUserCode())){ + return new CommonResult<>(601, "用户编码不能为空"); + } + + if(StringUtils.isBlank(user.getUserName())){ + return new CommonResult<>(601, "用户名不能为空"); + } + + if(StringUtils.isBlank(user.getPhone())){ + return new CommonResult<>(601, "用户手机号不能为空"); + } + + if(StringUtils.isBlank(user.getPassword())){ + return new CommonResult<>(601, "用户密码不能为空"); + } + + String errorMsg = userService.addUser(user); + if(StringUtils.isNotEmpty(errorMsg)){ + return new CommonResult<>(603, errorMsg); + } + return new CommonResult<>(true); + } + + + @PostMapping("/allUser") + public List getAllUser(){ + return userService.getAllUser(); + } + + + + + + + + + + + + +} + + + diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.java new file mode 100644 index 0000000..b606b63 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationApply; +import java.util.List; + +public interface ExaminationApplyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationApply row); + + ExaminationApply selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationApply row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationMajorMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationMajorMapper.java new file mode 100644 index 0000000..642cd72 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationMajorMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationMajor; +import java.util.List; + +public interface ExaminationMajorMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationMajor row); + + ExaminationMajor selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationMajor row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.java new file mode 100644 index 0000000..1c225d4 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPaperAnswer; +import java.util.List; + +public interface ExaminationPaperAnswerMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPaperAnswer row); + + ExaminationPaperAnswer selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPaperAnswer row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperMapper.java new file mode 100644 index 0000000..6421651 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPaper; +import java.util.List; + +public interface ExaminationPaperMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPaper row); + + ExaminationPaper selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPaper row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.java new file mode 100644 index 0000000..7df0fe4 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPaperQuestion; +import java.util.List; + +public interface ExaminationPaperQuestionMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPaperQuestion row); + + ExaminationPaperQuestion selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPaperQuestion row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.java new file mode 100644 index 0000000..71eeb6e --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPaperResult; +import java.util.List; + +public interface ExaminationPaperResultMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPaperResult row); + + ExaminationPaperResult selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPaperResult row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.java new file mode 100644 index 0000000..d088fbb --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPaperScore; +import java.util.List; + +public interface ExaminationPaperScoreMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPaperScore row); + + ExaminationPaperScore selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPaperScore row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.java new file mode 100644 index 0000000..433071b --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationPlan; +import java.util.List; + +public interface ExaminationPlanMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationPlan row); + + ExaminationPlan selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationPlan row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/ExaminationSubjectMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationSubjectMapper.java new file mode 100644 index 0000000..d549574 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/ExaminationSubjectMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.ExaminationSubject; +import java.util.List; + +public interface ExaminationSubjectMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ExaminationSubject row); + + ExaminationSubject selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(ExaminationSubject row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/MenuMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/MenuMapper.java new file mode 100644 index 0000000..9110777 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/MenuMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.Menu; +import java.util.List; + +public interface MenuMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Menu row); + + Menu selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(Menu row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/QuestionTypeMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/QuestionTypeMapper.java new file mode 100644 index 0000000..971f149 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/QuestionTypeMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.QuestionType; +import java.util.List; + +public interface QuestionTypeMapper { + int deleteByPrimaryKey(Integer id); + + int insert(QuestionType row); + + QuestionType selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(QuestionType row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/RoleMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/RoleMapper.java new file mode 100644 index 0000000..fc558b2 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/RoleMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.Role; +import java.util.List; + +public interface RoleMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Role row); + + Role selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(Role row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/RoleMenuMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/RoleMenuMapper.java new file mode 100644 index 0000000..3d8e95e --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/RoleMenuMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.RoleMenu; +import java.util.List; + +public interface RoleMenuMapper { + int deleteByPrimaryKey(Integer id); + + int insert(RoleMenu row); + + RoleMenu selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(RoleMenu row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/RoleUserMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/RoleUserMapper.java new file mode 100644 index 0000000..1489c42 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/RoleUserMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.RoleUser; +import java.util.List; + +public interface RoleUserMapper { + int deleteByPrimaryKey(Integer id); + + int insert(RoleUser row); + + RoleUser selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(RoleUser row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/SysDicMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/SysDicMapper.java new file mode 100644 index 0000000..5bd5fc8 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/SysDicMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.SysDic; +import java.util.List; + +public interface SysDicMapper { + int deleteByPrimaryKey(Integer id); + + int insert(SysDic row); + + SysDic selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(SysDic row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/mapper/UserMapper.java b/src/main/java/com/bbyb/operating/examination/mapper/UserMapper.java new file mode 100644 index 0000000..6c9b49f --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/mapper/UserMapper.java @@ -0,0 +1,16 @@ +package com.bbyb.operating.examination.mapper; + +import com.bbyb.operating.examination.model.po.User; +import java.util.List; + +public interface UserMapper { + int deleteByPrimaryKey(Integer id); + + int insert(User row); + + User selectByPrimaryKey(Integer id); + + List selectAll(); + + int updateByPrimaryKey(User row); +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationApply.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationApply.java new file mode 100644 index 0000000..214e47d --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationApply.java @@ -0,0 +1,105 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationApply { + private Integer id; + + private Integer userId; + + private Integer planId; + + private String examinationCode; + + private Integer applyState; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public Integer getPlanId() { + return planId; + } + + public void setPlanId(Integer planId) { + this.planId = planId; + } + + public String getExaminationCode() { + return examinationCode; + } + + public void setExaminationCode(String examinationCode) { + this.examinationCode = examinationCode; + } + + public Integer getApplyState() { + return applyState; + } + + public void setApplyState(Integer applyState) { + this.applyState = applyState; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationMajor.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationMajor.java new file mode 100644 index 0000000..2cd3251 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationMajor.java @@ -0,0 +1,85 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationMajor { + private Integer id; + + private String majorCode; + + private String majorName; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMajorCode() { + return majorCode; + } + + public void setMajorCode(String majorCode) { + this.majorCode = majorCode; + } + + public String getMajorName() { + return majorName; + } + + public void setMajorName(String majorName) { + this.majorName = majorName; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaper.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaper.java new file mode 100644 index 0000000..8706657 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaper.java @@ -0,0 +1,125 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationPaper { + private Integer id; + + private String paperName; + + private String paperCode; + + private Integer subjectId; + + private LocalDateTime examinationStartTime; + + private LocalDateTime examinationEndTime; + + private Integer planId; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPaperName() { + return paperName; + } + + public void setPaperName(String paperName) { + this.paperName = paperName; + } + + public String getPaperCode() { + return paperCode; + } + + public void setPaperCode(String paperCode) { + this.paperCode = paperCode; + } + + public Integer getSubjectId() { + return subjectId; + } + + public void setSubjectId(Integer subjectId) { + this.subjectId = subjectId; + } + + public LocalDateTime getExaminationStartTime() { + return examinationStartTime; + } + + public void setExaminationStartTime(LocalDateTime examinationStartTime) { + this.examinationStartTime = examinationStartTime; + } + + public LocalDateTime getExaminationEndTime() { + return examinationEndTime; + } + + public void setExaminationEndTime(LocalDateTime examinationEndTime) { + this.examinationEndTime = examinationEndTime; + } + + public Integer getPlanId() { + return planId; + } + + public void setPlanId(Integer planId) { + this.planId = planId; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperAnswer.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperAnswer.java new file mode 100644 index 0000000..f95de6d --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperAnswer.java @@ -0,0 +1,65 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationPaperAnswer { + private Integer id; + + private Integer questionId; + + private String answerText; + + private String createBy; + + private LocalDateTime createTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getQuestionId() { + return questionId; + } + + public void setQuestionId(Integer questionId) { + this.questionId = questionId; + } + + public String getAnswerText() { + return answerText; + } + + public void setAnswerText(String answerText) { + this.answerText = answerText; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperQuestion.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperQuestion.java new file mode 100644 index 0000000..3e2c30e --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperQuestion.java @@ -0,0 +1,126 @@ +package com.bbyb.operating.examination.model.po; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +public class ExaminationPaperQuestion { + private Integer id; + + private Integer paperId; + + private String questionTitle; + + private String quertionNum; + + private String quertionType; + + private Integer preQuestionId; + + private BigDecimal score; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPaperId() { + return paperId; + } + + public void setPaperId(Integer paperId) { + this.paperId = paperId; + } + + public String getQuestionTitle() { + return questionTitle; + } + + public void setQuestionTitle(String questionTitle) { + this.questionTitle = questionTitle; + } + + public String getQuertionNum() { + return quertionNum; + } + + public void setQuertionNum(String quertionNum) { + this.quertionNum = quertionNum; + } + + public String getQuertionType() { + return quertionType; + } + + public void setQuertionType(String quertionType) { + this.quertionType = quertionType; + } + + public Integer getPreQuestionId() { + return preQuestionId; + } + + public void setPreQuestionId(Integer preQuestionId) { + this.preQuestionId = preQuestionId; + } + + public BigDecimal getScore() { + return score; + } + + public void setScore(BigDecimal score) { + this.score = score; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperResult.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperResult.java new file mode 100644 index 0000000..86882e3 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperResult.java @@ -0,0 +1,86 @@ +package com.bbyb.operating.examination.model.po; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +public class ExaminationPaperResult { + private Integer id; + + private Integer questionId; + + private Integer userId; + + private String answerText; + + private BigDecimal score; + + private String createBy; + + private LocalDateTime createTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getQuestionId() { + return questionId; + } + + public void setQuestionId(Integer questionId) { + this.questionId = questionId; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getAnswerText() { + return answerText; + } + + public void setAnswerText(String answerText) { + this.answerText = answerText; + } + + public BigDecimal getScore() { + return score; + } + + public void setScore(BigDecimal score) { + this.score = score; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperScore.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperScore.java new file mode 100644 index 0000000..80c1948 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPaperScore.java @@ -0,0 +1,96 @@ +package com.bbyb.operating.examination.model.po; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +public class ExaminationPaperScore { + private Integer id; + + private Integer paperId; + + private Integer userId; + + private BigDecimal score; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPaperId() { + return paperId; + } + + public void setPaperId(Integer paperId) { + this.paperId = paperId; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public BigDecimal getScore() { + return score; + } + + public void setScore(BigDecimal score) { + this.score = score; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPlan.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPlan.java new file mode 100644 index 0000000..209f246 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationPlan.java @@ -0,0 +1,125 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationPlan { + private Integer id; + + private String planName; + + private String planExplain; + + private LocalDateTime planStartTime; + + private LocalDateTime planEndTime; + + private Integer majorId; + + private Integer userInCharge; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPlanName() { + return planName; + } + + public void setPlanName(String planName) { + this.planName = planName; + } + + public String getPlanExplain() { + return planExplain; + } + + public void setPlanExplain(String planExplain) { + this.planExplain = planExplain; + } + + public LocalDateTime getPlanStartTime() { + return planStartTime; + } + + public void setPlanStartTime(LocalDateTime planStartTime) { + this.planStartTime = planStartTime; + } + + public LocalDateTime getPlanEndTime() { + return planEndTime; + } + + public void setPlanEndTime(LocalDateTime planEndTime) { + this.planEndTime = planEndTime; + } + + public Integer getMajorId() { + return majorId; + } + + public void setMajorId(Integer majorId) { + this.majorId = majorId; + } + + public Integer getUserInCharge() { + return userInCharge; + } + + public void setUserInCharge(Integer userInCharge) { + this.userInCharge = userInCharge; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/ExaminationSubject.java b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationSubject.java new file mode 100644 index 0000000..5e98557 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/ExaminationSubject.java @@ -0,0 +1,95 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class ExaminationSubject { + private Integer id; + + private String subjectCode; + + private String subjectName; + + private Integer majorId; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getSubjectCode() { + return subjectCode; + } + + public void setSubjectCode(String subjectCode) { + this.subjectCode = subjectCode; + } + + public String getSubjectName() { + return subjectName; + } + + public void setSubjectName(String subjectName) { + this.subjectName = subjectName; + } + + public Integer getMajorId() { + return majorId; + } + + public void setMajorId(Integer majorId) { + this.majorId = majorId; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/Menu.java b/src/main/java/com/bbyb/operating/examination/model/po/Menu.java new file mode 100644 index 0000000..447ede5 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/Menu.java @@ -0,0 +1,135 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class Menu { + private Integer id; + + private String menuCode; + + private String menuName; + + private String menuAuthorityCode; + + private String menuPath; + + private Integer parentMenuId; + + private Integer level; + + private Integer menuType; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMenuCode() { + return menuCode; + } + + public void setMenuCode(String menuCode) { + this.menuCode = menuCode; + } + + public String getMenuName() { + return menuName; + } + + public void setMenuName(String menuName) { + this.menuName = menuName; + } + + public String getMenuAuthorityCode() { + return menuAuthorityCode; + } + + public void setMenuAuthorityCode(String menuAuthorityCode) { + this.menuAuthorityCode = menuAuthorityCode; + } + + public String getMenuPath() { + return menuPath; + } + + public void setMenuPath(String menuPath) { + this.menuPath = menuPath; + } + + public Integer getParentMenuId() { + return parentMenuId; + } + + public void setParentMenuId(Integer parentMenuId) { + this.parentMenuId = parentMenuId; + } + + public Integer getLevel() { + return level; + } + + public void setLevel(Integer level) { + this.level = level; + } + + public Integer getMenuType() { + return menuType; + } + + public void setMenuType(Integer menuType) { + this.menuType = menuType; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/QuestionType.java b/src/main/java/com/bbyb/operating/examination/model/po/QuestionType.java new file mode 100644 index 0000000..5bb2695 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/QuestionType.java @@ -0,0 +1,95 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class QuestionType { + private Integer id; + + private String questionCode; + + private String questionName; + + private Integer gradingType; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getQuestionCode() { + return questionCode; + } + + public void setQuestionCode(String questionCode) { + this.questionCode = questionCode; + } + + public String getQuestionName() { + return questionName; + } + + public void setQuestionName(String questionName) { + this.questionName = questionName; + } + + public Integer getGradingType() { + return gradingType; + } + + public void setGradingType(Integer gradingType) { + this.gradingType = gradingType; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/Role.java b/src/main/java/com/bbyb/operating/examination/model/po/Role.java new file mode 100644 index 0000000..b82b282 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/Role.java @@ -0,0 +1,85 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class Role { + private Integer id; + + private String roleCode; + + private String roleName; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRoleCode() { + return roleCode; + } + + public void setRoleCode(String roleCode) { + this.roleCode = roleCode; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/RoleMenu.java b/src/main/java/com/bbyb/operating/examination/model/po/RoleMenu.java new file mode 100644 index 0000000..7b33b40 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/RoleMenu.java @@ -0,0 +1,85 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class RoleMenu { + private Integer id; + + private Integer roleId; + + private Integer menuId; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public Integer getMenuId() { + return menuId; + } + + public void setMenuId(Integer menuId) { + this.menuId = menuId; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/RoleUser.java b/src/main/java/com/bbyb/operating/examination/model/po/RoleUser.java new file mode 100644 index 0000000..89420a4 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/RoleUser.java @@ -0,0 +1,85 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class RoleUser { + private Integer id; + + private Integer roleId; + + private Integer userId; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/SysDic.java b/src/main/java/com/bbyb/operating/examination/model/po/SysDic.java new file mode 100644 index 0000000..85d49b4 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/SysDic.java @@ -0,0 +1,95 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class SysDic { + private Integer id; + + private String groupName; + + private String itemName; + + private String itemCode; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGroupName() { + return groupName; + } + + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getItemName() { + return itemName; + } + + public void setItemName(String itemName) { + this.itemName = itemName; + } + + public String getItemCode() { + return itemCode; + } + + public void setItemCode(String itemCode) { + this.itemCode = itemCode; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/po/User.java b/src/main/java/com/bbyb/operating/examination/model/po/User.java new file mode 100644 index 0000000..60691fd --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/po/User.java @@ -0,0 +1,155 @@ +package com.bbyb.operating.examination.model.po; + +import java.time.LocalDateTime; + +public class User { + private Integer id; + + private String userCode; + + private String userName; + + private String phone; + + private String password; + + private String email; + + private String idCard; + + private Integer gender; + + private Integer isAdmin; + + private Integer isEnable; + + private String createBy; + + private LocalDateTime createTime; + + private String updateBy; + + private LocalDateTime updateTime; + + private Integer invalid; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserCode() { + return userCode; + } + + public void setUserCode(String userCode) { + this.userCode = userCode; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getIdCard() { + return idCard; + } + + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + public Integer getGender() { + return gender; + } + + public void setGender(Integer gender) { + this.gender = gender; + } + + public Integer getIsAdmin() { + return isAdmin; + } + + public void setIsAdmin(Integer isAdmin) { + this.isAdmin = isAdmin; + } + + public Integer getIsEnable() { + return isEnable; + } + + public void setIsEnable(Integer isEnable) { + this.isEnable = isEnable; + } + + public String getCreateBy() { + return createBy; + } + + public void setCreateBy(String createBy) { + this.createBy = createBy; + } + + public LocalDateTime getCreateTime() { + return createTime; + } + + public void setCreateTime(LocalDateTime createTime) { + this.createTime = createTime; + } + + public String getUpdateBy() { + return updateBy; + } + + public void setUpdateBy(String updateBy) { + this.updateBy = updateBy; + } + + public LocalDateTime getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(LocalDateTime updateTime) { + this.updateTime = updateTime; + } + + public Integer getInvalid() { + return invalid; + } + + public void setInvalid(Integer invalid) { + this.invalid = invalid; + } +} \ No newline at end of file diff --git a/src/main/java/com/bbyb/operating/examination/model/vo/CommonResult.java b/src/main/java/com/bbyb/operating/examination/model/vo/CommonResult.java new file mode 100644 index 0000000..cbec326 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/model/vo/CommonResult.java @@ -0,0 +1,77 @@ +package com.bbyb.operating.examination.model.vo; + +/** + * 通用返回实体类 + * className: CommonResult + * datetime: 2023/2/10 14:30 + * author: lx + */ +public class CommonResult { + + /** 返回编码(0 成功 非0异常) */ + private int code; + + /** 返回结果信息描述 */ + private String msg; + + /** 是否成功 boolean表示 */ + private boolean success; + + /** 返回的数据 */ + private T data; + + public CommonResult(){ + this.code = 0; + this.msg = "成功"; + this.success = true; + } + + public CommonResult(T data){ + this(); + this.data = data; + } + + public CommonResult(int code, String msg){ + this.code = code; + this.msg = msg; + } + + public CommonResult(int code, String msg, boolean success, T data){ + this.code = code; + this.msg = msg; + this.success = success; + this.data = data; + } + + public int getCode() { + return code; + } + + public void setCode(int code) { + this.code = code; + } + + public String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public boolean isSuccess() { + return success; + } + + public void setSuccess(boolean success) { + this.success = success; + } + + public T getData() { + return data; + } + + public void setData(T data) { + this.data = data; + } +} diff --git a/src/main/java/com/bbyb/operating/examination/service/UserService.java b/src/main/java/com/bbyb/operating/examination/service/UserService.java new file mode 100644 index 0000000..aa87ded --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/service/UserService.java @@ -0,0 +1,14 @@ +package com.bbyb.operating.examination.service; + +import com.bbyb.operating.examination.model.po.User; + +import java.util.List; + +public interface UserService { + String addUser(User user); + + List getAllUser(); + + + +} diff --git a/src/main/java/com/bbyb/operating/examination/service/impl/UserServiceImpl.java b/src/main/java/com/bbyb/operating/examination/service/impl/UserServiceImpl.java new file mode 100644 index 0000000..7278c60 --- /dev/null +++ b/src/main/java/com/bbyb/operating/examination/service/impl/UserServiceImpl.java @@ -0,0 +1,40 @@ +package com.bbyb.operating.examination.service.impl; + +import com.bbyb.operating.examination.mapper.UserMapper; +import com.bbyb.operating.examination.model.po.User; +import com.bbyb.operating.examination.service.UserService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * 账号服务 + * className: UserServiceImpl + * datetime: 2023/2/10 14:29 + * author: lx + */ +@Service +public class UserServiceImpl implements UserService { + + @Autowired + private UserMapper userMapper; + + @Override + public String addUser(User user) { + if(userMapper.insert(user) == 1){ + return null; + } + return "保存用户信息失败"; + } + + @Override + public List getAllUser() { + return userMapper.selectAll(); + } + + + + + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..ef89a16 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,10 @@ +server.port=9001 +server.tomcat.max-http-form-post-size=156413531 +spring.datasource.url=jdbc:mysql://127.0.0.1:3306/bbyb_examination +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +spring.datasource.username =root +spring.datasource.password =123456A +logging.level.root=debug +logging.level.org.springframework.boot.autoconfigure=error +mybatis.mapper-locations=classpath*:/mapper/**/*.xml + diff --git a/target/bbyb-examination-0.0.1-SNAPSHOT.jar b/target/bbyb-examination-0.0.1-SNAPSHOT.jar new file mode 100644 index 0000000000000000000000000000000000000000..535488a744df4f89b2a5d49fe39a700cc46f6956 GIT binary patch literal 35753 zcmb@u1z1(v-aQP`-CfdMn??jliA|?;ZMr)Iq#FgPO-ab68%aUBJ4CvqyG!KTcy63? z?)~5Qy!ZWl9v_#m)@1E9<{0Dm8*?sH6yV@dVPKG9U{C{dbYOn>2L*bpD6JvRE~g~J zsRBI>A9@<{uhS67I2^;E-_C*lg?{y)rzwgn$;n8oYj7yafMTmqJGk(ruU`CIy>COa zrUaoAMd^)TIwRvVgWk^&Uy35B86TL&FEQMnFFrIZ zH{z?|7rxajxGKov84-QF@83Qi%AYG9&Bf8q4&?HG zyBB*CC+HLT4`a~(&-Y^QXb!Ub4?{5h)ghc5|Nj`p<3EkU_&?u^E6Bye+6?p`ZiVfy z4`OZa^!rEiXAWaQNBRec?M*yDzn@xvKAGcRPlir^j>qZG@sD}U@$aYUpT`pWUyt?p zW7z*Z_-~Sf45cn1{%z$?=%8t^FffGBf1&fr&f4r3TR5Ct9&gXh8suvKuH7M+3tQ?) z_J`z%ESn&FG0lxi(Sz!24>oSP`wT;pa-FUtVv-~;kGrQY31?~RePtSJZ6%!ebK}m=t#TnnY&|;&8e^9e z#3}wRc*;PqS*yP3Miwu)v$810-x@AG-cxs^^8sT52C1^Zi&ib`X&z}8xytI)+fHDb zElteoK8u+gRlr1}PG9!iGv8KiSDJ;II>BV=WC9YluOH>oe!%`yq#wmjt;*)P(GwV$ zWvJ3U!toC&`v;bszkl2k(C07xPYDwL-SaiGGjVkt)=*T&6DRhE7@>W7LKwA1#aulKBN~tCnz7HRg$olHWhR(-J;$Ijx@y9V|IIFN3lkzaqSs%WXxpl**c+ZtjSuycC)(c%#VRfd5Yw&n; z`}lsmz4=20)?3Ua(d*Gxkr9)T_M0ahD>R+w5qe`r^>bkMu>8{xr~)f=eVYF8vX3yb!|K0!pB z{cXme`I@v{?F@%ztia_OyJw=7KzAE;5 zT)iHeGU+)@s}{u#PyRNVg?o%Y&fSHjpq>!~7#IR<7#N}ddG7wr@#Ia+Y+W54B!BrI z$FEsiru|Bt>?QWk9^;C4GyL)E-vq-)yE@(w&0lw=U?&KbY4nFhY*MjD*l#ftr#$Q@2;$Tlot?iNAZHn z-^C0~7rr*?Ta-QeLCwHt8W6#ATIu&SHUk#lJme<%?ocJ8>vt=N2tD58as=eb+=YRS{BD_Cv{^o8N2@nIUL_(d`Yq@ zKp7}w7_g-HWNF*(qt38$0NG`ZWSc*Z@;XV_B!(N~E}*7)2>4WlL75)$Nh`9d3nZTU zqK#Z4YdwVAScNP>g~${SpB&dY_3n$AAb>ccFLL{%2tRZEDpMBGaZrTWG2ndqrKa0r zB?a6^oHVSxB0JGCO7<2KeH>E;00}C0hCyfL1vR-+T=cetfMj_79G~H{Xg1Q)PHng! zo7XO@@Ivm-**r79e4F2s;Z#Buq+jE`B^FUK=$qHoO8AuF(>WFyctA2;KJCEpA9 z?X&PZgpv#L`q3!C@H2Q5P08z)i?0G(VQ-?{AQZ%U29^0J>;fs8NCbKqq!vn52>L9U z;pQ&f%p@Nr(G&W2gAyjsY0|s#Sd&mwmcflL_?)h2?k_?*pYNQv=j22;E=Ui$tUoC~ zx!p1Qrv5gB`05*{DK@OU^l5`BhGh1~RbsuH9P5gT3UHr(r(uSA5kq=`@@0bd87iZI z-N&<6)3HxE+i1~!qdmqr)%s+aUpb%~F}_h-sOPpTHuyBKk+I45EU54eHx8$1#;Oyj z-n!SUs8o&a4S(*0HSn#Fq%gwP%t(d1D$}wI_1QHLKz`;R75tJdq9G!MOBzRgVke3W z{cJkyx+V&AArM6%mPruNQ#CAa`*0&$hKXH&|0Bm`5N_GH31`b2f4Z#RunUJ(`LE~|YFr7}a=I;is zn$ZFQp38r4A$;~>@&tUf(bXigi(4;b*+R9wzrZlKx!XrL)^MK zo-|E|thCSGePgtZJ!QO-Q}ZM~F)iK!Ri5m5;Z!_zR#PF(1w~fs2_s(@%xpbP_Lc)e zrns|ayhEd{lV#dZ%iJ^x>x;7{zgM^#Y4aJw73bnX9jGsznXga?tb*5rw_xnBiHLKb zKZu^3iuOr@C5ir;2(b?0_ ziVb2zlE(;j!_t>b8}48|YVj+dDFwIidL?6F)+HmpMBR?@^!1^XU|9iv_9Y>Lh@_-A zeR>mk4G4ng#@{(X=QK(WV;GpE~Ae5^eO#>n+Vt%_D0g%RF9!Vsy zL~Ah6;2nsnAdvoOl}upIv3tn;lA>4(*Kmp*=wC94zqd4+&>9@-5`X*eZ%)yoHLpyrN&GwiM>vZtxUr+5KxC8O{fQ} zC!G>)Cl1S*nfbgeaaL$=h%M#Xm=sTalK0k_SMl|jfFBEk4AT;&;*Vzy*Ds0JJuL{o z!ZL~#9hrHC0-DppVk7@ebXUJ3G~WsS$a zDkt%$F0b$xDiGTQCl6+)I#5M!5tGt*i{4qfGq#KMxy-LrZJQ%wJezjBKi&8$P>)tp zA(IzXU~VuUiMeAK-L8Exqw(p^UcLvk0q;b zS(YZwEGBPm^I?#a8g=dd$NH0%_s@5d@-T?-YfHwC$t7o~`^Y*j$xU7@j6dnBe~Ztf z5CreJsTkZeh9lPXp3Lgj!9}YIRlfs-K*1t>BGQ?k*PNZTQ>5`Cy0y+PL1IE5d z<1>>G9{(css)2&#=X@^HZPnw1DAtAnm1f%+#*l9J^oi7&GB&ELf+@Zhgn8KbQj!Oh&zkMOAo--q7F?K6KgGX z>>^*}*PONWPZx*#(jXKxR41lN3TmX~{AFZWPRYD}y)X8LeN5ZkyrLG8;UzUG1nfl< z6&V{{B^j?0rSyrL_{yI_M7BccmrCVMny}!0z93cY+M%sK_@e)+y0-MK#oc(vxU5Sr z&Pet%T5+!s0D2ONvcM+dMGRI{P*qTgfC}yS(<=*U8>y80;|9sfB*r0qphc9&6ZDz^4ZQUcYs%Gh$3<^QyPqeNO3^K~Mbppwc;J!HmpAe-y}!>2g# z$r|x_riW>SlKGHQUdRHh(Wjq*X&-WcQ-q3BNfp_qjTej>Woy^>1}E=@PIe?tz!}$e zISoRL{ty-Nq_t$K@wr=UqG+yfbx}lzdBR@Lrx}(9{Q6m%w2x1#jmp>x$TZIrcldJ& z6|J7e&{#qA&P2*59AH#q@N5K}VXY3Nwg@RrvKDi4A6VoOjp(uC$nqxM~S z+(1i4FZXGe7aAaEusXV>1rX=?PM&D!#7`s+lkl1kWz*M?v(GMG1wH86$bXk{JTHa2 zEcGu?6H1C&SXO&qmhbV_Y|O9+Jt?=(Fu>YKu*mDFt2T-SASb?qCU^#;-S}!B32=pm z7k%;JXvock_H}X;O+|ghDWrJZ^u-s1Y3m7#^f8)!&4_kbjX?)VOKFO)Q#j-mB}yxa zg&e9Fg0%Y;ia3H5RGj{QYN>@^RVHx!U*J$Qv2k?ycW_|x{tb?aUvLD%t4S-cUcf7z z;_C}Je;0gF-V+4p#MGtG6k)|mJt zZX6X&63L=_k9s`bD3zWK4dEP+bS~Hc@jlcG?-7nLv>3KWI0&hV!SO|0(>z+}96`<{ z(;7Clp^k(@La^>gF-qqWdu6H=UZ(IOKTKj01sq9X|)~ z11C36_KE&T4m4-2dmbnnrBHIn{x{@MF@eTL;tsB!pg&-euQmv!2(~^_+Qcc#s`J)Y z!{bmgIrow5~$V@A{5zU({3}i5 zX@8>${U2!}`>!+!qYRcSRHKB~Y}1U>B?fnsi%GHYG?l~@&@g6+)g^L9r1I5bG^5KX zoG^INSUFL$ar2^QAmi~~tK8^9B(z6$xEq{Ww1kGydkP(U)B&kE-kR~8wX)XoMCd*M zQ{(>97m6PB#DHB2n+022o z`7(%{wn6=uv!3RMiQaTgVq*G*YT?&(cu}7hJ`a>Mg>}F2N86n&7`|+$v73o#r<@w3 zY^%(_B-@3-Y%Zo1WU!Iaz*0hfmdX62V0eA@SFrqBaQYYn^1KuOzzYSV4$2bw|C%ML z?jYC4m5JYj@=uIA3xMD=5o7QALq&HK`z61q5Yq`nI06}W4rF5%}I zi8DE(-WHagGKOCQKDWZQF_ZhOa5Y3}^mJBYHnOOo(Vm5@NB5a4c_y6!@w?7egHYjd zJPDEsfoau9d+1F(Cv;vcR&Dlzoqb%#X29_k5QP;O#bDWZc%@Llkm+S(JN(6~04X>I zD@sjrWOl&r1U=l#9&~+hN}=^arNB?lGMbl$g+^!mGPb(U)f*Bzq&ICF!l^pT90s$W z*Eh?mS07$%@h8PIQw>h&v}-U-=~|mRJt#W0`h>xPuQhR^H)7o&#S=J&gNdbY9}F)d zV>bZV+VH-*wKq_rJdY-}dvlL&zs*)S95xqp0Gh_!$DO7h2z=i0Q;jI_9^!S3@<*bq z41!(({?7`g26A<`bNlzmKoxA`Zwgk3`%A%ck71RnQOh#~UC5t)=?TPI$-_=R$5u5A zzx@u*TqN4*qv0*0w zc&5wso|}&lkz^qNFQX#OSc>qTCc5jCqlw2L6}uvzW_=whU~2y&V6eXl7{9FzT3w3f zvr2_W0lP%LN@+sgpXm-({v$3EJ}r~nP+SV2oO$_Qb4K0F(FOGHVRBd!K8I zkllK<*?B?&K_Xk7*!$;>z`A_K;KKpikN7v3VXSW_UsBQE0IuC#Q!T)>`eY3VE?Fve{+>~l*i)B zHWVILmHutyLG(B;wua`_|-=MWte-PW+2p6 z7|EBV8C;u6GAwhSW-WVayo*|Jd`0F#0@Pa5bXvpxNnXwcK+hmn=k?M?(zTG7d8@+% zbrq$?J`9FJ%Si;1Yb!&IN9jtNpbrj=A<+SFs=i-bxcJFh#1v0dY*cfxJiZ$%oHWG@ z`10(z{eG=GY4Eu42EQWncxL$`E3Nur{{(MPKF}(6qOa|NHr0{BPjX2~vn%)EU_HOs zEd&dY-!&L(``Jcb2YtIFTS#(l7n`laBbaz!yk;9G=9$fxd?*wZk5Dj3VXTByPNvg1 z&535+!~78o8_K(~M=VmISV;XhSg5<3+JMads9LIjue+f1*l=FYdZb4oGTl2CHPtCj zrvy!>q^|gN{8L-8OJXo9xJu8Rh+}AyPPj@X%TcE~ z`b1W*835o(qYV)}1SmVChl`!!;=$j7kmk{Ep}mO+!PKp}Ejl7M#Ok;_%LZyCVy43@ zLs(h^&JJASethJUZ&1>R2$Vw!N!)i5e$`w<3RAp?Jy<^ni~8b;Y!uaOtMaE=yIGjE z%>8?O49RTqBoP<$$L-S+ip2CuHDn+n@A3(T%q0|)WDqBfg7y>_Uh?{@5L8(meGyPk ziaQpEnEU*kk>gBb;((hY;jNG)dZdOeb})ri+*0UL)ZC{j%KdsxBqv#o4@^jL$XL1t z@NxDh-^u<6hl4I35;GJIH7FeXe;E!%kc0d0^(jepUMctmcBV91ouTf@DaLvCbeBME zBplHGoHJS^bc*#+#$i}cY@&vg9l|n zBItYXN}hb;0w@c%MgliAe$gQVDOFosPq=c>xEi-2s353sbQP7hvn`feI=IFs2gKlZ zAHo;xI(n3PwqP7|Yaz@S2s0cVMI;d&199tbOW=mn+oZQiXg>Y%kihKnJ=CV=Q|>d} zGGv}!&;;yL;g4p^=Hkr;`J=1 z)h0M*|sv43phHP)RrYRV^-AssCCDQOo7}sw0Jt4FY5#2-XfmcMX zUP<+-7myy7yYs&N(_+=rmrC;s1pk(*9RB&iVI>O2gaf4<_+s=o!dK+ltiQ)#esjY zh2E@wh<5zv!4fb@xC;ravT$>|%dzW~4ttLcwTSfnH;UhiaDpicQ|3dL66Wj+pMP^K z!CZM)D5^?Gj^m-H4j-4^`~FXP2`}!}%l|zO)Ew>p00EQ-@|{o~#MV_^OptOeziVwk zZDkH32r-T7_HSn(SxZ*rx8t|*A4U>udyC7sBgut2;g=@lyP47XHy(6EqG1M~J@$Vk z@Ak-JE1?ldYovyS#@=JIks)RsdIoVbNpJU}H-y&?>U#_20krW`&FQv=QicHH(-zfU zL{&TV%7RMt)EeM+Eg}$fG}V2e%HP^3r*(B0bPgLj8Hs+*YbS#y|fl0z%~e z=u^)C#Mz;sc4KzG68zcg_n*wI^Vb5|>=bndLM#-5(IH=uXVPyL-(_oWR&6`DH$eUQ z*pQ`~VWAKmNpnDJ;TlHYg7)pga)%%Odpa;s1*e{T5PT^5$=7tF53zIWT}40w0|lC8co= z4MjBm7>cl{@;%M**&rEBC%N(SZwY{DBOYm5;Uex8-cZ$$*59%UNtz8>PnQMBcxIkx zeD6AAEaU1bMJM|fYJeD=?}Y=+M7&~>iS-Z-gHYL*G=J4dNTtLXckQ}D!)zR5`mqpm z>|DRE{Xk-9M8!-j2ryY0D19O6k>Y=B^z1Pc5xXZ{r^quZ0*Zr7n_q4I90knxa&4FG zJ0|5a1=LovmuZN+d(1={vu`Gz2KRHeUtEF(%y*N#Y39ThKI~0&3C2g|hNYJ@6`C0! zp0lcaz_c%i<5+cwh5B;K5as#Il)ofJn~9z~e6JKngbUP{XVPf6>?oDL{3)T5J$b?O z-(m2$Ch|u!_#FnizsEpBLxa3cE-Q$YF^;_8T}jmn3_0pag1iQXY@wld&zXgc|F2q= zE2xGaTC3(Ld0{8Q&X7QBRZ`d2c#*)Ja`mi;7_Xln2}HN7AbfV69KlNxYzW#xh?LM3 z!entViBQ6$0dRaI*9KfN`pENuvW$;}X1v;+C?vq~)@>_jFl9CH9U4q=JAvfo%sqE* z9zIPb_VL_LR`4%z-zE)w*I=kk2OU1J)%c+Yj|}|OVvafuW1a7i@Ad=F%X6i04-+Ah z!~~#}*N=Xtp7f8G&b{eeY~%n&m=!VER5lhzvwQ`;`0`}hdVEuN1=m3v+Hq?P?!WL< zJeZk+CFj?C=>&Z29+Z%;$kgExFV=Si{%FQH=kDKGp*+xs@<8w}^FZC(Rm$4zj|e=< z5WWbRz3EK0-k-o|@zIc%Yceg~V@q6;MWI8f_GQKaH!Bi_RBN>ZSVuRd1cvx%= zq5Ce087{-DkjIf%5@*P;tefbB>k|})#(Q_1NSgx+ng_fYP}jUwQt(KIbywOLf>$L( zP_j@H#6r+w(BTAn@G+LAT-kYY_Iyi8$bEmx3k^eyQ_kNa4~-LjtN8Im4rpa+VLbR* zO3}kI>%mAsI`XrM(ShzfMp;&oyqqS@S2)2WgivS{nVO zNo8)G9yEVyE`I)v(MC2AfwsfJGOA7d&g=S5Z8go?%#{DV3;Zhq{+})ox`t$zKH!X^0DZJ@IfwQ*z|nYAY5mkNCv z@nUi5xKR(ZSW4uu;~}o-ie8b&zTwt4F(>ijW~mh{Bb0%3Xkh7Z3tj{#3k|X{Sd}yI z;HKvJeLa!*y98N`rH}~4FN9M4NCCd59d&hnVUbrVQ=RrdZ{&ZfZ zX1=ccH6cGK3aPr1&x9E-jU5A!`jbZAann;W$PnC{+dRFhmcr2CThwPUm9<$~x5tyM z_~PEjt%&lx$a62Q9doLetgSNCgUkx+vbhwF7>AdkFHmx~Wdxt^-4QMW|91Wu)nu1Zi)5Wcs6v4#oc z&B(RHB)@t`tsE<~59D}LzEE0e&RYnJdF0J>8 zZASA5(z;^RBQztyov~*o$dap3u$<3ZOF-TR*w)qezC4f#cYOgjescyuK zWJ15!x!QPhr0*SwiMqu(|EmsX6UDiexTDpP?nQz{R&hS*19#~}qs{J+N9N*XsDoUk z?)5Utce?E&8xKm>UY=K`m|hM-Tb(3pg1&L}8)X(o#7TJ58hdGFVC1RrG|Sgk4fP_v z=O2#yg?^^{q2K$iU57cqHo|r3L`TG09)&mZ=lQFty{y)tB-5OwVl z_2`sDUsAo4VdQCTM~@*8b>)muZ!nXdvy9W|YO)WX?Q-A%emfX2Fyi}fkg0M^`?ZAWE#$B4p?i{CC`UGYgK)x)5h*w?8Jgq$=21|Wv5PzeZQw{0DD^2c3utuh1p0X7T%qaHIJgxtUx)$n5w*P2c0g z{$y?6dAzxB_8l)fz^@}?R1|3K_+di-^4;fk9vXG9`M{*-YZ>!m(~(dt^{>9YHTstr z%3`;F+Ern%w?Xy;>Rc_*R|5V@H}h+A_8 zR8%#1geeoY74$yexuqAW5R-(qzWNCg3QMS%UgwZ|a^@($9gODmtoLnxxC32r1pNGY zivd$o`96gBoIcwq7&d~3xRI+IqXkqudY*TS;OK?EmTobBUPpYM#9AQ9g)E68Yr}<3 z8hjCEzjJY`Xi(4DXy(PRdBPb6s&lrlcOP^(P4>6mJ8Bw%Tkr57?iykU2A26Q`OmLg zE)-4RT=B|wA_r4P2YIT7w(Brmeseu$!V!juL&$urbTU4_!f^RcVJEn7d_968bY#ng zf<;W{w-srfv;UEEFDGYaKWuystuEv?5fLHB)qQqdK z<%=sN*n3Z4 zko8_BO|Bd%+Bj-C%m859*_JYhTct@)6jxbfJdK9H#v=$kONQJ;PnwCp(Z>s*#!zy{ zxmxWA@?;af{JqDtS5YT%Qyu+Uw+iEakuSx`F-Prf;Xgnm-p3t}qY52POgM;qrF zx}{D?Ts9_HYgnXd1Ih})G9ZZb(5oopfexN6a+x|l#R z-ua=}qC!x>){6bLm=zj8Jb*fZD?e@Oc8gmoL+E~3wURg3TCZP2bB39d=fHHt5MG^H zzaZ${qQ+NiU5ndnbDy&E$=acF99J70V7F6dl!S-E4QFZ+I4%)5zZ=kAI^-53#E1jT zKmL+UXTBV9UjOi?#0;l`l(i4)i(KgcHLrdxi~XHfdg_xZP+!#7)m2lKkB&gr2_a-r zZD&Oukd_*hj=s+3QJS-O`i(!6E<4VjDRbPp2TAM=)qwLAoqeat*_y)0?DMmtE~dKVh52}C`eDM8%-IEhbf2e$p$(`l z*(^>KcGIZ=|)Cmr%zevk@5%9Ebdrn6_-gjEIER(&!`-vy6r4`(|n73+p_pgr5(tTcW`SLKA|H!UK*j?#l+T6 zbF>eOQAs5BnCB5KbZ?|aY*~P6X$@O;12rt)rS_fkCZaM`sX0xbTk?2lA;ii{58p-_ z=KJpFUTI}l7=MjDSl8{ZygFCY)F*A}ZFNXDzZ>DW8gs+-lGhWGOc{i|` zO1aj!o>@>ch$Pm_cRBi} zX27>GmmsZN_stDi!2FYr=E%{Atq{E@{qv)%UvQlQ$PP1b0>Zbo`-IJKo23hsq&dJ#w$`zjGY0c}K}^6qLN=(>Kw5DK zPW&bFd^0Ox5_7P&|LQPmNJDDa5P4Fk($kFQfXAb!7X+DMn{@SmJP;`KChJH<8S#?& z$X?l!{tmoU1=M?e#9$5q*sxFo-?uL*M%B*mKUeGrBC$6x>c4?i3{F0Vd( z_yS{0=J6goFce;jAVNIj#bsiax}Vf=&d(grfm@EiYqU<@1;Rjtvabd~(mL`l)B^FD z;C20MORs!Vo-YcU@w;OTnGw0!r8d+7{p>Kl$%@sS3)HMocjw(f&cL(qG(B%#wDOe9 z@f+})d%P!V%6So{E$5%c6<$z>B=TB4ko-G0Ftm@m`Ne?#i}k)wI8w6s1S&VP-L1og zgN6pDE7eax4WUmAkG~P~JOL@UNxwYO@e}qra74)@Kqw}sH%Z-c>&nSPx^{#IP;{Cf zF|JbvjV(nu<7O@9*R}hJ5xXm+hqoDSJ&=B-!zKgN$6iG1Do*e(cz*WNd~Y|?T8ODS)|xI1mZW%S3O&=?cIJxO?7nzH_Y)vecrJ?g-}Fms{F$mJagi+<0H7|jNADI zzDu7p%H`!adP;~zT5^Y<51}!7AC+@(?Z9W!+L~U?>IEBVNiY3SB_yaDCd&cA9-rPZ!!N)+%OJICP)v zIUVVq3dp`jq2J2yzgmUOTI*-8UBlXqJ$jd#q!eX^;+h;9wEIv{(5B6t)70*MvJ_Iv z0Fn;}v#3GRGMFhWbO|uxc|bux5^BBhun=Z43*8jJ^N^PSh+V2RoNKKR@HHj`C`8@N z3}OiZld3TojA$V9?4;K4h09?8iX=SHC>2uWO&|qo5Jut@uA~m&v(%br;gMh7GONGp zb5PhS!nLrG2WRy^9{5BG`MRbSw|f_(&Ti58ZT)G_0&XlZ$ph3YeV|?`^A{47{}&Jb zp0WRp35oWulQP)7+SFCSwClWdh{5Wzc!g^#efHiqcu&6vel3GjT8B@ywq%(Xh$J2a zBn-VHxy_sddk9Yw-NW3gWFBUj>j_mDp7azf&fg!6`ubiS1q49v({t4wkzqxGl)*hU zC=s#7vD7npwyKG7GkTM39FTS7|$f*~K*tu(O-j+$|N>Ah;}fFLikH)ufwm zN6izmvo7Dks^;qh55->l=(t(e;geiXLn@^9r=`dXE zBr}%2u=@~ymW)}y>WTr#sWExRq=qd0gm)-yzFN3>JbCKXbPk>SZOf&~Rvad%2v3+f zbpe7&Fw53_H?pgu$LLx4K>FRrLwjY}0ky(}uhUR9-)yj^KQ7~ad(nYyrNP}d$;CFp z%!uqLc(fiC*V?HLCoxB^`I272h&viV_j&ih8gd+Dtad=*E37RT3^9wLHRuag)~RCJ zf@w%G=e;yUF()r*8t|hqEf6VM*ZR6?tbE4SODH8udXbpTRrDu`-H9=$r(qj}wTL&c z@=y_}q*i#C>hNMIbp00wFt0jxnneqHhNxujw(_E7OpmjVRe1|cR^yW>4nx&mJ$zOS z*P|F>r#S2rbh|TD5UJUzBz$k-klAL8Qqc}CYA5`24KCCO@BB?40To8$X5J_4vTiG? ziaPxiS}{Y-#$=ji@>v2BBbZo2;E($!?0DK3Ger|d+4mfstzFBBZjcq$NIJOV;g;|c z#H-bIol~lJKNaO#`x(SSD!8K(sMh5l1T}T<@FwymNOla`GxXG`sbr*4&-rLIzfc>9 zurW8c13;P#!JxVC;A)mhiXmo3u8lRI5c3`KMi1CR6M{N;4qqn-d6l%ovALjNoZCnO z7?ztYV4M6raQ+T7w+Y_VgeVSqC$=TN<=M#J#~gH%2F;m*J-i{TER!6Y`}AA{Yd{3% z=H8J>zNDRJ$vY%s$}<`e(#?HFE`s$ljl}9@(?(~AbW+g>Ky%eM&RP{@V?3hz1h0ih z5<;eSiFCQ2tO3zxQ;!vErcc^o9J&z-v=;LB7*zA1%Hjb+e+VbrB-%bzXKgOv6ZcCx zuJOBP=1uG%tZ$+uER)QG=d{a=lAvAVxc6-uQCCHDAgo!@vLfK~D_=(gnHPeD0fQnn>GRAR89Z+ZWf z1?>Nq#Qe7T=5GR%^t-SsR08c2K5R5Z1c3m5gCvTUM_QF~$!Ijufvz^~2UQ-cHcRYY{JP`kCV* zSCaK)9HSHPnH|BWcI^h{yz>S68Vh<*ahujO|AqWUUGBX06m?dh`*~PuSg7m#gkrM{ z*=*vW#tM*@v^dJDCKo8EpH?v`CeN z$&re zz_{#hx$^>`(hY`5FAEH#0^Z991FW?Cl*of`%8V;KO&U=56CaKmW=`_%#l?gMGB>4th!c1T;?>tL%{V+Dn zO9Nn60Bf!0$5>05>$ay&V>5WXoCjKS+@XG@1DerHrX}w1eU9gjjRcbE)R1&^Eh(fk z4}xa$w-WKd9v^{Zr>+B$K>AW4WRn4;QRY#QfNFWVwVJsPBWO-W3uW?SpGHqw9yY_} zvk8l|wd&@HXQH$K3I*`x_s8T(xI3)|8zONWN7S${%E@^T_s4aUp`}v~9VjKop_G*T zKe+y{eOG_Cd}y2e0>4+e;atY1DnHZ(Cpy$nB{w2l|I-4SdLT|AkLdQt10|G6-b^~s zcfFmMI3Ce!*dHo!mI6DWptJ7^{Jxg~Kko)-pWmEa%{ap71mnG+*^fX~z3 z{Z!05Wnmyxq#s|*9_XlUYjar#A3Uosgba&(OHJ2_+=pwYiD6Kr;lL6#P6M&AO?}x~ z*z~o_Gp}e{CYCobIcNVWsDMR&v^Y$Tj(E%lw@bc7FAfrLQ*2gWbgzi=+R_j#DY-P`m#8!oIiCv1YIsQ@u>=5q|N(|SorbQ z;ZZw0u{X>GpwvJl+z|4OMo6CP#Q2<`s=SP*{eGhY+eQvLv&E9bbgB@BXae={>x`!a zlgB~mB$w8@XS()dH0TGWMRXB~wG2WIdjzIgB}s@mZ`=y1ZEV~Q5ySTth7*hn&W$dX z+j6HP4Z052XERpttyD8Fq_iqCSl2_nU+yd9c@(D=E7_USXd*vX&ZO;(oEAV?8wlNK z)oZze=~*P>9*12W#nRN$P8y1mPPBp__GsRE=CRkgfF~0_%^78RWK*cwV7sCJrYH`) zf|@jXa<0$A*bDH>EaKcn#eU

q<5@8^|nJ^bXrGdpiCBS+qt_-6_$DeB=Rs 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 literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/controller/UserController.class b/target/classes/com/bbyb/operating/examination/controller/UserController.class new file mode 100644 index 0000000000000000000000000000000000000000..da31de0cd6be4d4ca707ee25327119e167c9608a GIT binary patch literal 2577 zcmcgu+fy4=82_Dc*$|d%TWqCRTB#;LS=&-Yf>eU7qTwPbDBz`=y0xH<$8Yh3%TPUFScW^uP!SAGEATV)CPYe$$JgST zNON0v4U*=oddje9E-Wo2lHAmmg*GfwDPc`=Cu6#P1Q<^4e);{*r|VmPe7AG^{?^9b zzd!zMYh!cwhs^*KsM3czhL+$+H19^twMlEwm|z+YGe} z+?BIo@{QqmF!ZR208XGq!4oP@;uJ%NuopBvttS?_Mz$yrCkxDF&2wqWHB5&=F`NkD zwZzaGEYLZ;sM|6AL55oi9uCd=(Yhb~?yq0%etWw(`UbSAcuK~#=jfQ8;(oLsy7C=0#OGMY$ON@msM zZiQ=c36~Z0s`N1?5anCOuk2g5`Yh$eiO*_z>Fksd!OxCSW*Y!o8MCyK4c2 zF`(cj6@$3S(3EF%LoGY(dPApE9^B*-@l*@Wn8gh*gQ#UE4`v>h#D3j%cSDmzM+$PhUTb9=;pL; z8*-i7taKL*ve#b@_(N$#7Uz$gwlXv+*|KD4lCTUt<(w^M36&(bZDEf(3lfBU>T}JE zp)Tg?iKS6Jodrd~R8i~o#As`jyNe<@q04-@+$Pv+V#Wfs*^Eu_e)zwjFi_zC9x(?A znkyvH#gyC+wTPRKZ)#GuT*r-wP$M@yuP)351!MHPsNjGf@u4N2}}ve5F)tw(10urexz3O$Q%{yG^dU4f;qW}_^? zRFgc#S!&cide<3!sa4bXDy^z%e2vBm8tIXz?+C3l8X1jMo$Fvf(!__?=_`*x58)g1 zRXqVjF-j}SIL1f;U1q0IN$P;FyZ%JuFHmNhd^628>!^Lu^)u=>aQt3=`^nt)>Ei7( zx$U#X+a0;>XNtE&a=Y^V3Lz>% literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationApplyMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..cae2eb2dcbbd9a9b3995d61de65d755bf37654ad GIT binary patch literal 654 zcmbVK%TB{E5L~ykq2*P|b1sDpFdhU*IIG;L3?3$0_93IPd{{6k?kk zBHBtwz1g!fJL6q{|9pM{z#UvU&|okMbj*Ff@VQRW2rH9_;%sZ7S8AwvdjnPh0F-M#Dmmr|1>PxV&L(x7SdJB7+9RAB#xn(Yj=za4{4WiwWa zEZsr%=G;ofJ(<}d5f(C{;pPSzylxRj`+Gl7^M0O&VsrA{h0aZY&r*@)&F)p+u6NUB zz@SOL1E58lZ9$vv&icmS5Z24?K(~gDO6V9)YN%qJ!Wlt55;owRRQ(MV6)(!-@aWXvI3l2}5lbR&dIy&YFsgXGQV+7tTw% AX#fBK literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperAnswerMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..2f52ca6d066be72c4537c408cc3a4bda976901e8 GIT binary patch literal 684 zcmbtS%TB{E5L~A;rR7!1|6< z7^nFX^{j4oV2eS2A)W<~170QjLk6}?bJTR*wd4MmRgojl)Gujko0e8fik4Hfz?IU74E^5#}8Kq1Qk=HM9$R4YXqI!vR5k5?XLbs==Cynn!i> F_!D0^#rJNhrBVMm#mjhux+)tYw>m2xQG{S7tQ8ftetf#%BQJ`CBi z+grUkb2^kGow_~~W_r%U%`6GLY!C*!d*5;MPL>2}ee$iD$*fOLI%LbM?W??A?xrpv zQ03nN)OfQs)cM|6-URlsTy_(!5;`cLLmZXRigk<=hT1Hw;FMLJH5C`nisJb%$U(Yf literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperQuestionMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..ebf68c56f80aa4f87f0d722bcf7227aa28659406 GIT binary patch literal 694 zcmbtS%TB{E5L~ykrR7!1;|I8;7kuGXR0%|pDpFBY3C>Qk3a*?uavUJP#(@vuqY#_q z5K&%--n_FjJEL8{f4sf{z!@BMpuynE*Ae%;+~YbyBdm-=jxQpTF}-!nBasl!Cp9z| z1l(nq7X4Y-?!X3v{!%;%t^^IZ^_J*c27>?~M#Cu$ zn4x{t!CV*-k;9}dJCNyAFrh%>yy7v zeOlbE&459Zei1;6F5iMS)t#bZunEOy=t8fCwn}Ilc50|%?ZO^GeG)ccpHzbt6*Uja G=HVwWE6YRx literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperResultMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..6162798bde7a7fdbf0e6ad6ec90891dd7f9bb9f5 GIT binary patch literal 684 zcmbtS%TB{E5L~CUq2*P=DZczpwaGdOa=VK54H!h@g;xX#cBE7O?ci%4WjXPxpyWQ6mp8uA4J zcbFH-POGL18w|R0@g%qsB)<*j7+MBigbFQ=O5eytnDPco2FJZg%^ar|V>E;Qm@b&2 zebkXJj7Ugjat4l!7_?-XqoM0Adz1gNYI5Y6{v~Z?(=hs(qU97Vv|pn={1|OrQwHs& z*@aSM-0LsjUs$R5MCNutgqe)#y9q#{B>Q literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationPaperScoreMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..7d653e587d1238e86150d8086bbebf891632c0c9 GIT binary patch literal 679 zcmbtS%TB^T6g>k1f-l6!+9hn9jXRAAB$^N*lGGoVwl_GW?KIP=+Fx_w2l!FOOIb7` z(FMD?=bkg?%-s9=_5K0i3TG|U1crf$rSBKMG$~o-bTXIpredA&*(5SnDdY04f@X>V zFEEy-Wv_)Df$l=RC>beMKl%#_oIo$6h#ZZInbonf#RC-r=lw~=94C(EWUmKfzF`z3Dk5b(9}srmaiN2C;vq?>?l*SIc(`tx8{|TWt=QP?v=@9J8vorsC#F**yIQ D2};Ci literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.class b/target/classes/com/bbyb/operating/examination/mapper/ExaminationPlanMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..1bfe0d903793033671a659dc78d9e8cfde91674a GIT binary patch literal 649 zcmbVK%TB^T6g>k1f-l6!!Y_c0vvCJ8(L@s>C<$LMZExz3w$n_fVt>trAK*tBFJ;k) zBqr=;&OP^@GxyBb_s1uI8(g$d6Bzm?mY!F5(xhaS(@7}lUBx=#vq@yEQpV*&10+;zot{^UQCh81OMHf@&k>((sUQ^uZr_uJF+R!=*t3AEQLcTvQO z{lWUhxzmxH=*$h7FxMe(Hn$`&{X-b-EPczfdwCkD&9!&tCbvF4>WCGuw#In9%B3kF zQ0I>UG&t1;ntX4qZUXyQ1>Hucf(}aP5JwfXW*y^%p)NPpaLQf1jV>;pmBsTP-cqD1qKfsSNHp^in zVmxr0uIieq>7LK8_YVM9IBTFHFz`(zJumm9NysXv05#rl4Rx*?%SvDu%cVEbDxtjs+Q&f&t-20z#88`s6&$mwv!-J5q##ef0kGx1 ArT_o{ literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/MenuMapper.class b/target/classes/com/bbyb/operating/examination/mapper/MenuMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..b40f90aeeeb46dd48302da21bffd16d95878b26a GIT binary patch literal 594 zcmb7B+fKqj5IqY*1ur08z5!lbO?<-&X6lm%sBg=Bv{mFmH3_Hryl-Wwrx-}~fl5vp0{S5N(XOP`21X>&E`zT_Y{$TUB z-04V8bmoRknCk^EF1I8w`bD_i&F_u{dwCkF?X9-wCbt1S>WFPR)oCu*yKV{y)cL|d vgD=%UlWT8X3G8EiycXIObWlQvII5rx>lht|x;$9J2~YL5rnq@pHqX8R?3kg* literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/QuestionTypeMapper.class b/target/classes/com/bbyb/operating/examination/mapper/QuestionTypeMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..81f7cbd18c0211717933d42676ad20f313417792 GIT binary patch literal 634 zcmbVK%T5A85Uc?K!58A|7vSPtJZLZ`dN4sCV(FTPkn(6ua{`drNfs+O*0++str03 z^MuAF)WDWNd#+xU3>AwWy*c?#pc7C?j_&e_)seFKkaB_3?r6yz#ExcU`@I1V7?XQ3 z!9-aVvC5_b6&(oFb)1sraaY~Ze+dmc%EYW>EQeREdE-DS2lCx&py8i^HnS3FE-Y@t zknOs?#a%O}Lpjo^>oZ}hXZ)aG`6mE1-ee7Rt{X)qu#IB5O|+KKP6_Q|ZwW0}`#4~z&B6)}S=ITa;^tA=JpKX0 Cp|a@! literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/RoleMapper.class b/target/classes/com/bbyb/operating/examination/mapper/RoleMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..bfc21e0b9148dfa96e1274ee438d4731ced29d56 GIT binary patch literal 594 zcmb7B%TB{E5L~A;rRC8Q9^a5&Fi6~rkSG#TMJp=$1x~UGuADe>93a2Ofe+xL5S!!> zQIJq?-r3oi@$To>`v(AA!D$a11{a}Dco38U*BKgNWg2sQ6Nyaety7+ejBx&>6)x&$ z4|W)g*5XBQC5ZeOtTD6)fm${t~VI^Z)Tw##G^cUfJJHHze^olGJn_C^MbYVigmx^qL?P<=dUAqhzbm+nW vUAj~kT&jCj#b6hzdIHDeoLY?p+C=J+NOnbKRQJP{e;{7EaEV_M9s z(uF++{grqTTnQpP1}h9L11~~_7VpZ1k%=(n1C|Uf{8=+OO)bV~#=|KI%+WsUXd#S9 zh-GpHEg3OzWSXNPxhsG6Uph^WJkvkK=k=WjFZ>b9t;zTO48f>2Ga=m+p0fRPO x9iT&(>wrVGyRI1Q!}^$A=rzzm1s%ds1JzT5{VD6Z6~;7+ikX6w6EsD2k@bcLrH8v z6T@xioB4ir=JV_Q0{{ka-U5fgAkqmB!!qPLLnEwA=N#WeB2#+nlqVu1oIh!W&pDb& zRkmP{L3bgRf-6CU$8dp>W#GlA(BfS=H8K&Ve87^yg&)+DzTnSEl4da#w!vUph^WJkvk xb$}*at_d#HtyRTfA6Ca~L#KugD(Dc7YG^%m3?~G2iRi#7vAiu7HG5U_>>GJmsptRz literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/mapper/SysDicMapper.class b/target/classes/com/bbyb/operating/examination/mapper/SysDicMapper.class new file mode 100644 index 0000000000000000000000000000000000000000..45cea16d28b56839fef40cd4f0548edb0b81417b GIT binary patch literal 604 zcmb7B+fKqj5IqY5f;Yg+H^7UVsBah(4Vn-klJEuFc7jXVZnNF0{WTx_06)q&v?eH; z7~XcyoH^(0%=^dd8-NQOH&78c^Gzf@FZZNL$SSAfxuh2r>6qUpmXS&rm$N(_YJXA` z4QvUt7wSpLP%-_%TafPrx&ejc=q8_99VwgNQ!a4Q8?Tt7*wLKqpg&@P3AslTOqEp; zPuWzUq62}tj#IKMcitQSm(8%FOw3ohLbhtnGe=1|itm0#x&1TBrX~W-Qv5m$*{Ihq z|Cc!(%CSz}fC)1_=k;Zl1ctu|mzz3Xv1B((0=2%|*34wqr#l_8QRn-KPM15c3kX#C x)r&vvFoOQK%FlP vH26{tG`VgSmB22F$3X?HS%>H{)Z@V#j(DoSF~!Z}vU&0iC+?y8 literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/ExaminationApply.class b/target/classes/com/bbyb/operating/examination/model/po/ExaminationApply.class new file mode 100644 index 0000000000000000000000000000000000000000..095490ebc04e1ddfcecbb523d1dae849e7a99d60 GIT binary patch literal 2656 zcmbW1SyK~15XXB1NgynOKtL`LK}bMZ6cq&Iz9Lbm;?OD|bdzksQn_kbDEU@erDc^5 zegHp|<-cdcW*KH*eA%Avnd$y*AM@w$uir%UoU#duP(z#=b&66nKaTD;OIViz>(%+}*&%C2={ISU-(j!tdtKX!3$Ihg{R?&{PbOjXc% zrY@b5)U8olAmlnCYSa<%d*C|25^nG5)XP2+CNmtkrfae5ew_x`PgCBpU|PFk<9(fm z=mE}p#zVUVzrCJc7mAUsjC`2gr*uj)O584A znnlhwaeDKi&D;V4$WLq{0v7rHXWPwnz7M6wa+!0&;D-(7Bq^USZ)T9lc{td zU)OcO{<*i`ol!JQD$p}W6^4&%+PT;sJCE$y;g6HTCiK!_^zjUW$(Y{Q54?u z96UWxBT^h@Fb;fFYY;DRUE{!><^^Wxpq{{f=DJ}L*sLoDl?x|tZQ0y0$v~FGKTq+P z(J=Zhg0bhB$M|9u;V}~uvn3=3N=VF!kQfXhF$+SX!G%Om3yCI%OcJ_Rz?AxvBw zpQ%kSy;L%_%S@9>rdc&pyUb*OX*z_7`^0DJ5KMFQ3MRRBoifvml4+h6P>Wl&>y(*h z!88}b#69aXB?Z%>GEY4+(}I%ewK`8dGSf1cRzjF~etf20!L+2zQ=iPVu4GzP=c!L- z+6L232ouk;&om&IR%lgGyFr<0SIM+S>#Euf%1nD;+7Dskcg1HK5=W7oX<2On6{L88kLzoDw(#`c^Z|OK7r|T2ot}zKGT?B+EMoSxXhGS cGG){~J}xtzfax@ZiQj&oDJ_`Z;2WXce~Wf}K>z>% literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/ExaminationMajor.class b/target/classes/com/bbyb/operating/examination/model/po/ExaminationMajor.class new file mode 100644 index 0000000000000000000000000000000000000000..452f9c621537416ef4e7b3cc0f656b86d7ab63e7 GIT binary patch literal 2237 zcmbW1UsKaS5Wx2eZK0&{w?!;}1*HWfDkw-16i|n;fHNTPX?p`&Y9a-o!APpG?eP`B{WwtE$#5|~< z@kYQPvu?X~u)(0CTsiKBF6hoe&VU{;7_2rt$E??{>!x?keJil>9RFfDwu|4MYdT(& zx6E_Td>3!-S!bTlAZ0fh4A$a&yKcZwxL>6d_YCNTJ_g+mId5YW1_N!rhk=i&gzJC- zgR$$rW)x?_fJqTYZjv*Fe`vro6(wuCS5}Lz*D1++YqrbxFP%E~kF0u2+=Vh7TfR+t zxY-$;+7}GgYIiMal|lN12fLWLP_DF<>!!45zmWD~S!1po;{fdO;M8k=vV5#$zyXQBrwrjL`;K%X<5rOq%xUWrWbmqA(d$fnU)inXhtKZ zqF{OnE4ZchZdhen(K4;VD_!q~Ri-L3ttT+idx@Av1k;+fP9>FTQ_ED<*Qum3Z6ni8 z0u#O6h-pkPt!wKvt}=blGQHNPHniPn9xNEgC0F(fy9!x7+PEZQCEZffIW0 zbANLB-T?3Z!0!89w`UK1dpF%YaA2ya;B^&EH`9ELLFgX4!3L*z$D&EPpr|rr<2|SE zDw@jJw!#3ZwCR*Z)2Zn;5^{i=MY9Z8IXTsz(dhE-yB5vUdx~ZQnCw^hq;#Kgi>L47*x!zuP0=_s z>1ra;aUUs~NVL(KeP6`Q7x|_u_KjAlZ+2aUzAs#nnGa{ie-6#FN$7q>u2l;`ckaD+%u((W=y6HFm2{AaSta50s=U@|=eQ!|H&XFFlKteL(PYj?$D+83D`a_z2|Of4`S<}mR+lQ3P=Oi#rg zUo@G%5t*LJJ-%o%eG8`Va+vteOPH=}rlwfCC6noUk?FZyyCsvU1Ey{c6W_lH(@o8^ zC!W)?$#g6-?aSx1Y%=`-rd|#c{|gePx@I~M&uP_U@O~QDkb#J$}n%`WZ~WGA3jzT)XMj zRl`2@?6;lGJqgoSZtIKk1tpxipwUVvYuOFdk@B}V(JhOzoF)DFOtm;(xz5|SEy~d- zwxteope{g}>x!`-_yEx%#x2UT?O@GUGElECIl!bvQ*;Lb!p#GxsRT`h0Rkv?#jDB2 z8`$%ajx%l145OqR_gpp@x_=jU6O^quuKIA+tSbLNRvXyKY41bnJFK@i`-5YrC1|Je ze+AnTlsr;F8TrSHrLHSql?~^u@H}5M9G4E!;`b^z_Ue1mmrWHYA6Oa0{1nv~I$~VY zaUOOoEcV#7-0gCQZrx_%-3VB0_oM{nE#U6FyIf$5YnrX$z zG!|!CHZs{}rm;Aa4W`u|OgxhjQ(iNz(i20SCgMzMMy98A}QrHDa34OwX|wsC4w%MCsnkk6+pFY|&vq|o zM5OjRwGvgOzUT+&hpPIY-Fq<0-mAXZ@y^c9{BCw;{LjCC{Y^x7>H7lZ=v6+=uU)6(c8{Is%~zroS~Rxlb-nPRMdvC@N9Spr&gZFM(*)TTZMAy7(`=qKonBuA zZs_5jc;otB7r%R5$M3a8$LaT+y;NCuVftbqPT9huoY%JKVl9nZ?S|r51REUcf=!bg zC*S8w)i&!suxXkuT2%Zw^3m|Zj<9HY$j3n#07bf(wW-AB6EF`r9y-_;QAsI0l*6IDT{|47vLb-OyMMc zs;C-f-U%Gl1Ki@8W;r{I5E(MT1?4oZ87S1t%&vg7?U(96{?w3_by8J5kwThfC?Mn4GEVyBbF`)E`GrcE$C$YA0c zPMAuPX~)QPNoU$JGVPj~F6m6WVA{)I;(kh)%93f%SWj1UrYAp|GzLBY6&eMv{6oP4x!NmVd3Dc@%IyCm( in$Gmb$aG}xyEUEZ7cl*r!NmWO3Dde{`VMQ3Uj7H<)7}99 literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperResult.class b/target/classes/com/bbyb/operating/examination/model/po/ExaminationPaperResult.class new file mode 100644 index 0000000000000000000000000000000000000000..bc74d5ef95a9b31b7bf33006d7646b6b79a4b95f GIT binary patch literal 2320 zcmbuA+foxj5QcjLNk~`(0tsM10YMW^iwcTzkfUX)f}$MmH_233D#_wzgYZ^brDc^D zK7bEp`S)y2ER!p5rZY1=e}6OGz4`O^*KZ3QZzo~ zE=1ndD70Z!EO$$zu2lLgLOm1-Q&gv3(ly%3+hrq{yU7{$rEpBw!Z~qmmaPhY+ZCg1 z7evXpw2gz-;*km0Poi2YK|Ej;G#bjbqGl?tC<`U=R{mXJJu$9>^fkRs-rrM(S41A)x7NpjS`+)*>um1U8}e+ z@>ba_N!M|mCRny7?+DWsyEh#Ep-z)Dg;?I=iB*Qkm?z?5Vr1>SS=xs`Z%Lg;I?XU~ z*s5HaCBAa^9$rSH{;X9I?`!28n9W=XD=~Tc%ycZC*B86pbE~S+cJ}|CdmWc93O9rJ z@l?9)bsCS(kK*koQi|>L84Bc3xaW4^$aKuIaD@Y`K4^YyW(ad=w9g~hKb5J{D1yDl zZ$7uvmapMkO!bU;a_w&McC@+|ll4IE*h}eXL&=|1cmbg9HC7k$JF!?V#P;e*#|(#B zGv@YYUhb2PXo~E6`0d`~^{5JG4jhGercotP#BEKE?V6JpZ!Ip9q`IM&xRGcIRT@Bh z^N2RZuK+iawCEgZ(Js=W6{JO-ON-K$7WE1{NGJ&kVVuRxfYo4wb3aM@Cfy!mLg!jpk?`qRsU#tEsA z@Vx5b8H(?((Gt9Z$Rmt~Yp9s|{7jQdre!r#pPy+4OtT%BI2TQ(e#!Jy$u!_+N-3G1 zshI}+ObcLI?7+lz(PWBArsw#7xSP8nKhv_3X_a0e7k6?u&kaZ`kA(sOdINVO8S}h!F14piF>!n zG$ENb(K2^)_rTBePRaC!wpH)+z|WKg(_sfD{*E-6CMDC3vc{+VOh-zlU3HC5`jiJ1pj<6MFrt|FpxL&QvZU>jWg+sdG|`y& z;0N$S8UJT?yTx((m5(Hw1NDM1}+>a-|HDM5V)&WU5!oJQ5& zDILgiASm_3ZMearppNO8y$p3xCQVt3y2%pswCvUGQt7m0dxz3@0vG4xC#UW<@a;A1 zx>u1k`_Qx3T8pn7xbBucUkXaN6+r`AtxJoIKvt!{!1tW9sFyEEAM%M}h1bqo)X!_F zOXV&Zs6kw zl;@~Lm*}#fZ0PyMt%G(b^bIhvx4g1bTZIU3sUue`x~jyF4=YNXd9PVCp>)DUcIM^l z7EP&Na~mg4jf2p+f=~(S-Etdp`?y|`{u`%M!%DxpY0vRpo=1zF!M=MWXld)e;=h2P zRb^1b^||SpGl6JkfrA?E=cf(ZGkYkQmonJ*Dz6;hsmnn6pvpp1C7Fe@5Qrxk?7UTp z6O_S5^ScY{QAJ#Ag6R1})^H;78j5gqCnoBK*h-w=3r#&$(@}=u1g(}+?(E-1J}lJ} zON9k6(iAh40K8+((0epeH8?jp-$tbp0<~s*aX1U5So-XoLtJc@4u`lk+4YY7vRrq$ zc7}~@H_PpYTJ1vX6J;=>m+_V0c2gEDrY!nOSu~BZXbELe=gOkAl|?PX4iM^vQW&Q( zvtb2nvhbb67v(mCk+*p)V6;L9xqjc+Pe(DIsNg7iM`Oqu6o}oAng6_a8iHyJqx@%&t z8=0Qba}(2u&a@7ujW$f&!!gq(#k6dU)0ob*X=GY4$7xJw+6L238zz2FVy3H#Y1J5~ zah>V4k!j5wr*WNW4@~dcF!9?KGfgO_bz|R6>P+vAOdICDo79;;fazl!CVppQrYXhr J0%L-Te*jdYcL@Lh literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/ExaminationPlan.class b/target/classes/com/bbyb/operating/examination/model/po/ExaminationPlan.class new file mode 100644 index 0000000000000000000000000000000000000000..3437957361070961a8834c0e6979f33254501918 GIT binary patch literal 3090 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 literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/Role.class b/target/classes/com/bbyb/operating/examination/model/po/Role.class new file mode 100644 index 0000000000000000000000000000000000000000..597fcc7dcb9d6283c37c434815d76494085bda4b GIT binary patch literal 2195 zcmb7^ZBG+H5XWZ=ZJ}J{xrpUaP+CAv1w}1_0?`mF7(w1&+YKCPd*nEXd@D^fCcf|k z_@Rvd*=w(5-M;Y6&du&T{B~w;fB*UUi-^`}J4G?-N>aB)aY_gpICHKXyXw?W?1R#o zEC+%T8*beVHU)L%^2fc@L%m5#S=2|CpyjexvrDDxlI@*K-w9m!$fFP+cmEu ztM<8PfAp$SP|U3e8ZNeS?9~H#BK-n~y=7594G8M-VY>rIK|^h(hk=ji%5un};mC5| zsY!MpwJ4)D%f561xqZ!>w=Ei{JAzW-=8;=N)bTKC0L3nPWv99edp=UZCoGy&aW2m* zQJiUuW>lPTlZ`q2U5n8SEk3XfEGYp=L30ei5E$a)#slG1~lI2B%)-gX5!mf%E~yY$QQjmtgm<WpV0YQb5KRe~|d9%oGf`%@vYs;)!^)vIR zbRo;0py;+;x4j)fJ=xr8ocbvqql7^NWC&U-J2kUZx+$5?rF1RN#yz&(Ig4T=w`;2)(eP_}u;KXz`*KzmOV`BZvUmweAmUE{l^`Z36oyrHxwQACn zE=z+&4ub{cM3zOlK!$ySH2a%a;V zx+8)wj7NMam_@j=l|?%%iyl@M9jYwaPFZxCvS=;XVL~k_ig5v+2`gaxmVS`dEF#_7$poEAVbhv*{PYO(oM;9E~RUEHulNSR?V(s?$phi zQ;}8k(lI|dRe5qHT|p7MB50)8KBrLkN}HO0Vk%jxsJQH9uwjAUO|BH{#<4$`BhJ-p#ar_M#P@?5jNT$?Rzc7JgxX2zPMl^A(6%nZ=p&q*+cMsO|B=zUND^bf=%ddZAU`1Qy%Qk<)O?@{P^)O}09Gl{=f} z&>azcVLakX!7Rd^tt{GES@f{7=ul20e`66ZE3ChtD#@m~}QS1vABh=nJuHC#$E6C!_JFtAC=+g3cinWjC9|%zf zhfgYnF+Yp^;~9yOm$uQH5mdVsJCBsbfU|Q(H#I*>R1{KqqmT4%= zw5VlztY;buGcAK@r3(}HMZlC&OzX6PP`Gv@VJ1_{v`J4;i+^f25@y-}(`FYY?$LlL zt(czDmWF9O%(SItdPdK6OygmuJean-F!A>iFij|?7ut8qgqe1=OnLn~Wx`DRU^?i+ z#NTefG^LofweK_?W_qh-dZ~Y>=`hnfFcrHn@qZ*>npI3Y+8&<^GaYJ~cJ)0z7iKyF U({UFj{-*^@^NQ&e#t6Os3&(Lc;{X5v literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/SysDic.class b/target/classes/com/bbyb/operating/examination/model/po/SysDic.class new file mode 100644 index 0000000000000000000000000000000000000000..d8f03767b9c2e48fed8a157274b84e04a74c037d GIT binary patch literal 2409 zcmb7^>rWFw5Wr^(ZE3m6qfjg$QhC^d^h5L|_(vIM_O92m+56y^otwwb{BCx3|NQ;+8vtIwaU4R>7lnQe!VqCFd~Mtqdd+B5 z^>?LfUUnEnw#@eud=87>GfLIjb8VrKQAYZoXdZ~0<(yb=94adZN{EJaH8~ANC z^tx5yHN9!+=eMl`v&qVS(W#OjZJm9jTjo{Jno*z*qzkgnP3!V?ui=jE#L)F{y_rt&I~oe>1v+O?N!I; zY3SScPSD-g)e^qXJ;;HxZV_mE35A9Il%8y#&jsF?a$ixZd6T9im^+ z8G`QSv~qJED~8189hCHEk)`Dy5bc(xCkT)@3^O7_%8dfIJfTq^@H${r7`ugn!74mc zFePNBjFRa&zI+O%gv_*nOp5_bbS6I2kYHL6MykOlDd`ru6_OnpK}EC73ppOcOHGhLY*EnrT92+D4|G04BOOK2usS zZNe6s0%=8JF TJ_j(-JL@wo3Z_F`LvZvD6tPl- literal 0 HcmV?d00001 diff --git a/target/classes/com/bbyb/operating/examination/model/po/User.class b/target/classes/com/bbyb/operating/examination/model/po/User.class new file mode 100644 index 0000000000000000000000000000000000000000..9c0d7ea481fb2405938fcbded971815bdb3f76fd GIT binary patch literal 3597 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 E2N`2xB>(^b literal 0 HcmV?d00001 diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..53ef016 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +artifactId=bbyb-examination +groupId=com.bbyb.operating.examination +version=0.0.1-SNAPSHOT diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..29287b5 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,38 @@ +com\bbyb\operating\examination\model\po\ExaminationPaper.class +com\bbyb\operating\examination\mapper\RoleMenuMapper.class +com\bbyb\operating\examination\mapper\MenuMapper.class +com\bbyb\operating\examination\mapper\ExaminationPaperScoreMapper.class +com\bbyb\operating\examination\mapper\UserMapper.class +com\bbyb\operating\examination\controller\UserController.class +com\bbyb\operating\examination\mapper\ExaminationPaperQuestionMapper.class +com\bbyb\operating\examination\model\po\ExaminationPaperAnswer.class +com\bbyb\operating\examination\model\vo\CommonResult.class +com\bbyb\operating\examination\mapper\QuestionTypeMapper.class +com\bbyb\operating\examination\mapper\ExaminationPaperResultMapper.class +com\bbyb\operating\examination\model\po\Menu.class +com\bbyb\operating\examination\mapper\ExaminationApplyMapper.class +com\bbyb\operating\examination\mapper\RoleUserMapper.class +com\bbyb\operating\examination\mapper\ExaminationSubjectMapper.class +com\bbyb\operating\examination\model\po\ExaminationSubject.class +com\bbyb\operating\examination\mapper\ExaminationPlanMapper.class +com\bbyb\operating\examination\mapper\RoleMapper.class +com\bbyb\operating\examination\model\po\ExaminationApply.class +com\bbyb\operating\examination\model\po\ExaminationPaperQuestion.class +com\bbyb\operating\examination\service\impl\UserServiceImpl.class +com\bbyb\operating\examination\mapper\ExaminationPaperAnswerMapper.class +com\bbyb\operating\examination\BbybExaminationApplication.class +com\bbyb\operating\examination\model\po\ExaminationPaperScore.class +com\bbyb\operating\examination\model\po\QuestionType.class +com\bbyb\operating\examination\model\po\ExaminationPaperResult.class +com\bbyb\operating\examination\model\po\RoleMenu.class +com\bbyb\operating\examination\mapper\SysDicMapper.class +com\bbyb\operating\examination\model\po\ExaminationMajor.class +com\bbyb\operating\examination\model\po\SysDic.class +com\bbyb\operating\examination\service\UserService.class +com\bbyb\operating\examination\model\po\Role.class +com\bbyb\operating\examination\mapper\ExaminationMajorMapper.class +com\bbyb\operating\examination\config\JacksonConfig.class +com\bbyb\operating\examination\mapper\ExaminationPaperMapper.class +com\bbyb\operating\examination\model\po\RoleUser.class +com\bbyb\operating\examination\model\po\User.class +com\bbyb\operating\examination\model\po\ExaminationPlan.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..139fa30 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,38 @@ +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPaperAnswerMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\RoleUserMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPaperScore.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\service\impl\UserServiceImpl.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPlan.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\MenuMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\SysDicMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\UserMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationSubjectMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\SysDic.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPaperMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationMajor.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\RoleMenu.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPlanMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPaper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationMajorMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\QuestionTypeMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\config\JacksonConfig.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\Menu.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\Role.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPaperQuestionMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPaperAnswer.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPaperResultMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationApply.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPaperQuestion.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationApplyMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\QuestionType.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\BbybExaminationApplication.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\RoleMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\vo\CommonResult.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\controller\UserController.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\User.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\ExaminationPaperScoreMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationSubject.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\ExaminationPaperResult.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\mapper\RoleMenuMapper.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\service\UserService.java +D:\假期作业\摸底扫盲\system-server\src\main\java\com\bbyb\operating\examination\model\po\RoleUser.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..e69de29