-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneratorConfig.xml
54 lines (41 loc) · 2.62 KB
/
generatorConfig.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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="agendaCtx" targetRuntime="MyBatis3">
<jdbcConnection driverClass="org.postgresql.Driver"
connectionURL="jdbc:postgresql://localhost:5432/agenda"
userId="postgres" password="postgres" />
<javaModelGenerator targetPackage="py.com.icarusdb.agenda.model"
targetProject="agenda" />
<sqlMapGenerator targetPackage="py.com.icarusdb.agenda.model.sqlmap"
targetProject="agenda">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<javaClientGenerator targetPackage="py.com.icarusdb.agenda.model.client"
targetProject="agenda" type="XMLMAPPER" >
<property name="enableSubPackages" value="true" />
</javaClientGenerator>
<table tableName="auditoria" enableCountByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false"
selectByPrimaryKeyQueryId="false" selectByExampleQueryId="false"
enableSelectByExample="false" modelType="flat" />
<table tableName="cargo" enableCountByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false"
selectByPrimaryKeyQueryId="false" selectByExampleQueryId="false"
enableSelectByExample="false" modelType="flat"/>
<table tableName="dependencia" enableCountByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false"
selectByPrimaryKeyQueryId="false" selectByExampleQueryId="false"
enableSelectByExample="false" modelType="flat"/>
<table tableName="empleado" enableCountByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false"
selectByPrimaryKeyQueryId="false" selectByExampleQueryId="false"
enableSelectByExample="false" modelType="flat"/>
<!--table tableName="%" enableCountByExample="false"
enableDeleteByExample="false" enableUpdateByExample="false"
selectByPrimaryKeyQueryId="false" selectByExampleQueryId="false"
enableSelectByExample="false" modelType="flat">
<property name="useActualColumnNames" value="true" />
</table-->
</context>
</generatorConfiguration>