【修改】 文件移动,路径更改
This commit is contained in:
21
.gitignore
vendored
21
.gitignore
vendored
@@ -4,7 +4,7 @@
|
|||||||
.LSOverride
|
.LSOverride
|
||||||
Icon
|
Icon
|
||||||
._*
|
._*
|
||||||
|
|
||||||
# IDE - IntelliJ IDEA
|
# IDE - IntelliJ IDEA
|
||||||
.idea/
|
.idea/
|
||||||
*.iml
|
*.iml
|
||||||
@@ -12,14 +12,17 @@ Icon
|
|||||||
*.ipr
|
*.ipr
|
||||||
out/
|
out/
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
|
|
||||||
# IDE - VSCode
|
# IDE - VSCode
|
||||||
.vscode/
|
.vscode/
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
|
|
||||||
# Obsidian files
|
# Obsidian files
|
||||||
.obsidian/
|
.obsidian/
|
||||||
|
|
||||||
|
# Java build directory
|
||||||
|
/target/
|
||||||
|
|
||||||
# Compiled files
|
# Compiled files
|
||||||
*.class
|
*.class
|
||||||
*.jar
|
*.jar
|
||||||
@@ -28,18 +31,18 @@ out/
|
|||||||
*.zip
|
*.zip
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.rar
|
*.rar
|
||||||
|
|
||||||
# Logs and databases
|
# Logs and databases
|
||||||
*.log
|
*.log
|
||||||
*.sqlite
|
*.sqlite
|
||||||
*.db
|
*.db
|
||||||
|
|
||||||
# Node
|
# Node
|
||||||
node_modules/
|
node_modules/
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
@@ -61,8 +64,8 @@ wheels/
|
|||||||
*.egg-info/
|
*.egg-info/
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
|
|
||||||
# Temporary files
|
# Temporary files
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
@@ -3,19 +3,16 @@ package pc.exam.pp.module.exam.controller.admin.specialty;
|
|||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.Parameter;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import pc.exam.pp.framework.common.pojo.CommonResult;
|
import pc.exam.pp.framework.common.pojo.CommonResult;
|
||||||
import pc.exam.pp.framework.common.pojo.PageResult;
|
|
||||||
import pc.exam.pp.framework.common.util.object.BeanUtils;
|
import pc.exam.pp.framework.common.util.object.BeanUtils;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamKnowledgePoints;
|
import pc.exam.pp.module.exam.dal.dataobject.knowledge.ExamKnowledgePoints;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamSpecialty;
|
import pc.exam.pp.module.exam.dal.dataobject.specialty.ExamSpecialty;
|
||||||
import pc.exam.pp.module.exam.service.knowledge.ExamKnowledgePointsService;
|
import pc.exam.pp.module.exam.service.knowledge.ExamKnowledgePointsService;
|
||||||
import pc.exam.pp.module.exam.service.specialty.ExamSpecialtyService;
|
import pc.exam.pp.module.exam.service.specialty.ExamSpecialtyService;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
|
@@ -1,12 +1,10 @@
|
|||||||
package pc.exam.pp.module.exam.dal.dataobject;
|
package pc.exam.pp.module.exam.dal.dataobject.knowledge;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
||||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
||||||
import pc.exam.pp.framework.tenant.core.db.TenantBaseDO;
|
import pc.exam.pp.framework.tenant.core.db.TenantBaseDO;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
package pc.exam.pp.module.exam.dal.dataobject;
|
package pc.exam.pp.module.exam.dal.dataobject.specialty;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
package pc.exam.pp.module.exam.dal.mysql;
|
package pc.exam.pp.module.exam.dal.mysql.knowledge;
|
||||||
|
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
import pc.exam.pp.framework.mybatis.core.mapper.BaseMapperX;
|
import pc.exam.pp.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamKnowledgePoints;
|
import pc.exam.pp.module.exam.dal.dataobject.knowledge.ExamKnowledgePoints;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
package pc.exam.pp.module.exam.dal.mysql;
|
package pc.exam.pp.module.exam.dal.mysql.specialty;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.apache.ibatis.annotations.Param;
|
|
||||||
import pc.exam.pp.framework.mybatis.core.mapper.BaseMapperX;
|
import pc.exam.pp.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamSpecialty;
|
import pc.exam.pp.module.exam.dal.dataobject.specialty.ExamSpecialty;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
package pc.exam.pp.module.exam.service.knowledge;
|
package pc.exam.pp.module.exam.service.knowledge;
|
||||||
|
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamKnowledgePoints;
|
import pc.exam.pp.module.exam.dal.dataobject.knowledge.ExamKnowledgePoints;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@@ -2,10 +2,10 @@ package pc.exam.pp.module.exam.service.knowledge;
|
|||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamKnowledgePoints;
|
import pc.exam.pp.module.exam.dal.dataobject.knowledge.ExamKnowledgePoints;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamSpecialty;
|
import pc.exam.pp.module.exam.dal.dataobject.specialty.ExamSpecialty;
|
||||||
import pc.exam.pp.module.exam.dal.mysql.ExamKnowledgePointsMapper;
|
import pc.exam.pp.module.exam.dal.mysql.knowledge.ExamKnowledgePointsMapper;
|
||||||
import pc.exam.pp.module.exam.dal.mysql.ExamSpecialtyMapper;
|
import pc.exam.pp.module.exam.dal.mysql.specialty.ExamSpecialtyMapper;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
@@ -2,7 +2,7 @@ package pc.exam.pp.module.exam.service.specialty;
|
|||||||
|
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamSpecialty;
|
import pc.exam.pp.module.exam.dal.dataobject.specialty.ExamSpecialty;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@@ -6,10 +6,10 @@ import org.springframework.stereotype.Service;
|
|||||||
import pc.exam.pp.framework.common.util.object.BeanUtils;
|
import pc.exam.pp.framework.common.util.object.BeanUtils;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtListReqVo;
|
||||||
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
import pc.exam.pp.module.exam.controller.admin.specialty.vo.SpecialtyQueryVo;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamKnowledgePoints;
|
import pc.exam.pp.module.exam.dal.dataobject.knowledge.ExamKnowledgePoints;
|
||||||
import pc.exam.pp.module.exam.dal.dataobject.ExamSpecialty;
|
import pc.exam.pp.module.exam.dal.dataobject.specialty.ExamSpecialty;
|
||||||
import pc.exam.pp.module.exam.dal.mysql.ExamKnowledgePointsMapper;
|
import pc.exam.pp.module.exam.dal.mysql.knowledge.ExamKnowledgePointsMapper;
|
||||||
import pc.exam.pp.module.exam.dal.mysql.ExamSpecialtyMapper;
|
import pc.exam.pp.module.exam.dal.mysql.specialty.ExamSpecialtyMapper;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="pc.exam.pp.module.exam.dal.mysql.ExamKnowledgePointsMapper">
|
<mapper namespace="pc.exam.pp.module.exam.dal.mysql.knowledge.ExamKnowledgePointsMapper">
|
||||||
|
|
||||||
<resultMap type="ExamKnowledgePoints" id="KnowledgePointsResult">
|
<resultMap type="ExamKnowledgePoints" id="KnowledgePointsResult">
|
||||||
<result property="spId" column="sp_id" />
|
<result property="spId" column="sp_id" />
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE mapper
|
<!DOCTYPE mapper
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="pc.exam.pp.module.exam.dal.mysql.ExamSpecialtyMapper">
|
<mapper namespace="pc.exam.pp.module.exam.dal.mysql.specialty.ExamSpecialtyMapper">
|
||||||
|
|
||||||
<resultMap type="ExamSpecialty" id="ExamSpecialtyResult">
|
<resultMap type="ExamSpecialty" id="ExamSpecialtyResult">
|
||||||
<result property="spId" column="sp_id" />
|
<result property="spId" column="sp_id" />
|
||||||
|
Reference in New Issue
Block a user