mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 16:35:06 +08:00
开始制作 vue 页面的模板
This commit is contained in:
@ -10,6 +10,7 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@SpringBootTest(classes = TestApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
public class ToolCodegenEngineTest {
|
||||
@ -24,9 +25,10 @@ public class ToolCodegenEngineTest {
|
||||
|
||||
@Test
|
||||
public void testExecute() {
|
||||
ToolCodegenTableDO table = codegenTableMapper.selectById(14);
|
||||
ToolCodegenTableDO table = codegenTableMapper.selectById(10);
|
||||
List<ToolCodegenColumnDO> columns = codegenColumnMapper.selectListByTableId(table.getId());
|
||||
codegenEngine.execute(table, columns);
|
||||
Map<String, String> result = codegenEngine.execute(table, columns);
|
||||
System.out.println(result.get("vue/views/system/test/index.vue"));
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user