codegen-dev.xml 2.6 KB

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