| | |
| | | private String basePackage = "cn.huge.module"; |
| | | private String packageName = "ctuser"; |
| | | private String className = "CtUnit"; |
| | | private String tableSchema = "gzdyh_dev"; |
| | | private String tableSchema = "gzdyh_huge"; |
| | | private String tableName = "dyh_ct_unit"; |
| | | private String author = "liyj"; |
| | | private String version = "1.0.0"; |
| | | |
| | | @Test |
| | | public void buildAllTest() { |
| | | service.buildAll(basePackage, "ctuser", "CtAccount", tableSchema, "dyh_ct_account", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtDept", tableSchema, "dyh_ct_dept", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtPost", tableSchema, "dyh_ct_post", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtUnit", tableSchema, "dyh_ct_unit", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtUsepost", tableSchema, "dyh_ct_usepost", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtUser", tableSchema, "dyh_ct_user", author, version); |
| | | service.buildAll(basePackage, "ctuser", "CtUserole", tableSchema, "dyh_ct_userole", author, version); |
| | | |
| | | service.buildAll(basePackage, "ctrole", "CRole", tableSchema, "dyh_ct_role", author, version); |
| | | service.buildAll(basePackage, "ctrole", "CtRoledata", tableSchema, "dyh_ct_roledata", author, version); |
| | | service.buildAll(basePackage, "ctrole", "CtRolefun", tableSchema, "dyh_ct_rolefun", author, version); |
| | | |
| | | service.buildAll(basePackage, "pauser", "PaAccount", tableSchema, "dyh_pa_account", author, version); |
| | | service.buildAll(basePackage, "pauser", "PaUser", tableSchema, "dyh_pa_user", author, version); |
| | | service.buildPo(basePackage, packageName, className, tableSchema, tableName, author, version); |
| | | service.buildDaoMapperXml(basePackage, packageName, className, tableSchema, tableName, author, version); |
| | | |
| | | } |
| | | |