| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8" ?>
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="codegen-dev.xsd">
- <variables>
- <variable name="developer" value="eddy" comment="开发人员姓名,生成注释使用"/>
- <variable name="email" value="1546077710@qq.com" comment="开发人员邮箱,生成注释使用"/>
- <variable name="workspace" value="E:\security-workspace\ibps\code\lc2.0.9\" />
- </variables>
- <bizDirs>
- <dir modules="form" value="ibps-bpmn-root\modules\form-biz"/>
- <dir modules="bpmn" value="ibps-bpmn-root\modules\bpmn-biz"/>
- <dir modules="org" value="ibps-common-root\modules\org-biz"/>
- <dir modules="common" value="ibps-common-root\modules\common-biz"/>
- </bizDirs>
- <appDirs>
- <dir modules="platform" value="ibps-platform-root\modules\platform-admin"/>
- <dir modules="api" value="ibps-platform-root\modules\platform-webapi"/>
- </appDirs>
-
- <table tableName="ibps_bpm_task_reminder_rec" >
- <variable name="sys" value="bpmn" comment="系统名,对应bizDirs路径"/>
- <variable name="baseClass" value="Bpm" comment="单元测试的基类名"/>
- <variable name="app" value="platform" comment="生成前台模块,对应appDis路径" />
- <variable name="isBaseModule" value="true" comment="基础模块不用生成模块包名" />
- <variable name="module" value="bpmn" comment="生成后台业务模块包名" />
- <variable name="class" value="BpmTaskReminderRec" comment="类名,注意:首字母大写" />
- <variable name="doType" value="db,dao,domain" comment="生成模版模块类型" />
-
- <!-- <subtable tableName="ibps_sub_table_demo" foreignKey="parent_id_">
- <variable name="sys" value="bpmn" comment="系统名,对应bizDirs路径"/>
- <variable name="baseClass" value="Bpm" comment="单元测试的基类名"/>
- <variable name="app" value="platform" comment="生成前台模块,对应appDis路径" />
- <variable name="isBaseModule" value="true" comment="基础模块不用生成模块包名" />
- <variable name="module" value="bpmn" comment="生成后台业务模块包名" />
- <variable name="class" value="SubTableDemo" comment="类名,注意:首字母大写" />
- <variable name="doType" value="db,dao" comment="生成模版模块类型" />
- </subtable> -->
- </table>
-
- <!--
- 1、默认是default ,包含代码:db,dao,domain,controller,view
- 2、全部生成使用all,包含代码:db,dao,domain,service,controller,view,report,reportView,apiBase,api
- 3、其它指定项,用逗号分隔:db,dao,domain
- 4、其他配置(指定项前+no表示不生成),db,dao,domain,controller,view,noreport,noreportView,noapiBase,noapi
- -->
- </config>
|