1 Star 0 Fork 142

chenguotian/在线刷题考试微信小程序 支持电脑PC端刷题 手机端刷题 saas模式 一套题库支持多家机构分别使用

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
generatorConfigOnlineexamSystem.xml 3.19 KB
一键复制 编辑 原始数据 按行查看 历史
大象 提交于 2020-08-17 10:14 . upload
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 数据库驱动-->
<classPathEntry location="D:\mybatis-generator\mysql-connector-java-5.1.30.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/onlineexam_system" userId="root" password="123456">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator targetPackage="com.mwt.oes.domain" targetProject="D:\onlineexam-system-backend\src\main\java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="mapper" targetProject="D:\onlineexam-system-backend\src\main\resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.mwt.oes.dao" targetProject="D:\onlineexam-system-backend\src\main\java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="admin" domainObjectName="Admin"></table>
<table tableName="bank_fill_que" domainObjectName="BankFillQue"></table>
<table tableName="bank_judge_que" domainObjectName="BankJudgeQue"></table>
<table tableName="bank_multiple_choice_que" domainObjectName="BankMultipleChoiceQue"></table>
<table tableName="bank_single_choice_que" domainObjectName="BankSingleChoiceQue"></table>
<table tableName="paper" domainObjectName="Paper"></table>
<table tableName="paper_que" domainObjectName="PaperQue"></table>
<table tableName="programing_language" domainObjectName="ProgramingLanguage"></table>
<table tableName="student" domainObjectName="Student"></table>
<table tableName="student_feedback" domainObjectName="StudentFeedback"></table>
<table tableName="student_home_rotation_img" domainObjectName="StudentHomeRotationImg"></table>
<table tableName="student_paper_answer" domainObjectName="StudentPaperAnswer"></table>
<table tableName="student_paper_score" domainObjectName="StudentPaperScore"></table>
<table tableName="teacher" domainObjectName="Teacher"></table>
<table tableName="teacher_notice" domainObjectName="TeacherNotice"></table>
</context>
</generatorConfiguration>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cgt006/exam.git
git@gitee.com:cgt006/exam.git
cgt006
exam
在线刷题考试微信小程序 支持电脑PC端刷题 手机端刷题 saas模式 一套题库支持多家机构分别使用
master

搜索帮助