摸底测试
commit
7280a8c5f3
|
@ -0,0 +1,8 @@
|
||||||
|
# 默认忽略的文件
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# 基于编辑器的 HTTP 客户端请求
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<annotationProcessing>
|
||||||
|
<profile name="Maven default annotation processors profile" enabled="true">
|
||||||
|
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||||
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||||
|
<outputRelativeToContentRoot value="true" />
|
||||||
|
<module name="bbyb-examination" />
|
||||||
|
</profile>
|
||||||
|
</annotationProcessing>
|
||||||
|
</component>
|
||||||
|
<component name="JavacSettings">
|
||||||
|
<option name="ADDITIONAL_OPTIONS_OVERRIDE">
|
||||||
|
<module name="bbyb-examination" options="-parameters" />
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding">
|
||||||
|
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Central Repository" />
|
||||||
|
<option name="url" value="http://maven.aliyun.com/nexus/content/groups/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="MavenProjectsManager">
|
||||||
|
<option name="originalFiles">
|
||||||
|
<list>
|
||||||
|
<option value="$PROJECT_DIR$/pom.xml" />
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
<component name="MavenRunner">
|
||||||
|
<option name="delegateBuildToMaven" value="true" />
|
||||||
|
<option name="jreName" value="1.8" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK" />
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,123 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<!-- 项目依赖的父工程-->
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>2.7.8</version>
|
||||||
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
|
</parent>
|
||||||
|
<!-- 项目的基本信息-->
|
||||||
|
<groupId>com.bbyb.operating.examination</groupId>
|
||||||
|
<artifactId>bbyb-examination</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>bbyb-examination</name>
|
||||||
|
<description>bbyb-examination</description>
|
||||||
|
<!-- 项目jdk版本-->
|
||||||
|
<properties>
|
||||||
|
<java.version>1.8</java.version>
|
||||||
|
</properties>
|
||||||
|
<!-- 依赖-->
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mybatis.spring.boot</groupId>
|
||||||
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||||
|
<version>2.3.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-devtools</artifactId>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mysql</groupId>
|
||||||
|
<artifactId>mysql-connector-j</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mybatis</groupId>
|
||||||
|
<artifactId>mybatis-typehandlers-jsr310</artifactId>
|
||||||
|
<version>1.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<!-- <build>-->
|
||||||
|
<!-- <pluginManagement>-->
|
||||||
|
<!-- <plugins>-->
|
||||||
|
<!-- <plugin>-->
|
||||||
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||||||
|
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
|
||||||
|
<!-- <configuration>-->
|
||||||
|
<!-- <excludes>-->
|
||||||
|
<!-- <exclude>-->
|
||||||
|
<!-- <groupId>org.projectlombok</groupId>-->
|
||||||
|
<!-- <artifactId>lombok</artifactId>-->
|
||||||
|
<!-- </exclude>-->
|
||||||
|
<!-- </excludes>-->
|
||||||
|
<!-- </configuration>-->
|
||||||
|
<!-- </plugin>-->
|
||||||
|
<!-- </plugins>-->
|
||||||
|
<!-- </pluginManagement>-->
|
||||||
|
<!-- <plugins>-->
|
||||||
|
|
||||||
|
<!-- <plugin>-->
|
||||||
|
<!-- <groupId>org.mybatis.generator</groupId>-->
|
||||||
|
<!-- <artifactId>mybatis-generator-maven-plugin</artifactId>-->
|
||||||
|
<!-- <version>1.4.1</version>-->
|
||||||
|
<!-- <dependencies>-->
|
||||||
|
<!-- <dependency>-->
|
||||||
|
<!-- <groupId>org.mybatis.generator</groupId>-->
|
||||||
|
<!-- <artifactId>mybatis-generator-core</artifactId>-->
|
||||||
|
<!-- <version>1.4.1</version>-->
|
||||||
|
<!-- </dependency>-->
|
||||||
|
<!-- <dependency>-->
|
||||||
|
<!-- <groupId>mysql</groupId>-->
|
||||||
|
<!-- <artifactId>mysql-connector-java</artifactId>-->
|
||||||
|
<!-- <version>5.1.49</version>-->
|
||||||
|
<!-- </dependency>-->
|
||||||
|
<!-- </dependencies>-->
|
||||||
|
<!-- <configuration>-->
|
||||||
|
<!-- <configurationFile>src/main/resources/generator/generatorConfig.xml</configurationFile>-->
|
||||||
|
<!-- <verbose>true</verbose>-->
|
||||||
|
<!-- <overwrite>true</overwrite>-->
|
||||||
|
<!-- </configuration>-->
|
||||||
|
<!-- <executions>-->
|
||||||
|
<!-- <execution>-->
|
||||||
|
<!-- <id>Generate MyBatis Artifacts</id>-->
|
||||||
|
<!-- <goals>-->
|
||||||
|
<!-- <goal>generate</goal>-->
|
||||||
|
<!-- </goals>-->
|
||||||
|
<!-- </execution>-->
|
||||||
|
<!-- </executions>-->
|
||||||
|
<!-- </plugin>-->
|
||||||
|
<!-- </plugins>-->
|
||||||
|
<!-- </build>-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</project>
|
|
@ -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("启动成功================================================================================================================================================");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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<Boolean> 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<User> getAllUser(){
|
||||||
|
return userService.getAllUser();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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<ExaminationApply> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationApply row);
|
||||||
|
}
|
|
@ -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<ExaminationMajor> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationMajor row);
|
||||||
|
}
|
|
@ -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<ExaminationPaperAnswer> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPaperAnswer row);
|
||||||
|
}
|
|
@ -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<ExaminationPaper> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPaper row);
|
||||||
|
}
|
|
@ -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<ExaminationPaperQuestion> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPaperQuestion row);
|
||||||
|
}
|
|
@ -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<ExaminationPaperResult> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPaperResult row);
|
||||||
|
}
|
|
@ -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<ExaminationPaperScore> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPaperScore row);
|
||||||
|
}
|
|
@ -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<ExaminationPlan> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationPlan row);
|
||||||
|
}
|
|
@ -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<ExaminationSubject> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(ExaminationSubject row);
|
||||||
|
}
|
|
@ -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<Menu> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(Menu row);
|
||||||
|
}
|
|
@ -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<QuestionType> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(QuestionType row);
|
||||||
|
}
|
|
@ -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<Role> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(Role row);
|
||||||
|
}
|
|
@ -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<RoleMenu> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(RoleMenu row);
|
||||||
|
}
|
|
@ -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<RoleUser> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(RoleUser row);
|
||||||
|
}
|
|
@ -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<SysDic> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(SysDic row);
|
||||||
|
}
|
|
@ -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<User> selectAll();
|
||||||
|
|
||||||
|
int updateByPrimaryKey(User row);
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
package com.bbyb.operating.examination.model.vo;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通用返回实体类
|
||||||
|
* className: CommonResult
|
||||||
|
* datetime: 2023/2/10 14:30
|
||||||
|
* author: lx
|
||||||
|
*/
|
||||||
|
public class CommonResult<T> {
|
||||||
|
|
||||||
|
/** 返回编码(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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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<User> getAllUser();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -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<User> getAllUser() {
|
||||||
|
return userMapper.selectAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -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
|
||||||
|
|
Binary file not shown.
|
@ -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
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
||||||
|
artifactId=bbyb-examination
|
||||||
|
groupId=com.bbyb.operating.examination
|
||||||
|
version=0.0.1-SNAPSHOT
|
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue