Commit fb17aaf4 by xmh

添加images

1 parent 82dec15e
<?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="libs/postgresql-9.4-1201-jdbc41.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3" defaultModelType="flat" >
<property name="autoDelimitKeywords" value="true"/>
<property name="xmlMergeable" value="false"/>
<property name="basePackage" value="com.viontech.label.platform.base"/>
<commentGenerator>
<property name="suppressDate" value="true"/>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库链接URL,用户名、密码 -->
<jdbcConnection driverClass="org.postgresql.Driver"
connectionURL="jdbc:postgresql://127.0.0.1:5432/vion_label" userId="postgres"
password="vion"/>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成模型的包名和位置-->
<javaModelGenerator targetPackage="com.viontech.label.platform.model" targetProject="F:\mybatis-generator\vion_label">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
<property name="rootClass" value="com.viontech.label.platform.base.BaseModel"/>
</javaModelGenerator>
<!-- 生成映射文件的包名和位置-->
<sqlMapGenerator targetPackage="com.viontech.label.platform.mapping" targetProject="F:\mybatis-generator\vion_label">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.viontech.label.platform.mapper" targetProject="F:\mybatis-generator\vion_label" >
<property name="enableSubPackages" value="true"/>
<property name="rootInterface" value="com.viontech.label.platform.base.BaseMapper"/>
</javaClientGenerator>
<table delimitIdentifiers="true" tableName="d_storage" alias="storage" domainObjectName="Storage">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="d_pack" alias="pack" domainObjectName="Pack">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="d_pic" alias="pic" domainObjectName="Pic">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="d_task" alias="task" domainObjectName="Task" >
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="d_sub_task" alias="subTask" domainObjectName="SubTask">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="s_account" alias="account" domainObjectName="Account">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="s_user" alias="s_user" domainObjectName="User">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="s_dict" alias="dict" domainObjectName="Dict">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="r_pack_tag" alias="packTag" domainObjectName="PackTag">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
<table delimitIdentifiers="true" tableName="s_log" alias="log" domainObjectName="Log">
<generatedKey column="id" sqlStatement="JDBC"/>
</table>
</context>
</generatorConfiguration>
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!