新增文件管理模块

This commit is contained in:
thinkgem
2019-04-11 22:38:34 +08:00
parent 532ca319ec
commit e9763efaa7
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.test;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ActiveProfiles;
import com.jeesite.modules.Application;
/**
* 初始化文件管理表数据
* @author ThinkGem
* @version 2019-4-7
*/
@ActiveProfiles("test")
@SpringBootTest(classes=Application.class)
@Rollback(false)
public class InitFilemanagerData extends com.jeesite.modules.filemanager.db.InitFilemanagerData {
@Test
public void initCoreData() throws Exception{
createTable();
}
}