| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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>
- <context id="my" targetRuntime="MyBatis3">
- <commentGenerator>
- <property name="suppressDate" value="false"/>
- <property name="suppressAllComments" value="true"/>
- </commentGenerator>
- <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
- connectionURL="jdbc:mysql://192.168.0.11/adm?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT"
- userId="adm"
- password="adm"/>
- <javaModelGenerator targetPackage="com.persagy.bdtp.adm.entity"
- targetProject="D:\projects\digital-delivery\adm-business\adm-server\src\main\java">
- <property name="enableSubPackages" value="true"/>
- <property name="trimStrings" value="true"/>
- </javaModelGenerator>
- <!--<sqlMapGenerator targetPackage=""
- targetProject="D:/IdeaProjects/adm/src/main/resources">
- <property name="enableSubPackages" value="true"/>
- </sqlMapGenerator>
- <javaClientGenerator targetPackage="com.persagy.bdtp.adm.dao"
- targetProject="D:/IdeaProjects/adm/src/main/java" type="XMLMAPPER">
- <property name="enableSubPackages" value="true"/>
- </javaClientGenerator>-->
- <table tableName="adm_define_problem_type" domainObjectName="AdmDefineProblemType"
- enableCountByExample="false" enableUpdateByExample="false"
- enableDeleteByExample="false" enableSelectByExample="false"
- selectByExampleQueryId="false"></table>
- <!-- <table tableName="adm_rels_config" domainObjectName="AdmRelsConfig"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- <!–<columnRenamingRule searchString="^D_"-->
- <!-- replaceString=""/>–>-->
- <!-- </table>-->
- <!-- <table tableName="adm_relation" domainObjectName="AdmRelation"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_problem_equip" domainObjectName="AdmProblemEquip"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_problem_arch" domainObjectName="AdmProblemArch"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_pipe_config" domainObjectName="AdmPipeConfig"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_m2d_equip" domainObjectName="AdmM2dEquip"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_job_space" domainObjectName="AdmJobSpace"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_infos_config" domainObjectName="AdmInfosConfig"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_file" domainObjectName="AdmFile"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- <!-- <table tableName="adm_config" domainObjectName="AdmConfig"-->
- <!-- enableCountByExample="false" enableUpdateByExample="false"-->
- <!-- enableDeleteByExample="false" enableSelectByExample="false"-->
- <!-- selectByExampleQueryId="false">-->
- <!-- </table>-->
- </context>
- </generatorConfiguration>
|