mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 16:23:42 +08:00 
			
		
		
		
	update 初步适配oracle(未完成)
This commit is contained in:
		@@ -29,6 +29,26 @@
 | 
			
		||||
            <artifactId>ruoyi-common</artifactId>
 | 
			
		||||
        </dependency>
 | 
			
		||||
 | 
			
		||||
        <!-- MySql -->
 | 
			
		||||
        <dependency>
 | 
			
		||||
            <groupId>mysql</groupId>
 | 
			
		||||
            <artifactId>mysql-connector-java</artifactId>
 | 
			
		||||
        </dependency>
 | 
			
		||||
        <dependency>
 | 
			
		||||
            <groupId>com.oracle.database.jdbc</groupId>
 | 
			
		||||
            <artifactId>ojdbc8</artifactId>
 | 
			
		||||
        </dependency>
 | 
			
		||||
        <!-- PostgreSql -->
 | 
			
		||||
        <dependency>
 | 
			
		||||
            <groupId>org.postgresql</groupId>
 | 
			
		||||
            <artifactId>postgresql</artifactId>
 | 
			
		||||
        </dependency>
 | 
			
		||||
        <!-- SqlServer -->
 | 
			
		||||
        <dependency>
 | 
			
		||||
            <groupId>com.microsoft.sqlserver</groupId>
 | 
			
		||||
            <artifactId>mssql-jdbc</artifactId>
 | 
			
		||||
        </dependency>
 | 
			
		||||
 | 
			
		||||
    </dependencies>
 | 
			
		||||
 | 
			
		||||
</project>
 | 
			
		||||
 
 | 
			
		||||
@@ -5,13 +5,12 @@ import cn.hutool.core.convert.Convert;
 | 
			
		||||
import cn.hutool.core.io.IoUtil;
 | 
			
		||||
import com.ruoyi.common.annotation.Log;
 | 
			
		||||
import com.ruoyi.common.core.controller.BaseController;
 | 
			
		||||
import com.ruoyi.common.core.domain.R;
 | 
			
		||||
import com.ruoyi.common.core.domain.PageQuery;
 | 
			
		||||
import com.ruoyi.common.core.domain.R;
 | 
			
		||||
import com.ruoyi.common.core.page.TableDataInfo;
 | 
			
		||||
import com.ruoyi.common.enums.BusinessType;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTable;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
import com.ruoyi.generator.service.IGenTableColumnService;
 | 
			
		||||
import com.ruoyi.generator.service.IGenTableService;
 | 
			
		||||
import io.swagger.annotations.Api;
 | 
			
		||||
import io.swagger.annotations.ApiOperation;
 | 
			
		||||
@@ -38,7 +37,6 @@ import java.util.Map;
 | 
			
		||||
public class GenController extends BaseController {
 | 
			
		||||
 | 
			
		||||
    private final IGenTableService genTableService;
 | 
			
		||||
    private final IGenTableColumnService genTableColumnService;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询代码生成列表
 | 
			
		||||
@@ -59,7 +57,7 @@ public class GenController extends BaseController {
 | 
			
		||||
    public R<Map<String, Object>> getInfo(@PathVariable Long talbleId) {
 | 
			
		||||
        GenTable table = genTableService.selectGenTableById(talbleId);
 | 
			
		||||
        List<GenTable> tables = genTableService.selectGenTableAll();
 | 
			
		||||
        List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(talbleId);
 | 
			
		||||
        List<GenTableColumn> list = genTableService.selectGenTableColumnListByTableId(talbleId);
 | 
			
		||||
        Map<String, Object> map = new HashMap<String, Object>();
 | 
			
		||||
        map.put("info", table);
 | 
			
		||||
        map.put("rows", list);
 | 
			
		||||
@@ -85,7 +83,7 @@ public class GenController extends BaseController {
 | 
			
		||||
    @GetMapping(value = "/column/{talbleId}")
 | 
			
		||||
    public TableDataInfo<GenTableColumn> columnList(Long tableId) {
 | 
			
		||||
        TableDataInfo<GenTableColumn> dataInfo = new TableDataInfo<>();
 | 
			
		||||
        List<GenTableColumn> list = genTableColumnService.selectGenTableColumnListByTableId(tableId);
 | 
			
		||||
        List<GenTableColumn> list = genTableService.selectGenTableColumnListByTableId(tableId);
 | 
			
		||||
        dataInfo.setRows(list);
 | 
			
		||||
        dataInfo.setTotal(list.size());
 | 
			
		||||
        return dataInfo;
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,24 @@
 | 
			
		||||
package com.ruoyi.generator.mapper;
 | 
			
		||||
 | 
			
		||||
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
 | 
			
		||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务字段 数据层
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
@InterceptorIgnore(dataPermission = "true")
 | 
			
		||||
public interface OracleGenTableColumnMapper extends BaseMapperPlus<OracleGenTableColumnMapper, GenTableColumn, GenTableColumn> {
 | 
			
		||||
    /**
 | 
			
		||||
     * 根据表名称查询列信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     * @return 列信息
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTableColumn> selectDbTableColumnsByName(String tableName);
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,62 @@
 | 
			
		||||
package com.ruoyi.generator.mapper;
 | 
			
		||||
 | 
			
		||||
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.Wrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.toolkit.Constants;
 | 
			
		||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 | 
			
		||||
import com.ruoyi.common.core.mapper.BaseMapperPlus;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTable;
 | 
			
		||||
import org.apache.ibatis.annotations.Param;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务 数据层
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
@InterceptorIgnore(dataPermission = "true")
 | 
			
		||||
public interface OracleGenTableMapper extends BaseMapperPlus<OracleGenTableMapper, GenTable, GenTable> {
 | 
			
		||||
 | 
			
		||||
    Page<GenTable> selectPageDbTableList(@Param("page") Page<GenTable> page, @Param(Constants.WRAPPER) Wrapper<Object> queryWrapper);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param queryWrapper 查询条件
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTable> selectDbTableList(@Param(Constants.WRAPPER) Wrapper<Object> queryWrapper);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableNames 表名称组
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTable> selectDbTableListByNames(String[] tableNames);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询所有表信息
 | 
			
		||||
     *
 | 
			
		||||
     * @return 表信息集合
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTable> selectGenTableAll();
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询表ID业务信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param id 业务ID
 | 
			
		||||
     * @return 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    GenTable selectGenTableById(Long id);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询表名称业务信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     * @return 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    GenTable selectGenTableByName(String tableName);
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,335 @@
 | 
			
		||||
package com.ruoyi.generator.service;
 | 
			
		||||
 | 
			
		||||
import cn.hutool.core.io.IoUtil;
 | 
			
		||||
import cn.hutool.core.lang.Dict;
 | 
			
		||||
import cn.hutool.core.util.ObjectUtil;
 | 
			
		||||
import com.baomidou.dynamic.datasource.DynamicRoutingDataSource;
 | 
			
		||||
import com.baomidou.dynamic.datasource.annotation.DS;
 | 
			
		||||
import com.ruoyi.common.constant.GenConstants;
 | 
			
		||||
import com.ruoyi.common.core.domain.PageQuery;
 | 
			
		||||
import com.ruoyi.common.core.page.TableDataInfo;
 | 
			
		||||
import com.ruoyi.common.exception.ServiceException;
 | 
			
		||||
import com.ruoyi.common.utils.JsonUtils;
 | 
			
		||||
import com.ruoyi.common.utils.StringUtils;
 | 
			
		||||
import com.ruoyi.common.utils.spring.SpringUtils;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTable;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
import com.ruoyi.generator.util.VelocityUtils;
 | 
			
		||||
import org.springframework.beans.factory.annotation.Autowired;
 | 
			
		||||
import org.springframework.context.annotation.Primary;
 | 
			
		||||
import org.springframework.stereotype.Service;
 | 
			
		||||
 | 
			
		||||
import javax.sql.DataSource;
 | 
			
		||||
import java.io.ByteArrayOutputStream;
 | 
			
		||||
import java.io.File;
 | 
			
		||||
import java.sql.DatabaseMetaData;
 | 
			
		||||
import java.sql.SQLException;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
import java.util.Map;
 | 
			
		||||
import java.util.zip.ZipOutputStream;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务 服务层实现
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
@DS("#header.datasource")
 | 
			
		||||
@Primary
 | 
			
		||||
@Service
 | 
			
		||||
public class BaseGenTableServiceImpl implements IGenTableService {
 | 
			
		||||
 | 
			
		||||
    @Autowired
 | 
			
		||||
    private DataSource dataSource;
 | 
			
		||||
 | 
			
		||||
    public BaseGenTableServiceImpl getService() {
 | 
			
		||||
        DynamicRoutingDataSource ds = (DynamicRoutingDataSource) this.dataSource;
 | 
			
		||||
        DataSource dataSource = ds.determineDataSource();
 | 
			
		||||
        try {
 | 
			
		||||
            DatabaseMetaData metaData = dataSource.getConnection().getMetaData();
 | 
			
		||||
            String databaseProductName = metaData.getDatabaseProductName();
 | 
			
		||||
            if ("MySQL".equals(databaseProductName)) {
 | 
			
		||||
                return SpringUtils.getBean(GenTableServiceImpl.class);
 | 
			
		||||
            } else if ("Oracle".equals(databaseProductName)) {
 | 
			
		||||
                return SpringUtils.getBean(OracleGenTableServiceImpl.class);
 | 
			
		||||
            } else if ("PostgreSQL".equals(databaseProductName)) {
 | 
			
		||||
 | 
			
		||||
            } else if ("Microsoft SQL Server".equals(databaseProductName)) {
 | 
			
		||||
 | 
			
		||||
            } else {
 | 
			
		||||
                throw new ServiceException("当前数据库类型不支持 => " + databaseProductName);
 | 
			
		||||
            }
 | 
			
		||||
        } catch (SQLException e) {
 | 
			
		||||
            throw new ServiceException(e.getMessage());
 | 
			
		||||
        }
 | 
			
		||||
        return null;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId) {
 | 
			
		||||
        return getService().selectGenTableColumnListByTableId(tableId);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param id 业务ID
 | 
			
		||||
     * @return 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public GenTable selectGenTableById(Long id) {
 | 
			
		||||
        return getService().selectGenTableById(id);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public TableDataInfo<GenTable> selectPageGenTableList(GenTable genTable, PageQuery pageQuery) {
 | 
			
		||||
        return getService().selectPageGenTableList(genTable, pageQuery);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 业务集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectGenTableList(GenTable genTable) {
 | 
			
		||||
        return getService().selectGenTableList(genTable);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public TableDataInfo<GenTable> selectPageDbTableList(GenTable genTable, PageQuery pageQuery){
 | 
			
		||||
        return getService().selectPageDbTableList(genTable, pageQuery);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectDbTableList(GenTable genTable) {
 | 
			
		||||
        return getService().selectDbTableList(genTable);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableNames 表名称组
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectDbTableListByNames(String[] tableNames) {
 | 
			
		||||
        return getService().selectDbTableListByNames(tableNames);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询所有表信息
 | 
			
		||||
     *
 | 
			
		||||
     * @return 表信息集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectGenTableAll() {
 | 
			
		||||
        return getService().selectGenTableAll();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改业务
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void updateGenTable(GenTable genTable) {
 | 
			
		||||
        getService().updateGenTable(genTable);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 删除业务对象
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableIds 需要删除的数据ID
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void deleteGenTableByIds(Long[] tableIds) {
 | 
			
		||||
        getService().deleteGenTableByIds(tableIds);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 导入表结构
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableList 导入表列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void importGenTable(List<GenTable> tableList) {
 | 
			
		||||
        getService().importGenTable(tableList);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 预览代码
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 表编号
 | 
			
		||||
     * @return 预览数据列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public Map<String, String> previewCode(Long tableId) {
 | 
			
		||||
        return getService().previewCode(tableId);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 生成代码(下载方式)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     * @return 数据
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public byte[] downloadCode(String tableName) {
 | 
			
		||||
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
 | 
			
		||||
        ZipOutputStream zip = new ZipOutputStream(outputStream);
 | 
			
		||||
        generatorCode(tableName, zip);
 | 
			
		||||
        IoUtil.close(zip);
 | 
			
		||||
        return outputStream.toByteArray();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 生成代码(自定义路径)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void generatorCode(String tableName) {
 | 
			
		||||
        getService().generatorCode(tableName);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 同步数据库
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void synchDb(String tableName) {
 | 
			
		||||
        getService().synchDb(tableName);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 批量生成代码(下载方式)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableNames 表数组
 | 
			
		||||
     * @return 数据
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public byte[] downloadCode(String[] tableNames) {
 | 
			
		||||
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
 | 
			
		||||
        ZipOutputStream zip = new ZipOutputStream(outputStream);
 | 
			
		||||
        for (String tableName : tableNames) {
 | 
			
		||||
            generatorCode(tableName, zip);
 | 
			
		||||
        }
 | 
			
		||||
        IoUtil.close(zip);
 | 
			
		||||
        return outputStream.toByteArray();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询表信息并生成代码
 | 
			
		||||
     */
 | 
			
		||||
    public void generatorCode(String tableName, ZipOutputStream zip) {
 | 
			
		||||
        getService().generatorCode(tableName, zip);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改保存参数校验
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void validateEdit(GenTable genTable) {
 | 
			
		||||
        if (GenConstants.TPL_TREE.equals(genTable.getTplCategory())) {
 | 
			
		||||
            String options = JsonUtils.toJsonString(genTable.getParams());
 | 
			
		||||
            Dict paramsObj = JsonUtils.parseMap(options);
 | 
			
		||||
            if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_CODE))) {
 | 
			
		||||
                throw new ServiceException("树编码字段不能为空");
 | 
			
		||||
            } else if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_PARENT_CODE))) {
 | 
			
		||||
                throw new ServiceException("树父编码字段不能为空");
 | 
			
		||||
            } else if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_NAME))) {
 | 
			
		||||
                throw new ServiceException("树名称字段不能为空");
 | 
			
		||||
            } else if (GenConstants.TPL_SUB.equals(genTable.getTplCategory())) {
 | 
			
		||||
                if (StringUtils.isEmpty(genTable.getSubTableName())) {
 | 
			
		||||
                    throw new ServiceException("关联子表的表名不能为空");
 | 
			
		||||
                } else if (StringUtils.isEmpty(genTable.getSubTableFkName())) {
 | 
			
		||||
                    throw new ServiceException("子表关联的外键名不能为空");
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置主键列信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param table 业务表信息
 | 
			
		||||
     */
 | 
			
		||||
    public void setPkColumn(GenTable table) {
 | 
			
		||||
        for (GenTableColumn column : table.getColumns()) {
 | 
			
		||||
            if (column.isPk()) {
 | 
			
		||||
                table.setPkColumn(column);
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        if (ObjectUtil.isNull(table.getPkColumn())) {
 | 
			
		||||
            table.setPkColumn(table.getColumns().get(0));
 | 
			
		||||
        }
 | 
			
		||||
        if (GenConstants.TPL_SUB.equals(table.getTplCategory())) {
 | 
			
		||||
            for (GenTableColumn column : table.getSubTable().getColumns()) {
 | 
			
		||||
                if (column.isPk()) {
 | 
			
		||||
                    table.getSubTable().setPkColumn(column);
 | 
			
		||||
                    break;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            if (ObjectUtil.isNull(table.getSubTable().getPkColumn())) {
 | 
			
		||||
                table.getSubTable().setPkColumn(table.getSubTable().getColumns().get(0));
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置代码生成其他选项值
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 设置后的生成对象
 | 
			
		||||
     */
 | 
			
		||||
    public void setTableFromOptions(GenTable genTable) {
 | 
			
		||||
        Dict paramsObj = JsonUtils.parseMap(genTable.getOptions());
 | 
			
		||||
        if (ObjectUtil.isNotNull(paramsObj)) {
 | 
			
		||||
            String treeCode = paramsObj.getStr(GenConstants.TREE_CODE);
 | 
			
		||||
            String treeParentCode = paramsObj.getStr(GenConstants.TREE_PARENT_CODE);
 | 
			
		||||
            String treeName = paramsObj.getStr(GenConstants.TREE_NAME);
 | 
			
		||||
            String parentMenuId = paramsObj.getStr(GenConstants.PARENT_MENU_ID);
 | 
			
		||||
            String parentMenuName = paramsObj.getStr(GenConstants.PARENT_MENU_NAME);
 | 
			
		||||
 | 
			
		||||
            genTable.setTreeCode(treeCode);
 | 
			
		||||
            genTable.setTreeParentCode(treeParentCode);
 | 
			
		||||
            genTable.setTreeName(treeName);
 | 
			
		||||
            genTable.setParentMenuId(parentMenuId);
 | 
			
		||||
            genTable.setParentMenuName(parentMenuName);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 获取代码生成地址
 | 
			
		||||
     *
 | 
			
		||||
     * @param table    业务表信息
 | 
			
		||||
     * @param template 模板文件路径
 | 
			
		||||
     * @return 生成地址
 | 
			
		||||
     */
 | 
			
		||||
    public static String getGenPath(GenTable table, String template) {
 | 
			
		||||
        String genPath = table.getGenPath();
 | 
			
		||||
        if (StringUtils.equals(genPath, "/")) {
 | 
			
		||||
            return System.getProperty("user.dir") + File.separator + "src" + File.separator + VelocityUtils.getFileName(template, table);
 | 
			
		||||
        }
 | 
			
		||||
        return genPath + File.separator + VelocityUtils.getFileName(template, table);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,68 +0,0 @@
 | 
			
		||||
package com.ruoyi.generator.service;
 | 
			
		||||
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
import com.ruoyi.generator.mapper.GenTableColumnMapper;
 | 
			
		||||
import lombok.RequiredArgsConstructor;
 | 
			
		||||
import org.springframework.stereotype.Service;
 | 
			
		||||
 | 
			
		||||
import java.util.Arrays;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务字段 服务层实现
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
@RequiredArgsConstructor
 | 
			
		||||
@Service
 | 
			
		||||
public class GenTableColumnServiceImpl implements IGenTableColumnService {
 | 
			
		||||
 | 
			
		||||
    private final GenTableColumnMapper baseMapper;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId) {
 | 
			
		||||
        return baseMapper.selectList(new LambdaQueryWrapper<GenTableColumn>()
 | 
			
		||||
            .eq(GenTableColumn::getTableId, tableId)
 | 
			
		||||
            .orderByAsc(GenTableColumn::getSort));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 新增业务字段
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTableColumn 业务字段信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public int insertGenTableColumn(GenTableColumn genTableColumn) {
 | 
			
		||||
        return baseMapper.insert(genTableColumn);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改业务字段
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTableColumn 业务字段信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public int updateGenTableColumn(GenTableColumn genTableColumn) {
 | 
			
		||||
        return baseMapper.updateById(genTableColumn);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 删除业务字段对象
 | 
			
		||||
     *
 | 
			
		||||
     * @param ids 需要删除的数据ID
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public int deleteGenTableColumnByIds(String ids) {
 | 
			
		||||
        return baseMapper.deleteBatchIds(Arrays.asList(ids.split(",")));
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -2,15 +2,12 @@ package com.ruoyi.generator.service;
 | 
			
		||||
 | 
			
		||||
import cn.hutool.core.collection.CollUtil;
 | 
			
		||||
import cn.hutool.core.io.IoUtil;
 | 
			
		||||
import cn.hutool.core.lang.Dict;
 | 
			
		||||
import cn.hutool.core.util.ObjectUtil;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.Wrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
 | 
			
		||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 | 
			
		||||
import com.ruoyi.common.constant.Constants;
 | 
			
		||||
import com.ruoyi.common.constant.GenConstants;
 | 
			
		||||
import com.ruoyi.common.core.domain.PageQuery;
 | 
			
		||||
import com.ruoyi.common.core.page.TableDataInfo;
 | 
			
		||||
import com.ruoyi.common.exception.ServiceException;
 | 
			
		||||
@@ -31,10 +28,7 @@ import org.apache.velocity.Template;
 | 
			
		||||
import org.apache.velocity.VelocityContext;
 | 
			
		||||
import org.apache.velocity.app.Velocity;
 | 
			
		||||
import org.springframework.stereotype.Service;
 | 
			
		||||
import org.springframework.transaction.annotation.Transactional;
 | 
			
		||||
 | 
			
		||||
import java.io.ByteArrayOutputStream;
 | 
			
		||||
import java.io.File;
 | 
			
		||||
import java.io.IOException;
 | 
			
		||||
import java.io.StringWriter;
 | 
			
		||||
import java.nio.charset.StandardCharsets;
 | 
			
		||||
@@ -52,11 +46,24 @@ import java.util.zip.ZipOutputStream;
 | 
			
		||||
@Slf4j
 | 
			
		||||
@RequiredArgsConstructor
 | 
			
		||||
@Service
 | 
			
		||||
public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
public class GenTableServiceImpl extends BaseGenTableServiceImpl {
 | 
			
		||||
 | 
			
		||||
    private final GenTableMapper baseMapper;
 | 
			
		||||
    private final GenTableColumnMapper genTableColumnMapper;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId) {
 | 
			
		||||
        return genTableColumnMapper.selectList(new LambdaQueryWrapper<GenTableColumn>()
 | 
			
		||||
            .eq(GenTableColumn::getTableId, tableId)
 | 
			
		||||
            .orderByAsc(GenTableColumn::getSort));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务信息
 | 
			
		||||
     *
 | 
			
		||||
@@ -119,8 +126,8 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
        Map<String, Object> params = genTable.getParams();
 | 
			
		||||
        QueryWrapper<Object> wrapper = Wrappers.query();
 | 
			
		||||
        wrapper.apply("table_schema = (select database())")
 | 
			
		||||
            .notLike("table_name", "xxl_job_%")
 | 
			
		||||
            .notLike("table_name", "gen_%")
 | 
			
		||||
            .notLike("table_name", "xxl_job_")
 | 
			
		||||
            .notLike("table_name", "gen_")
 | 
			
		||||
            .notInSql("table_name", "select table_name from gen_table")
 | 
			
		||||
            .like(StringUtils.isNotBlank(genTable.getTableName()), "lower(table_name)", StringUtils.lowerCase(genTable.getTableName()))
 | 
			
		||||
            .like(StringUtils.isNotBlank(genTable.getTableComment()), "lower(table_comment)", StringUtils.lowerCase(genTable.getTableComment()))
 | 
			
		||||
@@ -158,7 +165,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    @Transactional(rollbackFor = Exception.class)
 | 
			
		||||
    public void updateGenTable(GenTable genTable) {
 | 
			
		||||
        String options = JsonUtils.toJsonString(genTable.getParams());
 | 
			
		||||
        genTable.setOptions(options);
 | 
			
		||||
@@ -177,7 +183,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    @Transactional(rollbackFor = Exception.class)
 | 
			
		||||
    public void deleteGenTableByIds(Long[] tableIds) {
 | 
			
		||||
        List<Long> ids = Arrays.asList(tableIds);
 | 
			
		||||
        baseMapper.deleteBatchIds(ids);
 | 
			
		||||
@@ -190,7 +195,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
     * @param tableList 导入表列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    @Transactional(rollbackFor = Exception.class)
 | 
			
		||||
    public void importGenTable(List<GenTable> tableList) {
 | 
			
		||||
        String operName = LoginHelper.getUsername();
 | 
			
		||||
        try {
 | 
			
		||||
@@ -247,21 +251,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
        return dataMap;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 生成代码(下载方式)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     * @return 数据
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public byte[] downloadCode(String tableName) {
 | 
			
		||||
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
 | 
			
		||||
        ZipOutputStream zip = new ZipOutputStream(outputStream);
 | 
			
		||||
        generatorCode(tableName, zip);
 | 
			
		||||
        IoUtil.close(zip);
 | 
			
		||||
        return outputStream.toByteArray();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 生成代码(自定义路径)
 | 
			
		||||
     *
 | 
			
		||||
@@ -304,7 +293,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    @Transactional(rollbackFor = Exception.class)
 | 
			
		||||
    public void synchDb(String tableName) {
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableByName(tableName);
 | 
			
		||||
        List<GenTableColumn> tableColumns = table.getColumns();
 | 
			
		||||
@@ -329,8 +317,7 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
                }
 | 
			
		||||
                if (StringUtils.isNotEmpty(prevColumn.getIsRequired()) && !column.isPk()
 | 
			
		||||
                    && (column.isInsert() || column.isEdit())
 | 
			
		||||
                        && ((column.isUsableColumn()) || (!column.isSuperColumn())))
 | 
			
		||||
                {
 | 
			
		||||
                    && ((column.isUsableColumn()) || (!column.isSuperColumn()))) {
 | 
			
		||||
                    // 如果是(新增/修改&非主键/非忽略及父属性),继续保留必填/显示类型选项
 | 
			
		||||
                    column.setIsRequired(prevColumn.getIsRequired());
 | 
			
		||||
                    column.setHtmlType(prevColumn.getHtmlType());
 | 
			
		||||
@@ -351,27 +338,11 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 批量生成代码(下载方式)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableNames 表数组
 | 
			
		||||
     * @return 数据
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public byte[] downloadCode(String[] tableNames) {
 | 
			
		||||
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
 | 
			
		||||
        ZipOutputStream zip = new ZipOutputStream(outputStream);
 | 
			
		||||
        for (String tableName : tableNames) {
 | 
			
		||||
            generatorCode(tableName, zip);
 | 
			
		||||
        }
 | 
			
		||||
        IoUtil.close(zip);
 | 
			
		||||
        return outputStream.toByteArray();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询表信息并生成代码
 | 
			
		||||
     */
 | 
			
		||||
    private void generatorCode(String tableName, ZipOutputStream zip) {
 | 
			
		||||
    @Override
 | 
			
		||||
    public void generatorCode(String tableName, ZipOutputStream zip) {
 | 
			
		||||
        // 查询表信息
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableByName(tableName);
 | 
			
		||||
        // 设置主子表信息
 | 
			
		||||
@@ -403,60 +374,6 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改保存参数校验
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void validateEdit(GenTable genTable) {
 | 
			
		||||
        if (GenConstants.TPL_TREE.equals(genTable.getTplCategory())) {
 | 
			
		||||
            String options = JsonUtils.toJsonString(genTable.getParams());
 | 
			
		||||
            Dict paramsObj = JsonUtils.parseMap(options);
 | 
			
		||||
            if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_CODE))) {
 | 
			
		||||
                throw new ServiceException("树编码字段不能为空");
 | 
			
		||||
            } else if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_PARENT_CODE))) {
 | 
			
		||||
                throw new ServiceException("树父编码字段不能为空");
 | 
			
		||||
            } else if (StringUtils.isEmpty(paramsObj.getStr(GenConstants.TREE_NAME))) {
 | 
			
		||||
                throw new ServiceException("树名称字段不能为空");
 | 
			
		||||
            } else if (GenConstants.TPL_SUB.equals(genTable.getTplCategory())) {
 | 
			
		||||
                if (StringUtils.isEmpty(genTable.getSubTableName())) {
 | 
			
		||||
                    throw new ServiceException("关联子表的表名不能为空");
 | 
			
		||||
                } else if (StringUtils.isEmpty(genTable.getSubTableFkName())) {
 | 
			
		||||
                    throw new ServiceException("子表关联的外键名不能为空");
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置主键列信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param table 业务表信息
 | 
			
		||||
     */
 | 
			
		||||
    public void setPkColumn(GenTable table) {
 | 
			
		||||
        for (GenTableColumn column : table.getColumns()) {
 | 
			
		||||
            if (column.isPk()) {
 | 
			
		||||
                table.setPkColumn(column);
 | 
			
		||||
                break;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        if (ObjectUtil.isNull(table.getPkColumn())) {
 | 
			
		||||
            table.setPkColumn(table.getColumns().get(0));
 | 
			
		||||
        }
 | 
			
		||||
        if (GenConstants.TPL_SUB.equals(table.getTplCategory())) {
 | 
			
		||||
            for (GenTableColumn column : table.getSubTable().getColumns()) {
 | 
			
		||||
                if (column.isPk()) {
 | 
			
		||||
                    table.getSubTable().setPkColumn(column);
 | 
			
		||||
                    break;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            if (ObjectUtil.isNull(table.getSubTable().getPkColumn())) {
 | 
			
		||||
                table.getSubTable().setPkColumn(table.getSubTable().getColumns().get(0));
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置主子表信息
 | 
			
		||||
     *
 | 
			
		||||
@@ -469,40 +386,4 @@ public class GenTableServiceImpl implements IGenTableService {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置代码生成其他选项值
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 设置后的生成对象
 | 
			
		||||
     */
 | 
			
		||||
    public void setTableFromOptions(GenTable genTable) {
 | 
			
		||||
        Dict paramsObj = JsonUtils.parseMap(genTable.getOptions());
 | 
			
		||||
        if (ObjectUtil.isNotNull(paramsObj)) {
 | 
			
		||||
            String treeCode = paramsObj.getStr(GenConstants.TREE_CODE);
 | 
			
		||||
            String treeParentCode = paramsObj.getStr(GenConstants.TREE_PARENT_CODE);
 | 
			
		||||
            String treeName = paramsObj.getStr(GenConstants.TREE_NAME);
 | 
			
		||||
            String parentMenuId = paramsObj.getStr(GenConstants.PARENT_MENU_ID);
 | 
			
		||||
            String parentMenuName = paramsObj.getStr(GenConstants.PARENT_MENU_NAME);
 | 
			
		||||
 | 
			
		||||
            genTable.setTreeCode(treeCode);
 | 
			
		||||
            genTable.setTreeParentCode(treeParentCode);
 | 
			
		||||
            genTable.setTreeName(treeName);
 | 
			
		||||
            genTable.setParentMenuId(parentMenuId);
 | 
			
		||||
            genTable.setParentMenuName(parentMenuName);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 获取代码生成地址
 | 
			
		||||
     *
 | 
			
		||||
     * @param table    业务表信息
 | 
			
		||||
     * @param template 模板文件路径
 | 
			
		||||
     * @return 生成地址
 | 
			
		||||
     */
 | 
			
		||||
    public static String getGenPath(GenTable table, String template) {
 | 
			
		||||
        String genPath = table.getGenPath();
 | 
			
		||||
        if (StringUtils.equals(genPath, "/")) {
 | 
			
		||||
            return System.getProperty("user.dir") + File.separator + "src" + File.separator + VelocityUtils.getFileName(template, table);
 | 
			
		||||
        }
 | 
			
		||||
        return genPath + File.separator + VelocityUtils.getFileName(template, table);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,44 +0,0 @@
 | 
			
		||||
package com.ruoyi.generator.service;
 | 
			
		||||
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务字段 服务层
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
public interface IGenTableColumnService {
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 新增业务字段
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTableColumn 业务字段信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    int insertGenTableColumn(GenTableColumn genTableColumn);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改业务字段
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTableColumn 业务字段信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    int updateGenTableColumn(GenTableColumn genTableColumn);
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 删除业务字段信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param ids 需要删除的数据ID
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    int deleteGenTableColumnByIds(String ids);
 | 
			
		||||
}
 | 
			
		||||
@@ -3,6 +3,7 @@ package com.ruoyi.generator.service;
 | 
			
		||||
import com.ruoyi.common.core.domain.PageQuery;
 | 
			
		||||
import com.ruoyi.common.core.page.TableDataInfo;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTable;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
import java.util.Map;
 | 
			
		||||
@@ -14,6 +15,14 @@ import java.util.Map;
 | 
			
		||||
 */
 | 
			
		||||
public interface IGenTableService {
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    TableDataInfo<GenTable> selectPageGenTableList(GenTable genTable, PageQuery pageQuery);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,391 @@
 | 
			
		||||
package com.ruoyi.generator.service;
 | 
			
		||||
 | 
			
		||||
import cn.hutool.core.collection.CollUtil;
 | 
			
		||||
import cn.hutool.core.io.IoUtil;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.Wrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 | 
			
		||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
 | 
			
		||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 | 
			
		||||
import com.ruoyi.common.constant.Constants;
 | 
			
		||||
import com.ruoyi.common.core.domain.PageQuery;
 | 
			
		||||
import com.ruoyi.common.core.page.TableDataInfo;
 | 
			
		||||
import com.ruoyi.common.exception.ServiceException;
 | 
			
		||||
import com.ruoyi.common.helper.LoginHelper;
 | 
			
		||||
import com.ruoyi.common.utils.JsonUtils;
 | 
			
		||||
import com.ruoyi.common.utils.StringUtils;
 | 
			
		||||
import com.ruoyi.common.utils.file.FileUtils;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTable;
 | 
			
		||||
import com.ruoyi.generator.domain.GenTableColumn;
 | 
			
		||||
import com.ruoyi.generator.mapper.OracleGenTableColumnMapper;
 | 
			
		||||
import com.ruoyi.generator.mapper.OracleGenTableMapper;
 | 
			
		||||
import com.ruoyi.generator.util.GenUtils;
 | 
			
		||||
import com.ruoyi.generator.util.VelocityInitializer;
 | 
			
		||||
import com.ruoyi.generator.util.VelocityUtils;
 | 
			
		||||
import lombok.RequiredArgsConstructor;
 | 
			
		||||
import lombok.extern.slf4j.Slf4j;
 | 
			
		||||
import org.apache.velocity.Template;
 | 
			
		||||
import org.apache.velocity.VelocityContext;
 | 
			
		||||
import org.apache.velocity.app.Velocity;
 | 
			
		||||
import org.springframework.stereotype.Service;
 | 
			
		||||
 | 
			
		||||
import java.io.IOException;
 | 
			
		||||
import java.io.StringWriter;
 | 
			
		||||
import java.nio.charset.StandardCharsets;
 | 
			
		||||
import java.util.*;
 | 
			
		||||
import java.util.function.Function;
 | 
			
		||||
import java.util.stream.Collectors;
 | 
			
		||||
import java.util.zip.ZipEntry;
 | 
			
		||||
import java.util.zip.ZipOutputStream;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * 业务 服务层实现
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li
 | 
			
		||||
 */
 | 
			
		||||
@Slf4j
 | 
			
		||||
@RequiredArgsConstructor
 | 
			
		||||
@Service
 | 
			
		||||
public class OracleGenTableServiceImpl extends BaseGenTableServiceImpl {
 | 
			
		||||
 | 
			
		||||
    private final OracleGenTableMapper baseMapper;
 | 
			
		||||
    private final OracleGenTableColumnMapper genTableColumnMapper;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务字段列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 业务字段编号
 | 
			
		||||
     * @return 业务字段集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId) {
 | 
			
		||||
        return genTableColumnMapper.selectList(new LambdaQueryWrapper<GenTableColumn>()
 | 
			
		||||
            .eq(GenTableColumn::getTableId, tableId)
 | 
			
		||||
            .orderByAsc(GenTableColumn::getSort));
 | 
			
		||||
    }
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param id 业务ID
 | 
			
		||||
     * @return 业务信息
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public GenTable selectGenTableById(Long id) {
 | 
			
		||||
        GenTable genTable = baseMapper.selectGenTableById(id);
 | 
			
		||||
        setTableFromOptions(genTable);
 | 
			
		||||
        return genTable;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public TableDataInfo<GenTable> selectPageGenTableList(GenTable genTable, PageQuery pageQuery) {
 | 
			
		||||
        Page<GenTable> page = baseMapper.selectPage(pageQuery.build(), this.buildGenTableQueryWrapper(genTable));
 | 
			
		||||
        return TableDataInfo.build(page);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询业务列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 业务集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectGenTableList(GenTable genTable) {
 | 
			
		||||
        return baseMapper.selectList(this.buildGenTableQueryWrapper(genTable));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private QueryWrapper<GenTable> buildGenTableQueryWrapper(GenTable genTable) {
 | 
			
		||||
        Map<String, Object> params = genTable.getParams();
 | 
			
		||||
        QueryWrapper<GenTable> wrapper = Wrappers.query();
 | 
			
		||||
        wrapper.like(StringUtils.isNotBlank(genTable.getTableName()), "lower(table_name)", StringUtils.lowerCase(genTable.getTableName()))
 | 
			
		||||
            .like(StringUtils.isNotBlank(genTable.getTableComment()), "lower(table_comment)", StringUtils.lowerCase(genTable.getTableComment()))
 | 
			
		||||
            .between(params.get("beginTime") != null && params.get("endTime") != null,
 | 
			
		||||
                "create_time", params.get("beginTime"), params.get("endTime"));
 | 
			
		||||
        return wrapper;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public TableDataInfo<GenTable> selectPageDbTableList(GenTable genTable, PageQuery pageQuery) {
 | 
			
		||||
        Page<GenTable> page = baseMapper.selectPageDbTableList(pageQuery.build(), this.buildDbTableQueryWrapper(genTable));
 | 
			
		||||
        return TableDataInfo.build(page);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectDbTableList(GenTable genTable) {
 | 
			
		||||
        return baseMapper.selectDbTableList(this.buildDbTableQueryWrapper(genTable));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private Wrapper<Object> buildDbTableQueryWrapper(GenTable genTable) {
 | 
			
		||||
        Map<String, Object> params = genTable.getParams();
 | 
			
		||||
        QueryWrapper<Object> wrapper = Wrappers.query();
 | 
			
		||||
        wrapper.apply("dt.table_name = dtc.table_name")
 | 
			
		||||
            .apply("dt.table_name = uo.object_name")
 | 
			
		||||
            .eq("uo.object_type ", "TABLE")
 | 
			
		||||
            .notLike("dt.table_name", "XXL_JOB_")
 | 
			
		||||
            .notLike("dt.table_name", "GEN_")
 | 
			
		||||
            .notInSql("lower(dt.table_name)", "select table_name from gen_table")
 | 
			
		||||
            .like(StringUtils.isNotBlank(genTable.getTableName()), "lower(dt.table_name)", StringUtils.lowerCase(genTable.getTableName()))
 | 
			
		||||
            .like(StringUtils.isNotBlank(genTable.getTableComment()), "lower(dt.table_comment)", StringUtils.lowerCase(genTable.getTableComment()))
 | 
			
		||||
            .between(params.get("beginTime") != null && params.get("endTime") != null,
 | 
			
		||||
                "create_time", params.get("beginTime"), params.get("endTime"))
 | 
			
		||||
            .orderByDesc("create_time");
 | 
			
		||||
        return wrapper;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询据库列表
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableNames 表名称组
 | 
			
		||||
     * @return 数据库表集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectDbTableListByNames(String[] tableNames) {
 | 
			
		||||
        return baseMapper.selectDbTableListByNames(tableNames);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询所有表信息
 | 
			
		||||
     *
 | 
			
		||||
     * @return 表信息集合
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<GenTable> selectGenTableAll() {
 | 
			
		||||
        return baseMapper.selectGenTableAll();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 修改业务
 | 
			
		||||
     *
 | 
			
		||||
     * @param genTable 业务信息
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void updateGenTable(GenTable genTable) {
 | 
			
		||||
        String options = JsonUtils.toJsonString(genTable.getParams());
 | 
			
		||||
        genTable.setOptions(options);
 | 
			
		||||
        int row = baseMapper.updateById(genTable);
 | 
			
		||||
        if (row > 0) {
 | 
			
		||||
            for (GenTableColumn cenTableColumn : genTable.getColumns()) {
 | 
			
		||||
                genTableColumnMapper.updateById(cenTableColumn);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 删除业务对象
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableIds 需要删除的数据ID
 | 
			
		||||
     * @return 结果
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void deleteGenTableByIds(Long[] tableIds) {
 | 
			
		||||
        List<Long> ids = Arrays.asList(tableIds);
 | 
			
		||||
        baseMapper.deleteBatchIds(ids);
 | 
			
		||||
        genTableColumnMapper.delete(new LambdaQueryWrapper<GenTableColumn>().in(GenTableColumn::getTableId, ids));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 导入表结构
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableList 导入表列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void importGenTable(List<GenTable> tableList) {
 | 
			
		||||
        String operName = LoginHelper.getUsername();
 | 
			
		||||
        try {
 | 
			
		||||
            for (GenTable table : tableList) {
 | 
			
		||||
                String tableName = table.getTableName();
 | 
			
		||||
                GenUtils.initTable(table, operName);
 | 
			
		||||
                int row = baseMapper.insert(table);
 | 
			
		||||
                if (row > 0) {
 | 
			
		||||
                    // 保存列信息
 | 
			
		||||
                    List<GenTableColumn> genTableColumns = genTableColumnMapper.selectDbTableColumnsByName(tableName);
 | 
			
		||||
                    List<GenTableColumn> saveColumns = new ArrayList<>();
 | 
			
		||||
                    for (GenTableColumn column : genTableColumns) {
 | 
			
		||||
                        GenUtils.initColumnField(column, table);
 | 
			
		||||
                        saveColumns.add(column);
 | 
			
		||||
                    }
 | 
			
		||||
                    if (CollUtil.isNotEmpty(saveColumns)) {
 | 
			
		||||
                        genTableColumnMapper.insertBatch(saveColumns);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        } catch (Exception e) {
 | 
			
		||||
            throw new ServiceException("导入失败:" + e.getMessage());
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 预览代码
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableId 表编号
 | 
			
		||||
     * @return 预览数据列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public Map<String, String> previewCode(Long tableId) {
 | 
			
		||||
        Map<String, String> dataMap = new LinkedHashMap<>();
 | 
			
		||||
        // 查询表信息
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableById(tableId);
 | 
			
		||||
        // 设置主子表信息
 | 
			
		||||
        setSubTable(table);
 | 
			
		||||
        // 设置主键列信息
 | 
			
		||||
        setPkColumn(table);
 | 
			
		||||
        VelocityInitializer.initVelocity();
 | 
			
		||||
 | 
			
		||||
        VelocityContext context = VelocityUtils.prepareContext(table);
 | 
			
		||||
 | 
			
		||||
        // 获取模板列表
 | 
			
		||||
        List<String> templates = VelocityUtils.getTemplateList(table.getTplCategory());
 | 
			
		||||
        for (String template : templates) {
 | 
			
		||||
            // 渲染模板
 | 
			
		||||
            StringWriter sw = new StringWriter();
 | 
			
		||||
            Template tpl = Velocity.getTemplate(template, Constants.UTF8);
 | 
			
		||||
            tpl.merge(context, sw);
 | 
			
		||||
            dataMap.put(template, sw.toString());
 | 
			
		||||
        }
 | 
			
		||||
        return dataMap;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 生成代码(自定义路径)
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void generatorCode(String tableName) {
 | 
			
		||||
        // 查询表信息
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableByName(tableName);
 | 
			
		||||
        // 设置主子表信息
 | 
			
		||||
        setSubTable(table);
 | 
			
		||||
        // 设置主键列信息
 | 
			
		||||
        setPkColumn(table);
 | 
			
		||||
 | 
			
		||||
        VelocityInitializer.initVelocity();
 | 
			
		||||
 | 
			
		||||
        VelocityContext context = VelocityUtils.prepareContext(table);
 | 
			
		||||
 | 
			
		||||
        // 获取模板列表
 | 
			
		||||
        List<String> templates = VelocityUtils.getTemplateList(table.getTplCategory());
 | 
			
		||||
        for (String template : templates) {
 | 
			
		||||
            if (!StringUtils.containsAny(template, "sql.vm", "api.js.vm", "index.vue.vm", "index-tree.vue.vm")) {
 | 
			
		||||
                // 渲染模板
 | 
			
		||||
                StringWriter sw = new StringWriter();
 | 
			
		||||
                Template tpl = Velocity.getTemplate(template, Constants.UTF8);
 | 
			
		||||
                tpl.merge(context, sw);
 | 
			
		||||
                try {
 | 
			
		||||
                    String path = getGenPath(table, template);
 | 
			
		||||
                    FileUtils.writeUtf8String(sw.toString(), path);
 | 
			
		||||
                } catch (Exception e) {
 | 
			
		||||
                    throw new ServiceException("渲染模板失败,表名:" + table.getTableName());
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 同步数据库
 | 
			
		||||
     *
 | 
			
		||||
     * @param tableName 表名称
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void synchDb(String tableName) {
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableByName(tableName);
 | 
			
		||||
        List<GenTableColumn> tableColumns = table.getColumns();
 | 
			
		||||
        Map<String, GenTableColumn> tableColumnMap = tableColumns.stream().collect(Collectors.toMap(GenTableColumn::getColumnName, Function.identity()));
 | 
			
		||||
 | 
			
		||||
        List<GenTableColumn> dbTableColumns = genTableColumnMapper.selectDbTableColumnsByName(tableName);
 | 
			
		||||
        if (CollUtil.isEmpty(dbTableColumns)) {
 | 
			
		||||
            throw new ServiceException("同步数据失败,原表结构不存在");
 | 
			
		||||
        }
 | 
			
		||||
        List<String> dbTableColumnNames = dbTableColumns.stream().map(GenTableColumn::getColumnName).collect(Collectors.toList());
 | 
			
		||||
 | 
			
		||||
        List<GenTableColumn> saveColumns = new ArrayList<>();
 | 
			
		||||
        dbTableColumns.forEach(column -> {
 | 
			
		||||
            GenUtils.initColumnField(column, table);
 | 
			
		||||
            if (tableColumnMap.containsKey(column.getColumnName())) {
 | 
			
		||||
                GenTableColumn prevColumn = tableColumnMap.get(column.getColumnName());
 | 
			
		||||
                column.setColumnId(prevColumn.getColumnId());
 | 
			
		||||
                if (column.isList()) {
 | 
			
		||||
                    // 如果是列表,继续保留查询方式/字典类型选项
 | 
			
		||||
                    column.setDictType(prevColumn.getDictType());
 | 
			
		||||
                    column.setQueryType(prevColumn.getQueryType());
 | 
			
		||||
                }
 | 
			
		||||
                if (StringUtils.isNotEmpty(prevColumn.getIsRequired()) && !column.isPk()
 | 
			
		||||
                    && (column.isInsert() || column.isEdit())
 | 
			
		||||
                    && ((column.isUsableColumn()) || (!column.isSuperColumn())))
 | 
			
		||||
                {
 | 
			
		||||
                    // 如果是(新增/修改&非主键/非忽略及父属性),继续保留必填/显示类型选项
 | 
			
		||||
                    column.setIsRequired(prevColumn.getIsRequired());
 | 
			
		||||
                    column.setHtmlType(prevColumn.getHtmlType());
 | 
			
		||||
                }
 | 
			
		||||
                genTableColumnMapper.updateById(column);
 | 
			
		||||
            } else {
 | 
			
		||||
                genTableColumnMapper.insert(column);
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
        if (CollUtil.isNotEmpty(saveColumns)) {
 | 
			
		||||
            genTableColumnMapper.insertBatch(saveColumns);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        List<GenTableColumn> delColumns = tableColumns.stream().filter(column -> !dbTableColumnNames.contains(column.getColumnName())).collect(Collectors.toList());
 | 
			
		||||
        if (CollUtil.isNotEmpty(delColumns)) {
 | 
			
		||||
            List<Long> ids = delColumns.stream().map(GenTableColumn::getColumnId).collect(Collectors.toList());
 | 
			
		||||
            genTableColumnMapper.deleteBatchIds(ids);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 查询表信息并生成代码
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public void generatorCode(String tableName, ZipOutputStream zip) {
 | 
			
		||||
        // 查询表信息
 | 
			
		||||
        GenTable table = baseMapper.selectGenTableByName(tableName);
 | 
			
		||||
        // 设置主子表信息
 | 
			
		||||
        setSubTable(table);
 | 
			
		||||
        // 设置主键列信息
 | 
			
		||||
        setPkColumn(table);
 | 
			
		||||
 | 
			
		||||
        VelocityInitializer.initVelocity();
 | 
			
		||||
 | 
			
		||||
        VelocityContext context = VelocityUtils.prepareContext(table);
 | 
			
		||||
 | 
			
		||||
        // 获取模板列表
 | 
			
		||||
        List<String> templates = VelocityUtils.getTemplateList(table.getTplCategory());
 | 
			
		||||
        for (String template : templates) {
 | 
			
		||||
            // 渲染模板
 | 
			
		||||
            StringWriter sw = new StringWriter();
 | 
			
		||||
            Template tpl = Velocity.getTemplate(template, Constants.UTF8);
 | 
			
		||||
            tpl.merge(context, sw);
 | 
			
		||||
            try {
 | 
			
		||||
                // 添加到zip
 | 
			
		||||
                zip.putNextEntry(new ZipEntry(VelocityUtils.getFileName(template, table)));
 | 
			
		||||
                IoUtil.write(zip, StandardCharsets.UTF_8, false, sw.toString());
 | 
			
		||||
                IoUtil.close(sw);
 | 
			
		||||
                zip.flush();
 | 
			
		||||
                zip.closeEntry();
 | 
			
		||||
            } catch (IOException e) {
 | 
			
		||||
                log.error("渲染模板失败,表名:" + table.getTableName(), e);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置主子表信息
 | 
			
		||||
     *
 | 
			
		||||
     * @param table 业务表信息
 | 
			
		||||
     */
 | 
			
		||||
    public void setSubTable(GenTable table) {
 | 
			
		||||
        String subTableName = table.getSubTableName();
 | 
			
		||||
        if (StringUtils.isNotEmpty(subTableName)) {
 | 
			
		||||
            table.setSubTable(baseMapper.selectGenTableByName(subTableName));
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,53 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" ?>
 | 
			
		||||
<!DOCTYPE mapper
 | 
			
		||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 | 
			
		||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 | 
			
		||||
<mapper namespace="com.ruoyi.generator.mapper.OracleGenTableColumnMapper">
 | 
			
		||||
 | 
			
		||||
    <resultMap type="GenTableColumn" id="GenTableColumnResult">
 | 
			
		||||
        <id     property="columnId"       column="column_id"      />
 | 
			
		||||
        <result property="tableId"        column="table_id"       />
 | 
			
		||||
        <result property="columnName"     column="column_name"    />
 | 
			
		||||
        <result property="columnComment"  column="column_comment" />
 | 
			
		||||
        <result property="columnType"     column="column_type"    />
 | 
			
		||||
        <result property="javaType"       column="java_type"      />
 | 
			
		||||
        <result property="javaField"      column="java_field"     />
 | 
			
		||||
        <result property="isPk"           column="is_pk"          />
 | 
			
		||||
        <result property="isIncrement"    column="is_increment"   />
 | 
			
		||||
        <result property="isRequired"     column="is_required"    />
 | 
			
		||||
        <result property="isInsert"       column="is_insert"      />
 | 
			
		||||
        <result property="isEdit"         column="is_edit"        />
 | 
			
		||||
        <result property="isList"         column="is_list"        />
 | 
			
		||||
        <result property="isQuery"        column="is_query"       />
 | 
			
		||||
        <result property="queryType"      column="query_type"     />
 | 
			
		||||
        <result property="htmlType"       column="html_type"      />
 | 
			
		||||
        <result property="dictType"       column="dict_type"      />
 | 
			
		||||
        <result property="sort"           column="sort"           />
 | 
			
		||||
        <result property="createBy"       column="create_by"      />
 | 
			
		||||
        <result property="createTime"     column="create_time"    />
 | 
			
		||||
        <result property="updateBy"       column="update_by"      />
 | 
			
		||||
        <result property="updateTime"     column="update_time"    />
 | 
			
		||||
    </resultMap>
 | 
			
		||||
 | 
			
		||||
    <select id="selectDbTableColumnsByName" parameterType="String" resultMap="GenTableColumnResult">
 | 
			
		||||
        select lower(temp.column_name) as column_name,
 | 
			
		||||
               (case when (temp.nullable = 'N'  and  temp.constraint_type != 'P') then '1' else null end) as is_required,
 | 
			
		||||
               (case when temp.constraint_type = 'P' then '1' else '0' end) as is_pk,
 | 
			
		||||
               temp.column_id as sort,
 | 
			
		||||
               temp.comments as column_comment,
 | 
			
		||||
               (case when temp.constraint_type = 'P' then '1' else '0' end) as is_increment,
 | 
			
		||||
               lower(temp.data_type) as column_type
 | 
			
		||||
        from (
 | 
			
		||||
                 select col.column_id, col.column_name,col.nullable, col.data_type, colc.comments, uc.constraint_type
 | 
			
		||||
                      , row_number() over (partition by col.column_name order by uc.constraint_type desc) as row_flg
 | 
			
		||||
                 from user_tab_columns col
 | 
			
		||||
                          left join user_col_comments colc on colc.table_name = col.table_name and colc.column_name = col.column_name
 | 
			
		||||
                          left join user_cons_columns ucc on ucc.table_name = col.table_name and ucc.column_name = col.column_name
 | 
			
		||||
                          left join user_constraints uc on uc.constraint_name = ucc.constraint_name
 | 
			
		||||
                 where col.table_name = upper(#{tableName})
 | 
			
		||||
             ) temp
 | 
			
		||||
        WHERE temp.row_flg = 1
 | 
			
		||||
        ORDER BY temp.column_id
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
</mapper>
 | 
			
		||||
@@ -0,0 +1,117 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8" ?>
 | 
			
		||||
<!DOCTYPE mapper
 | 
			
		||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 | 
			
		||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 | 
			
		||||
<mapper namespace="com.ruoyi.generator.mapper.OracleGenTableMapper">
 | 
			
		||||
 | 
			
		||||
    <resultMap type="GenTable" id="GenTableResult">
 | 
			
		||||
        <id     property="tableId"        column="table_id"          />
 | 
			
		||||
        <result property="tableName"      column="table_name"        />
 | 
			
		||||
        <result property="tableComment"   column="table_comment"     />
 | 
			
		||||
        <result property="subTableName"   column="sub_table_name"    />
 | 
			
		||||
        <result property="subTableFkName" column="sub_table_fk_name" />
 | 
			
		||||
        <result property="className"      column="class_name"        />
 | 
			
		||||
        <result property="tplCategory"    column="tpl_category"      />
 | 
			
		||||
        <result property="packageName"    column="package_name"      />
 | 
			
		||||
        <result property="moduleName"     column="module_name"       />
 | 
			
		||||
        <result property="businessName"   column="business_name"     />
 | 
			
		||||
        <result property="functionName"   column="function_name"     />
 | 
			
		||||
        <result property="functionAuthor" column="function_author"   />
 | 
			
		||||
        <result property="genType"        column="gen_type"          />
 | 
			
		||||
        <result property="genPath"        column="gen_path"          />
 | 
			
		||||
        <result property="options"        column="options"           />
 | 
			
		||||
        <result property="createBy"       column="create_by"         />
 | 
			
		||||
        <result property="createTime"     column="create_time"       />
 | 
			
		||||
        <result property="updateBy"       column="update_by"         />
 | 
			
		||||
        <result property="updateTime"     column="update_time"       />
 | 
			
		||||
        <result property="remark"         column="remark"            />
 | 
			
		||||
        <collection  property="columns"  javaType="java.util.List"  resultMap="GenTableColumnResult" />
 | 
			
		||||
    </resultMap>
 | 
			
		||||
 | 
			
		||||
    <resultMap type="GenTableColumn" id="GenTableColumnResult">
 | 
			
		||||
        <id     property="columnId"       column="column_id"      />
 | 
			
		||||
        <result property="tableId"        column="table_id"       />
 | 
			
		||||
        <result property="columnName"     column="column_name"    />
 | 
			
		||||
        <result property="columnComment"  column="column_comment" />
 | 
			
		||||
        <result property="columnType"     column="column_type"    />
 | 
			
		||||
        <result property="javaType"       column="java_type"      />
 | 
			
		||||
        <result property="javaField"      column="java_field"     />
 | 
			
		||||
        <result property="isPk"           column="is_pk"          />
 | 
			
		||||
        <result property="isIncrement"    column="is_increment"   />
 | 
			
		||||
        <result property="isRequired"     column="is_required"    />
 | 
			
		||||
        <result property="isInsert"       column="is_insert"      />
 | 
			
		||||
        <result property="isEdit"         column="is_edit"        />
 | 
			
		||||
        <result property="isList"         column="is_list"        />
 | 
			
		||||
        <result property="isQuery"        column="is_query"       />
 | 
			
		||||
        <result property="queryType"      column="query_type"     />
 | 
			
		||||
        <result property="htmlType"       column="html_type"      />
 | 
			
		||||
        <result property="dictType"       column="dict_type"      />
 | 
			
		||||
        <result property="sort"           column="sort"           />
 | 
			
		||||
        <result property="createBy"       column="create_by"      />
 | 
			
		||||
        <result property="createTime"     column="create_time"    />
 | 
			
		||||
        <result property="updateBy"       column="update_by"      />
 | 
			
		||||
        <result property="updateTime"     column="update_time"    />
 | 
			
		||||
    </resultMap>
 | 
			
		||||
 | 
			
		||||
    <select id="selectPageDbTableList" resultMap="GenTableResult">
 | 
			
		||||
        select lower(dt.table_name) as table_name, dtc.comments as table_comment, uo.created as create_time, uo.last_ddl_time as update_time
 | 
			
		||||
        from user_tables dt, user_tab_comments dtc, user_objects uo
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectDbTableList" resultMap="GenTableResult">
 | 
			
		||||
        select lower(dt.table_name) as table_name, dtc.comments as table_comment, uo.created as create_time, uo.last_ddl_time as update_time
 | 
			
		||||
        from user_tables dt, user_tab_comments dtc, user_objects uo
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectDbTableListByNames" resultMap="GenTableResult">
 | 
			
		||||
        select lower(dt.table_name) as table_name, dtc.comments as table_comment, uo.created as create_time, uo.last_ddl_time as update_time
 | 
			
		||||
        from user_tables dt, user_tab_comments dtc, user_objects uo
 | 
			
		||||
        where dt.table_name = dtc.table_name
 | 
			
		||||
        and dt.table_name = uo.object_name
 | 
			
		||||
        and uo.object_type = 'TABLE'
 | 
			
		||||
        AND dt.table_name NOT LIKE 'XXL_JOB_%' AND dt.table_name NOT LIKE 'GEN_%'
 | 
			
		||||
        AND dt.table_name NOT IN (select table_name from gen_table)
 | 
			
		||||
        and lower(dt.table_name) in
 | 
			
		||||
        <foreach collection="array" item="name" open="(" separator="," close=")">
 | 
			
		||||
            #{name}
 | 
			
		||||
        </foreach>
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectTableByName" parameterType="String" resultMap="GenTableResult">
 | 
			
		||||
        select lower(dt.table_name) as table_name, dtc.comments as table_comment, uo.created as create_time, uo.last_ddl_time as update_time
 | 
			
		||||
        from user_tables dt, user_tab_comments dtc, user_objects uo
 | 
			
		||||
        where dt.table_name = dtc.table_name
 | 
			
		||||
        and dt.table_name = uo.object_name
 | 
			
		||||
        and uo.object_type = 'TABLE'
 | 
			
		||||
        AND dt.table_name NOT LIKE 'XXL_JOB_%' AND dt.table_name NOT LIKE 'GEN_%'
 | 
			
		||||
        AND dt.table_name NOT IN (select table_name from gen_table)
 | 
			
		||||
        and lower(dt.table_name) = #{tableName}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectGenTableById" parameterType="Long" resultMap="GenTableResult">
 | 
			
		||||
        SELECT t.table_id, t.table_name, t.table_comment, t.sub_table_name, t.sub_table_fk_name, t.class_name, t.tpl_category, t.package_name, t.module_name, t.business_name, t.function_name, t.function_author, t.gen_type, t.gen_path, t.options, t.remark,
 | 
			
		||||
               c.column_id, c.column_name, c.column_comment, c.column_type, c.java_type, c.java_field, c.is_pk, c.is_increment, c.is_required, c.is_insert, c.is_edit, c.is_list, c.is_query, c.query_type, c.html_type, c.dict_type, c.sort
 | 
			
		||||
        FROM gen_table t
 | 
			
		||||
             LEFT JOIN gen_table_column c ON t.table_id = c.table_id
 | 
			
		||||
        where t.table_id = #{tableId} order by c.sort
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectGenTableByName" parameterType="String" resultMap="GenTableResult">
 | 
			
		||||
        SELECT t.table_id, t.table_name, t.table_comment, t.sub_table_name, t.sub_table_fk_name, t.class_name, t.tpl_category, t.package_name, t.module_name, t.business_name, t.function_name, t.function_author, t.gen_type, t.gen_path, t.options, t.remark,
 | 
			
		||||
               c.column_id, c.column_name, c.column_comment, c.column_type, c.java_type, c.java_field, c.is_pk, c.is_increment, c.is_required, c.is_insert, c.is_edit, c.is_list, c.is_query, c.query_type, c.html_type, c.dict_type, c.sort
 | 
			
		||||
        FROM gen_table t
 | 
			
		||||
             LEFT JOIN gen_table_column c ON t.table_id = c.table_id
 | 
			
		||||
        where t.table_name = #{tableName} order by c.sort
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectGenTableAll" parameterType="String" resultMap="GenTableResult">
 | 
			
		||||
        SELECT t.table_id, t.table_name, t.table_comment, t.sub_table_name, t.sub_table_fk_name, t.class_name, t.tpl_category, t.package_name, t.module_name, t.business_name, t.function_name, t.function_author, t.options, t.remark,
 | 
			
		||||
               c.column_id, c.column_name, c.column_comment, c.column_type, c.java_type, c.java_field, c.is_pk, c.is_increment, c.is_required, c.is_insert, c.is_edit, c.is_list, c.is_query, c.query_type, c.html_type, c.dict_type, c.sort
 | 
			
		||||
        FROM gen_table t
 | 
			
		||||
             LEFT JOIN gen_table_column c ON t.table_id = c.table_id
 | 
			
		||||
        order by c.sort
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
</mapper>
 | 
			
		||||
@@ -1,16 +1,21 @@
 | 
			
		||||
import request from '@/utils/request'
 | 
			
		||||
 | 
			
		||||
const dataName = "master";
 | 
			
		||||
 | 
			
		||||
// 查询生成表数据
 | 
			
		||||
export function listTable(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/list',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// 查询db数据库列表
 | 
			
		||||
export function listDbTable(query) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/db/list',
 | 
			
		||||
    method: 'get',
 | 
			
		||||
    params: query
 | 
			
		||||
@@ -20,6 +25,7 @@ export function listDbTable(query) {
 | 
			
		||||
// 查询表详细信息
 | 
			
		||||
export function getGenTable(tableId) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/' + tableId,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
@@ -28,6 +34,7 @@ export function getGenTable(tableId) {
 | 
			
		||||
// 修改代码生成信息
 | 
			
		||||
export function updateGenTable(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen',
 | 
			
		||||
    method: 'put',
 | 
			
		||||
    data: data
 | 
			
		||||
@@ -37,6 +44,7 @@ export function updateGenTable(data) {
 | 
			
		||||
// 导入表
 | 
			
		||||
export function importTable(data) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/importTable',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    params: data
 | 
			
		||||
@@ -46,6 +54,7 @@ export function importTable(data) {
 | 
			
		||||
// 预览生成代码
 | 
			
		||||
export function previewTable(tableId) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/preview/' + tableId,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
@@ -54,6 +63,7 @@ export function previewTable(tableId) {
 | 
			
		||||
// 删除表数据
 | 
			
		||||
export function delTable(tableId) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/' + tableId,
 | 
			
		||||
    method: 'delete'
 | 
			
		||||
  })
 | 
			
		||||
@@ -62,6 +72,7 @@ export function delTable(tableId) {
 | 
			
		||||
// 生成代码(自定义路径)
 | 
			
		||||
export function genCode(tableName) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/genCode/' + tableName,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
@@ -70,6 +81,7 @@ export function genCode(tableName) {
 | 
			
		||||
// 同步数据库
 | 
			
		||||
export function synchDb(tableName) {
 | 
			
		||||
  return request({
 | 
			
		||||
    headers: { datasource: dataName },
 | 
			
		||||
    url: '/tool/gen/synchDb/' + tableName,
 | 
			
		||||
    method: 'get'
 | 
			
		||||
  })
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										17
									
								
								script/docker/database.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								script/docker/database.yml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
version: '3'
 | 
			
		||||
 | 
			
		||||
services:
 | 
			
		||||
  oracle:
 | 
			
		||||
    image: tekintian/oracle12c:latest
 | 
			
		||||
    container_name: oracle
 | 
			
		||||
    environment:
 | 
			
		||||
      # 时区上海
 | 
			
		||||
      TZ: Asia/Shanghai
 | 
			
		||||
      DBCA_TOTAL_MEMORY: 16192
 | 
			
		||||
    ports:
 | 
			
		||||
      - "18080:8080"
 | 
			
		||||
      - "1521:1521"
 | 
			
		||||
    volumes:
 | 
			
		||||
      # 数据挂载
 | 
			
		||||
      - "/docker/oracle/data:/u01/app/oracle"
 | 
			
		||||
    restart: always
 | 
			
		||||
							
								
								
									
										954
									
								
								script/sql/oracle/oracle_ry_vue_4.X.sql
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										954
									
								
								script/sql/oracle/oracle_ry_vue_4.X.sql
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,954 @@
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 1、部门表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_dept (
 | 
			
		||||
  dept_id           number(20)      not null,
 | 
			
		||||
  parent_id         number(20)      default 0,
 | 
			
		||||
  ancestors         varchar2(50)    default '',
 | 
			
		||||
  dept_name         varchar2(30)    default '',
 | 
			
		||||
  order_num         number(4)       default 0,
 | 
			
		||||
  leader            varchar2(20)    default null,
 | 
			
		||||
  phone             varchar2(11)    default null,
 | 
			
		||||
  email             varchar2(50)    default null,
 | 
			
		||||
  status            char(1)         default '0',
 | 
			
		||||
  del_flag          char(1)         default '0',
 | 
			
		||||
  create_by         varchar2(64)    default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_dept add constraint pk_sys_dept primary key (dept_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_dept              is '部门表';
 | 
			
		||||
comment on column sys_dept.dept_id      is '部门id';
 | 
			
		||||
comment on column sys_dept.parent_id    is '父部门id';
 | 
			
		||||
comment on column sys_dept.ancestors    is '祖级列表';
 | 
			
		||||
comment on column sys_dept.dept_name    is '部门名称';
 | 
			
		||||
comment on column sys_dept.order_num    is '显示顺序';
 | 
			
		||||
comment on column sys_dept.leader       is '负责人';
 | 
			
		||||
comment on column sys_dept.phone        is '联系电话';
 | 
			
		||||
comment on column sys_dept.email        is '邮箱';
 | 
			
		||||
comment on column sys_dept.status       is '部门状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_dept.del_flag     is '删除标志(0代表存在 2代表删除)';
 | 
			
		||||
comment on column sys_dept.create_by    is '创建者';
 | 
			
		||||
comment on column sys_dept.create_time  is '创建时间';
 | 
			
		||||
comment on column sys_dept.update_by    is '更新者';
 | 
			
		||||
comment on column sys_dept.update_time  is '更新时间';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-部门表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_dept values(100,  0,   '0',          '若依科技',   0, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(101,  100, '0,100',      '深圳总公司', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(102,  100, '0,100',      '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(103,  101, '0,100,101',  '研发部门',   1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(104,  101, '0,100,101',  '市场部门',   2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(105,  101, '0,100,101',  '测试部门',   3, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(106,  101, '0,100,101',  '财务部门',   4, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(107,  101, '0,100,101',  '运维部门',   5, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(108,  102, '0,100,102',  '市场部门',   1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
insert into sys_dept values(109,  102, '0,100,102',  '财务部门',   2, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', sysdate, '', null);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 2、用户信息表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_user (
 | 
			
		||||
  user_id           number(20)      not null,
 | 
			
		||||
  dept_id           number(20)      default null,
 | 
			
		||||
  user_name         varchar2(30)    not null,
 | 
			
		||||
  nick_name         varchar2(30)    not null,
 | 
			
		||||
  user_type         varchar2(10)    default 'sys_user',
 | 
			
		||||
  email             varchar2(50)    default '',
 | 
			
		||||
  phonenumber       varchar2(11)    default '',
 | 
			
		||||
  sex               char(1)         default '0',
 | 
			
		||||
  avatar            varchar2(100)   default '',
 | 
			
		||||
  password          varchar2(100)   default '',
 | 
			
		||||
  status            char(1)         default '0',
 | 
			
		||||
  del_flag          char(1)         default '0',
 | 
			
		||||
  login_ip          varchar2(128)   default '',
 | 
			
		||||
  login_date        date,
 | 
			
		||||
  create_by         varchar2(64),
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(500)   default ''
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_user add constraint pk_sys_user primary key (user_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_user              is '用户信息表';
 | 
			
		||||
comment on column sys_user.user_id      is '用户ID';
 | 
			
		||||
comment on column sys_user.dept_id      is '部门ID';
 | 
			
		||||
comment on column sys_user.user_name    is '用户账号';
 | 
			
		||||
comment on column sys_user.nick_name    is '用户昵称';
 | 
			
		||||
comment on column sys_user.user_type    is '用户类型(sys_user系统用户)';
 | 
			
		||||
comment on column sys_user.email        is '用户邮箱';
 | 
			
		||||
comment on column sys_user.phonenumber  is '手机号码';
 | 
			
		||||
comment on column sys_user.sex          is '用户性别(0男 1女 2未知)';
 | 
			
		||||
comment on column sys_user.avatar       is '头像路径';
 | 
			
		||||
comment on column sys_user.password     is '密码';
 | 
			
		||||
comment on column sys_user.status       is '帐号状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_user.del_flag     is '删除标志(0代表存在 2代表删除)';
 | 
			
		||||
comment on column sys_user.login_ip     is '最后登录IP';
 | 
			
		||||
comment on column sys_user.login_date   is '最后登录时间';
 | 
			
		||||
comment on column sys_user.create_by    is '创建者';
 | 
			
		||||
comment on column sys_user.create_time  is '创建时间';
 | 
			
		||||
comment on column sys_user.update_by    is '更新者';
 | 
			
		||||
comment on column sys_user.update_time  is '更新时间';
 | 
			
		||||
comment on column sys_user.remark       is '备注';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-用户信息表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_user values(1,  103, 'admin', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate, 'admin', sysdate, '', null, '管理员');
 | 
			
		||||
insert into sys_user values(2,  105, 'lionli', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@qq.com',  '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate, 'admin', sysdate, '', null, '测试员');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 3、岗位信息表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_post (
 | 
			
		||||
  post_id           number(20)      not null,
 | 
			
		||||
  post_code         varchar2(64)    not null,
 | 
			
		||||
  post_name         varchar2(50)    not null,
 | 
			
		||||
  post_sort         number(4)       not null,
 | 
			
		||||
  status            char(1)         not null,
 | 
			
		||||
  create_by         varchar2(64)    default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(500)
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_post add constraint pk_sys_post primary key (post_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_post              is '岗位信息表';
 | 
			
		||||
comment on column sys_post.post_id      is '岗位ID';
 | 
			
		||||
comment on column sys_post.post_code    is '岗位编码';
 | 
			
		||||
comment on column sys_post.post_name    is '岗位名称';
 | 
			
		||||
comment on column sys_post.post_sort    is '显示顺序';
 | 
			
		||||
comment on column sys_post.status       is '状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_post.create_by    is '创建者';
 | 
			
		||||
comment on column sys_post.create_time  is '创建时间';
 | 
			
		||||
comment on column sys_post.update_by    is '更新者';
 | 
			
		||||
comment on column sys_post.update_time  is '更新时间';
 | 
			
		||||
comment on column sys_post.remark       is '备注';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-岗位信息表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_post values(1, 'ceo',  '董事长',    1, '0', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_post values(2, 'se',   '项目经理',  2, '0', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_post values(3, 'hr',   '人力资源',  3, '0', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_post values(4, 'user', '普通员工',  4, '0', 'admin', sysdate, '', null, '');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 4、角色信息表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_role (
 | 
			
		||||
  role_id              number(20)      not null,
 | 
			
		||||
  role_name            varchar2(30)    not null,
 | 
			
		||||
  role_key             varchar2(100)   not null,
 | 
			
		||||
  role_sort            number(4)       not null,
 | 
			
		||||
  data_scope           char(1)         default '1',
 | 
			
		||||
  menu_check_strictly  number(1)       default 1,
 | 
			
		||||
  dept_check_strictly  number(1)       default 1,
 | 
			
		||||
  status               char(1)         not null,
 | 
			
		||||
  del_flag             char(1)         default '0',
 | 
			
		||||
  create_by            varchar2(64)    default '',
 | 
			
		||||
  create_time          date,
 | 
			
		||||
  update_by            varchar2(64)    default '',
 | 
			
		||||
  update_time          date,
 | 
			
		||||
  remark               varchar2(500)   default null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_role add constraint pk_sys_role primary key (role_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_role                       is '角色信息表';
 | 
			
		||||
comment on column sys_role.role_id               is '角色ID';
 | 
			
		||||
comment on column sys_role.role_name             is '角色名称';
 | 
			
		||||
comment on column sys_role.role_key              is '角色权限字符串';
 | 
			
		||||
comment on column sys_role.role_sort             is '显示顺序';
 | 
			
		||||
comment on column sys_role.data_scope            is '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)';
 | 
			
		||||
comment on column sys_role.menu_check_strictly   is '菜单树选择项是否关联显示';
 | 
			
		||||
comment on column sys_role.dept_check_strictly   is '部门树选择项是否关联显示';
 | 
			
		||||
comment on column sys_role.status                is '角色状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_role.del_flag              is '删除标志(0代表存在 2代表删除)';
 | 
			
		||||
comment on column sys_role.create_by             is '创建者';
 | 
			
		||||
comment on column sys_role.create_time           is '创建时间';
 | 
			
		||||
comment on column sys_role.update_by             is '更新者';
 | 
			
		||||
comment on column sys_role.update_time           is '更新时间';
 | 
			
		||||
comment on column sys_role.remark                is '备注';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-角色信息表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_role values('1', '超级管理员',  'admin',  1, 1, 1, 1, '0', '0', 'admin', sysdate, '', null, '超级管理员');
 | 
			
		||||
insert into sys_role values('2', '普通角色',    'common', 2, 2, 1, 1, '0', '0', 'admin', sysdate, '', null, '普通角色');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 5、菜单权限表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_menu (
 | 
			
		||||
  menu_id           number(20)      not null,
 | 
			
		||||
  menu_name         varchar2(50)    not null,
 | 
			
		||||
  parent_id         number(20)      default 0,
 | 
			
		||||
  order_num         number(4)       default 0,
 | 
			
		||||
  path              varchar(200)    default '',
 | 
			
		||||
  component         varchar(255)    default null,
 | 
			
		||||
  query             varchar(255)    default null,
 | 
			
		||||
  is_frame          number(1)       default 1,
 | 
			
		||||
  is_cache          number(1)       default 0,
 | 
			
		||||
  menu_type         char(1)         default '',
 | 
			
		||||
  visible           char(1)         default 0,
 | 
			
		||||
  status            char(1)         default 0,
 | 
			
		||||
  perms             varchar2(100)   default null,
 | 
			
		||||
  icon              varchar2(100)   default '#',
 | 
			
		||||
  create_by         varchar2(64)    default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date ,
 | 
			
		||||
  remark            varchar2(500)   default ''
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_menu add constraint pk_sys_menu primary key (menu_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_menu              is '菜单权限表';
 | 
			
		||||
comment on column sys_menu.menu_id      is '菜单ID';
 | 
			
		||||
comment on column sys_menu.menu_name    is '菜单名称';
 | 
			
		||||
comment on column sys_menu.parent_id    is '父菜单ID';
 | 
			
		||||
comment on column sys_menu.order_num    is '显示顺序';
 | 
			
		||||
comment on column sys_menu.path         is '请求地址';
 | 
			
		||||
comment on column sys_menu.component    is '路由地址';
 | 
			
		||||
comment on column sys_menu.query        is '路由参数';
 | 
			
		||||
comment on column sys_menu.is_frame     is '是否为外链(0是 1否)';
 | 
			
		||||
comment on column sys_menu.is_cache     is '是否缓存(0缓存 1不缓存)';
 | 
			
		||||
comment on column sys_menu.menu_type    is '菜单类型(M目录 C菜单 F按钮)';
 | 
			
		||||
comment on column sys_menu.visible      is '菜单状态(0显示 1隐藏)';
 | 
			
		||||
comment on column sys_menu.status       is '菜单状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_menu.perms        is '权限标识';
 | 
			
		||||
comment on column sys_menu.icon         is '菜单图标';
 | 
			
		||||
comment on column sys_menu.create_by    is '创建者';
 | 
			
		||||
comment on column sys_menu.create_time  is '创建时间';
 | 
			
		||||
comment on column sys_menu.update_by    is '更新者';
 | 
			
		||||
comment on column sys_menu.update_time  is '更新时间';
 | 
			
		||||
comment on column sys_menu.remark       is '备注';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-菜单信息表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 一级菜单
 | 
			
		||||
insert into sys_menu values('1', '系统管理', '0', '1', 'system',           null, '', 1, 0, 'M', '0', '0', '', 'system',   'admin', sysdate, '', null, '系统管理目录');
 | 
			
		||||
insert into sys_menu values('2', '系统监控', '0', '2', 'monitor',          null, '', 1, 0, 'M', '0', '0', '', 'monitor',  'admin', sysdate, '', null, '系统监控目录');
 | 
			
		||||
insert into sys_menu values('3', '系统工具', '0', '3', 'tool',             null, '', 1, 0, 'M', '0', '0', '', 'tool',     'admin', sysdate, '', null, '系统工具目录');
 | 
			
		||||
insert into sys_menu values('4', 'PLUS官网', '0', '4', 'https://gitee.com/JavaLionLi/RuoYi-Vue-Plus', null, '', 0, 0, 'M', '0', '0', '', 'guide',    'admin', sysdate, '', null, 'RuoYi-Vue-Plus官网地址');
 | 
			
		||||
-- 二级菜单
 | 
			
		||||
insert into sys_menu values('100',  '用户管理', '1',   '1', 'user',       'system/user/index',        '', 1, 0, 'C', '0', '0', 'system:user:list',        'user',          'admin', sysdate, '', null, '用户管理菜单');
 | 
			
		||||
insert into sys_menu values('101',  '角色管理', '1',   '2', 'role',       'system/role/index',        '', 1, 0, 'C', '0', '0', 'system:role:list',        'peoples',       'admin', sysdate, '', null, '角色管理菜单');
 | 
			
		||||
insert into sys_menu values('102',  '菜单管理', '1',   '3', 'menu',       'system/menu/index',        '', 1, 0, 'C', '0', '0', 'system:menu:list',        'tree-table',    'admin', sysdate, '', null, '菜单管理菜单');
 | 
			
		||||
insert into sys_menu values('103',  '部门管理', '1',   '4', 'dept',       'system/dept/index',        '', 1, 0, 'C', '0', '0', 'system:dept:list',        'tree',          'admin', sysdate, '', null, '部门管理菜单');
 | 
			
		||||
insert into sys_menu values('104',  '岗位管理', '1',   '5', 'post',       'system/post/index',        '', 1, 0, 'C', '0', '0', 'system:post:list',        'post',          'admin', sysdate, '', null, '岗位管理菜单');
 | 
			
		||||
insert into sys_menu values('105',  '字典管理', '1',   '6', 'dict',       'system/dict/index',        '', 1, 0, 'C', '0', '0', 'system:dict:list',        'dict',          'admin', sysdate, '', null, '字典管理菜单');
 | 
			
		||||
insert into sys_menu values('106',  '参数设置', '1',   '7', 'config',     'system/config/index',      '', 1, 0, 'C', '0', '0', 'system:config:list',      'edit',          'admin', sysdate, '', null, '参数设置菜单');
 | 
			
		||||
insert into sys_menu values('107',  '通知公告', '1',   '8', 'notice',     'system/notice/index',      '', 1, 0, 'C', '0', '0', 'system:notice:list',      'message',       'admin', sysdate, '', null, '通知公告菜单');
 | 
			
		||||
insert into sys_menu values('108',  '日志管理', '1',   '9', 'log',        '',                         '', 1, 0, 'M', '0', '0', '',                        'log',           'admin', sysdate, '', null, '日志管理菜单');
 | 
			
		||||
insert into sys_menu values('109',  '在线用户', '2',   '1', 'online',     'monitor/online/index',     '', 1, 0, 'C', '0', '0', 'monitor:online:list',     'online',        'admin', sysdate, '', null, '在线用户菜单');
 | 
			
		||||
insert into sys_menu values('111',  '数据监控', '2',   '3', 'druid',      'monitor/druid/index',      '', 1, 0, 'C', '0', '0', 'monitor:druid:list',      'druid',         'admin', sysdate, '', null, '数据监控菜单');
 | 
			
		||||
insert into sys_menu values('113',  '缓存监控', '2',   '5', 'cache',      'monitor/cache/index',      '', 1, 0, 'C', '0', '0', 'monitor:cache:list',      'redis',         'admin', sysdate, '', null, '缓存监控菜单');
 | 
			
		||||
insert into sys_menu values('114',  '表单构建', '3',   '1', 'build',      'tool/build/index',         '', 1, 0, 'C', '0', '0', 'tool:build:list',         'build',         'admin', sysdate, '', null, '表单构建菜单');
 | 
			
		||||
insert into sys_menu values('115',  '代码生成', '3',   '2', 'gen',        'tool/gen/index',           '', 1, 0, 'C', '0', '0', 'tool:gen:list',           'code',          'admin', sysdate, '', null, '代码生成菜单');
 | 
			
		||||
insert into sys_menu values('116',  '系统接口', '3',   '3', 'swagger',    'tool/swagger/index',       '', 1, 0, 'C', '0', '0', 'tool:swagger:list',       'swagger',       'admin', sysdate, '', null, '系统接口菜单');
 | 
			
		||||
-- springboot-admin监控
 | 
			
		||||
insert into sys_menu values('117',  'Admin监控', '2',  '5', 'Admin',      'monitor/admin/index',      '', 1, 0, 'C', '0', '0', 'monitor:admin:list',      'dashboard',     'admin', sysdate, '', null, 'Admin监控菜单');
 | 
			
		||||
-- oss菜单
 | 
			
		||||
insert into sys_menu values('118',  '文件管理', '1', '10', 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 'admin', sysdate, '', null, '文件管理菜单');
 | 
			
		||||
-- xxl-job-admin控制台
 | 
			
		||||
insert into sys_menu values('120',  '任务调度中心', '2',  '5', 'XxlJob',      'monitor/xxljob/index',      '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list',      'job',     'admin', sysdate, '', null, 'Xxl-Job控制台菜单');
 | 
			
		||||
 | 
			
		||||
-- 三级菜单
 | 
			
		||||
insert into sys_menu values('500',  '操作日志', '108', '1', 'operlog',    'monitor/operlog/index',    '', 1, 0, 'C', '0', '0', 'monitor:operlog:list',    'form',          'admin', sysdate, '', null, '操作日志菜单');
 | 
			
		||||
insert into sys_menu values('501',  '登录日志', '108', '2', 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'logininfor',    'admin', sysdate, '', null, '登录日志菜单');
 | 
			
		||||
-- 用户管理按钮
 | 
			
		||||
insert into sys_menu values('1001', '用户查询', '100', '1',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1002', '用户新增', '100', '2',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1003', '用户修改', '100', '3',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1004', '用户删除', '100', '4',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1005', '用户导出', '100', '5',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:export',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1006', '用户导入', '100', '6',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:import',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1007', '重置密码', '100', '7',  '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 角色管理按钮
 | 
			
		||||
insert into sys_menu values('1008', '角色查询', '101', '1',  '', '', '', 1, 0, 'F', '0', '0', 'system:role:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1009', '角色新增', '101', '2',  '', '', '', 1, 0, 'F', '0', '0', 'system:role:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1010', '角色修改', '101', '3',  '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1011', '角色删除', '101', '4',  '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1012', '角色导出', '101', '5',  '', '', '', 1, 0, 'F', '0', '0', 'system:role:export',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 菜单管理按钮
 | 
			
		||||
insert into sys_menu values('1013', '菜单查询', '102', '1',  '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1014', '菜单新增', '102', '2',  '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1015', '菜单修改', '102', '3',  '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1016', '菜单删除', '102', '4',  '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 部门管理按钮
 | 
			
		||||
insert into sys_menu values('1017', '部门查询', '103', '1',  '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1018', '部门新增', '103', '2',  '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1019', '部门修改', '103', '3',  '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1020', '部门删除', '103', '4',  '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 岗位管理按钮
 | 
			
		||||
insert into sys_menu values('1021', '岗位查询', '104', '1',  '', '', '', 1, 0, 'F', '0', '0', 'system:post:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1022', '岗位新增', '104', '2',  '', '', '', 1, 0, 'F', '0', '0', 'system:post:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1023', '岗位修改', '104', '3',  '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1024', '岗位删除', '104', '4',  '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1025', '岗位导出', '104', '5',  '', '', '', 1, 0, 'F', '0', '0', 'system:post:export',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 字典管理按钮
 | 
			
		||||
insert into sys_menu values('1026', '字典查询', '105', '1', '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1027', '字典新增', '105', '2', '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1028', '字典修改', '105', '3', '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1029', '字典删除', '105', '4', '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1030', '字典导出', '105', '5', '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 参数设置按钮
 | 
			
		||||
insert into sys_menu values('1031', '参数查询', '106', '1', '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query',        '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1032', '参数新增', '106', '2', '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1033', '参数修改', '106', '3', '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1034', '参数删除', '106', '4', '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1035', '参数导出', '106', '5', '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 通知公告按钮
 | 
			
		||||
insert into sys_menu values('1036', '公告查询', '107', '1', '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query',        '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1037', '公告新增', '107', '2', '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1038', '公告修改', '107', '3', '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1039', '公告删除', '107', '4', '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 操作日志按钮
 | 
			
		||||
insert into sys_menu values('1040', '操作查询', '500', '1', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query',      '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1041', '操作删除', '500', '2', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove',     '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1042', '日志导出', '500', '4', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export',     '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 登录日志按钮
 | 
			
		||||
insert into sys_menu values('1043', '登录查询', '501', '1', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query',   '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1044', '登录删除', '501', '2', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove',  '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1045', '日志导出', '501', '3', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export',  '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 在线用户按钮
 | 
			
		||||
insert into sys_menu values('1046', '在线查询', '109', '1', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1047', '批量强退', '109', '2', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1048', '单条强退', '109', '3', '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- 代码生成按钮
 | 
			
		||||
insert into sys_menu values('1055', '生成查询', '115', '1', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query',             '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1056', '生成修改', '115', '2', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit',              '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1057', '生成删除', '115', '3', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1058', '导入代码', '115', '2', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import',            '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1059', '预览代码', '115', '4', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview',           '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1060', '生成代码', '115', '5', '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code',              '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
-- oss相关按钮
 | 
			
		||||
insert into sys_menu values('1600', '文件查询', '118', '1', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query',        '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1601', '文件上传', '118', '2', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1602', '文件下载', '118', '3', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download',     '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1603', '文件删除', '118', '4', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove',       '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1604', '配置添加', '118', '5', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:add',          '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
insert into sys_menu values('1605', '配置编辑', '118', '6', '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:edit',         '#', 'admin', sysdate, '', null, '');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 6、用户和角色关联表  用户N-1角色
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_user_role (
 | 
			
		||||
  user_id  number(20)  not null,
 | 
			
		||||
  role_id  number(20)  not null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_user_role add constraint pk_sys_user_role primary key (user_id, role_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_user_role              is '用户和角色关联表';
 | 
			
		||||
comment on column sys_user_role.user_id      is '用户ID';
 | 
			
		||||
comment on column sys_user_role.role_id      is '角色ID';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-用户和角色关联表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_user_role values ('1', '1');
 | 
			
		||||
insert into sys_user_role values ('2', '2');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 7、角色和菜单关联表  角色1-N菜单
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_role_menu (
 | 
			
		||||
  role_id  number(20)  not null,
 | 
			
		||||
  menu_id  number(20)  not null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_role_menu add constraint pk_sys_role_menu primary key (role_id, menu_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_role_menu              is '角色和菜单关联表';
 | 
			
		||||
comment on column sys_role_menu.role_id      is '角色ID';
 | 
			
		||||
comment on column sys_role_menu.menu_id      is '菜单ID';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-角色和菜单关联表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_role_menu values ('2', '1');
 | 
			
		||||
insert into sys_role_menu values ('2', '2');
 | 
			
		||||
insert into sys_role_menu values ('2', '3');
 | 
			
		||||
insert into sys_role_menu values ('2', '4');
 | 
			
		||||
insert into sys_role_menu values ('2', '100');
 | 
			
		||||
insert into sys_role_menu values ('2', '101');
 | 
			
		||||
insert into sys_role_menu values ('2', '102');
 | 
			
		||||
insert into sys_role_menu values ('2', '103');
 | 
			
		||||
insert into sys_role_menu values ('2', '104');
 | 
			
		||||
insert into sys_role_menu values ('2', '105');
 | 
			
		||||
insert into sys_role_menu values ('2', '106');
 | 
			
		||||
insert into sys_role_menu values ('2', '107');
 | 
			
		||||
insert into sys_role_menu values ('2', '108');
 | 
			
		||||
insert into sys_role_menu values ('2', '109');
 | 
			
		||||
insert into sys_role_menu values ('2', '110');
 | 
			
		||||
insert into sys_role_menu values ('2', '111');
 | 
			
		||||
insert into sys_role_menu values ('2', '112');
 | 
			
		||||
insert into sys_role_menu values ('2', '113');
 | 
			
		||||
insert into sys_role_menu values ('2', '114');
 | 
			
		||||
insert into sys_role_menu values ('2', '115');
 | 
			
		||||
insert into sys_role_menu values ('2', '116');
 | 
			
		||||
insert into sys_role_menu values ('2', '500');
 | 
			
		||||
insert into sys_role_menu values ('2', '501');
 | 
			
		||||
insert into sys_role_menu values ('2', '1000');
 | 
			
		||||
insert into sys_role_menu values ('2', '1001');
 | 
			
		||||
insert into sys_role_menu values ('2', '1002');
 | 
			
		||||
insert into sys_role_menu values ('2', '1003');
 | 
			
		||||
insert into sys_role_menu values ('2', '1004');
 | 
			
		||||
insert into sys_role_menu values ('2', '1005');
 | 
			
		||||
insert into sys_role_menu values ('2', '1006');
 | 
			
		||||
insert into sys_role_menu values ('2', '1007');
 | 
			
		||||
insert into sys_role_menu values ('2', '1008');
 | 
			
		||||
insert into sys_role_menu values ('2', '1009');
 | 
			
		||||
insert into sys_role_menu values ('2', '1010');
 | 
			
		||||
insert into sys_role_menu values ('2', '1011');
 | 
			
		||||
insert into sys_role_menu values ('2', '1012');
 | 
			
		||||
insert into sys_role_menu values ('2', '1013');
 | 
			
		||||
insert into sys_role_menu values ('2', '1014');
 | 
			
		||||
insert into sys_role_menu values ('2', '1015');
 | 
			
		||||
insert into sys_role_menu values ('2', '1016');
 | 
			
		||||
insert into sys_role_menu values ('2', '1017');
 | 
			
		||||
insert into sys_role_menu values ('2', '1018');
 | 
			
		||||
insert into sys_role_menu values ('2', '1019');
 | 
			
		||||
insert into sys_role_menu values ('2', '1020');
 | 
			
		||||
insert into sys_role_menu values ('2', '1021');
 | 
			
		||||
insert into sys_role_menu values ('2', '1022');
 | 
			
		||||
insert into sys_role_menu values ('2', '1023');
 | 
			
		||||
insert into sys_role_menu values ('2', '1024');
 | 
			
		||||
insert into sys_role_menu values ('2', '1025');
 | 
			
		||||
insert into sys_role_menu values ('2', '1026');
 | 
			
		||||
insert into sys_role_menu values ('2', '1027');
 | 
			
		||||
insert into sys_role_menu values ('2', '1028');
 | 
			
		||||
insert into sys_role_menu values ('2', '1029');
 | 
			
		||||
insert into sys_role_menu values ('2', '1030');
 | 
			
		||||
insert into sys_role_menu values ('2', '1031');
 | 
			
		||||
insert into sys_role_menu values ('2', '1032');
 | 
			
		||||
insert into sys_role_menu values ('2', '1033');
 | 
			
		||||
insert into sys_role_menu values ('2', '1034');
 | 
			
		||||
insert into sys_role_menu values ('2', '1035');
 | 
			
		||||
insert into sys_role_menu values ('2', '1036');
 | 
			
		||||
insert into sys_role_menu values ('2', '1037');
 | 
			
		||||
insert into sys_role_menu values ('2', '1038');
 | 
			
		||||
insert into sys_role_menu values ('2', '1039');
 | 
			
		||||
insert into sys_role_menu values ('2', '1040');
 | 
			
		||||
insert into sys_role_menu values ('2', '1041');
 | 
			
		||||
insert into sys_role_menu values ('2', '1042');
 | 
			
		||||
insert into sys_role_menu values ('2', '1043');
 | 
			
		||||
insert into sys_role_menu values ('2', '1044');
 | 
			
		||||
insert into sys_role_menu values ('2', '1045');
 | 
			
		||||
insert into sys_role_menu values ('2', '1046');
 | 
			
		||||
insert into sys_role_menu values ('2', '1047');
 | 
			
		||||
insert into sys_role_menu values ('2', '1048');
 | 
			
		||||
insert into sys_role_menu values ('2', '1055');
 | 
			
		||||
insert into sys_role_menu values ('2', '1056');
 | 
			
		||||
insert into sys_role_menu values ('2', '1057');
 | 
			
		||||
insert into sys_role_menu values ('2', '1058');
 | 
			
		||||
insert into sys_role_menu values ('2', '1059');
 | 
			
		||||
insert into sys_role_menu values ('2', '1060');
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 8、角色和部门关联表  角色1-N部门
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_role_dept (
 | 
			
		||||
  role_id  number(20)  not null,
 | 
			
		||||
  dept_id  number(20)  not null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_role_dept add constraint pk_sys_role_dept primary key (role_id, dept_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_role_dept              is '角色和部门关联表';
 | 
			
		||||
comment on column sys_role_dept.role_id      is '角色ID';
 | 
			
		||||
comment on column sys_role_dept.dept_id      is '部门ID';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-角色和部门关联表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_role_dept values ('2', '100');
 | 
			
		||||
insert into sys_role_dept values ('2', '101');
 | 
			
		||||
insert into sys_role_dept values ('2', '105');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 9、用户与岗位关联表  用户1-N岗位
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_user_post (
 | 
			
		||||
  user_id number(20)  not null,
 | 
			
		||||
  post_id number(20)  not null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_user_post add constraint pk_sys_user_post primary key (user_id, post_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_user_post              is '用户与岗位关联表';
 | 
			
		||||
comment on column sys_user_post.user_id      is '用户ID';
 | 
			
		||||
comment on column sys_user_post.post_id      is '岗位ID';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-用户与岗位关联表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_user_post values ('1', '1');
 | 
			
		||||
insert into sys_user_post values ('2', '2');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 10、操作日志记录
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_oper_log (
 | 
			
		||||
  oper_id           number(20)      not null ,
 | 
			
		||||
  title             varchar2(50)    default '',
 | 
			
		||||
  business_type     number(2)       default 0,
 | 
			
		||||
  method            varchar2(100)   default '',
 | 
			
		||||
  request_method    varchar(10)     default '',
 | 
			
		||||
  operator_type     number(1)       default 0,
 | 
			
		||||
  oper_name         varchar2(50)    default '',
 | 
			
		||||
  dept_name         varchar2(50)    default '',
 | 
			
		||||
  oper_url          varchar2(255)   default '',
 | 
			
		||||
  oper_ip           varchar2(128)   default '',
 | 
			
		||||
  oper_location     varchar2(255)   default '',
 | 
			
		||||
  oper_param        varchar2(2000)  default '',
 | 
			
		||||
  json_result       varchar2(2000)  default '',
 | 
			
		||||
  status            number(1)       default 0,
 | 
			
		||||
  error_msg         varchar2(2000)  default '' ,
 | 
			
		||||
  oper_time         date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_oper_log add constraint pk_sys_oper_log primary key (oper_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_oper_log                is '操作日志记录';
 | 
			
		||||
comment on column sys_oper_log.oper_id        is '日志主键';
 | 
			
		||||
comment on column sys_oper_log.title          is '模块标题';
 | 
			
		||||
comment on column sys_oper_log.business_type  is '业务类型(0其它 1新增 2修改 3删除)';
 | 
			
		||||
comment on column sys_oper_log.method         is '方法名称';
 | 
			
		||||
comment on column sys_oper_log.request_method is '请求方式';
 | 
			
		||||
comment on column sys_oper_log.operator_type  is '操作类别(0其它 1后台用户 2手机端用户)';
 | 
			
		||||
comment on column sys_oper_log.oper_name      is '操作人员';
 | 
			
		||||
comment on column sys_oper_log.dept_name      is '部门名称';
 | 
			
		||||
comment on column sys_oper_log.oper_url       is '请求URL';
 | 
			
		||||
comment on column sys_oper_log.oper_ip        is '主机地址';
 | 
			
		||||
comment on column sys_oper_log.oper_location  is '操作地点';
 | 
			
		||||
comment on column sys_oper_log.oper_param     is '请求参数';
 | 
			
		||||
comment on column sys_oper_log.json_result    is '返回参数';
 | 
			
		||||
comment on column sys_oper_log.status         is '操作状态(0正常 1异常)';
 | 
			
		||||
comment on column sys_oper_log.error_msg      is '错误消息';
 | 
			
		||||
comment on column sys_oper_log.oper_time      is '操作时间';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 11、字典类型表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_dict_type (
 | 
			
		||||
  dict_id           number(20)      not null,
 | 
			
		||||
  dict_name         varchar2(100)   default '',
 | 
			
		||||
  dict_type         varchar2(100)   default '',
 | 
			
		||||
  status            char(1)         default '0',
 | 
			
		||||
  create_by         varchar2(64)    default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(500)   default null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_dict_type add constraint pk_sys_dict_type primary key (dict_id);
 | 
			
		||||
create unique index sys_dict_type_index1 on sys_dict_type (dict_type);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_dict_type               is '字典类型表';
 | 
			
		||||
comment on column sys_dict_type.dict_id       is '字典主键';
 | 
			
		||||
comment on column sys_dict_type.dict_name     is '字典名称';
 | 
			
		||||
comment on column sys_dict_type.dict_type     is '字典类型';
 | 
			
		||||
comment on column sys_dict_type.status        is '状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_dict_type.create_by     is '创建者';
 | 
			
		||||
comment on column sys_dict_type.create_time   is '创建时间';
 | 
			
		||||
comment on column sys_dict_type.update_by     is '更新者';
 | 
			
		||||
comment on column sys_dict_type.update_time   is '更新时间';
 | 
			
		||||
comment on column sys_dict_type.remark        is '备注';
 | 
			
		||||
 | 
			
		||||
insert into sys_dict_type values(1,  '用户性别', 'sys_user_sex',        '0', 'admin', sysdate, '', null, '用户性别列表');
 | 
			
		||||
insert into sys_dict_type values(2,  '菜单状态', 'sys_show_hide',       '0', 'admin', sysdate, '', null, '菜单状态列表');
 | 
			
		||||
insert into sys_dict_type values(3,  '系统开关', 'sys_normal_disable',  '0', 'admin', sysdate, '', null, '系统开关列表');
 | 
			
		||||
insert into sys_dict_type values(6,  '系统是否', 'sys_yes_no',          '0', 'admin', sysdate, '', null, '系统是否列表');
 | 
			
		||||
insert into sys_dict_type values(7,  '通知类型', 'sys_notice_type',     '0', 'admin', sysdate, '', null, '通知类型列表');
 | 
			
		||||
insert into sys_dict_type values(8,  '通知状态', 'sys_notice_status',   '0', 'admin', sysdate, '', null, '通知状态列表');
 | 
			
		||||
insert into sys_dict_type values(9,  '操作类型', 'sys_oper_type',       '0', 'admin', sysdate, '', null, '操作类型列表');
 | 
			
		||||
insert into sys_dict_type values(10, '系统状态', 'sys_common_status',   '0', 'admin', sysdate, '', null, '登录状态列表');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 12、字典数据表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_dict_data (
 | 
			
		||||
  dict_code        number(20)      not null,
 | 
			
		||||
  dict_sort        number(4)       default 0,
 | 
			
		||||
  dict_label       varchar2(100)   default '',
 | 
			
		||||
  dict_value       varchar2(100)   default '',
 | 
			
		||||
  dict_type        varchar2(100)   default '',
 | 
			
		||||
  css_class        varchar2(100)   default null,
 | 
			
		||||
  list_class       varchar2(100)   default null,
 | 
			
		||||
  is_default       char(1)         default 'N',
 | 
			
		||||
  status           char(1)         default '0',
 | 
			
		||||
  create_by        varchar2(64)    default '',
 | 
			
		||||
  create_time      date,
 | 
			
		||||
  update_by        varchar2(64)    default '',
 | 
			
		||||
  update_time      date,
 | 
			
		||||
  remark           varchar2(500)   default null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_dict_data add constraint pk_sys_dict_data primary key (dict_code);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_dict_data               is '字典数据表';
 | 
			
		||||
comment on column sys_dict_data.dict_code     is '字典主键';
 | 
			
		||||
comment on column sys_dict_data.dict_sort     is '字典排序';
 | 
			
		||||
comment on column sys_dict_data.dict_label    is '字典标签';
 | 
			
		||||
comment on column sys_dict_data.dict_value    is '字典键值';
 | 
			
		||||
comment on column sys_dict_data.dict_type     is '字典类型';
 | 
			
		||||
comment on column sys_dict_data.css_class     is '样式属性(其他样式扩展)';
 | 
			
		||||
comment on column sys_dict_data.list_class    is '表格回显样式';
 | 
			
		||||
comment on column sys_dict_data.is_default    is '是否默认(Y是 N否)';
 | 
			
		||||
comment on column sys_dict_data.status        is '状态(0正常 1停用)';
 | 
			
		||||
comment on column sys_dict_data.create_by     is '创建者';
 | 
			
		||||
comment on column sys_dict_data.create_time   is '创建时间';
 | 
			
		||||
comment on column sys_dict_data.update_by     is '更新者';
 | 
			
		||||
comment on column sys_dict_data.update_time   is '更新时间';
 | 
			
		||||
comment on column sys_dict_data.remark        is '备注';
 | 
			
		||||
 | 
			
		||||
insert into sys_dict_data values(1,  1,  '男',       '0',       'sys_user_sex',        '',   '',        'Y', '0', 'admin', sysdate, '', null, '性别男');
 | 
			
		||||
insert into sys_dict_data values(2,  2,  '女',       '1',       'sys_user_sex',        '',   '',        'N', '0', 'admin', sysdate, '', null, '性别女');
 | 
			
		||||
insert into sys_dict_data values(3,  3,  '未知',     '2',       'sys_user_sex',        '',   '',        'N', '0', 'admin', sysdate, '', null, '性别未知');
 | 
			
		||||
insert into sys_dict_data values(4,  1,  '显示',     '0',       'sys_show_hide',       '',   'primary', 'Y', '0', 'admin', sysdate, '', null, '显示菜单');
 | 
			
		||||
insert into sys_dict_data values(5,  2,  '隐藏',     '1',       'sys_show_hide',       '',   'danger',  'N', '0', 'admin', sysdate, '', null, '隐藏菜单');
 | 
			
		||||
insert into sys_dict_data values(6,  1,  '正常',     '0',       'sys_normal_disable',  '',   'primary', 'Y', '0', 'admin', sysdate, '', null, '正常状态');
 | 
			
		||||
insert into sys_dict_data values(7,  2,  '停用',     '1',       'sys_normal_disable',  '',   'danger',  'N', '0', 'admin', sysdate, '', null, '停用状态');
 | 
			
		||||
insert into sys_dict_data values(12, 1,  '是',       'Y',       'sys_yes_no',          '',   'primary', 'Y', '0', 'admin', sysdate, '', null, '系统默认是');
 | 
			
		||||
insert into sys_dict_data values(13, 2,  '否',       'N',       'sys_yes_no',          '',   'danger',  'N', '0', 'admin', sysdate, '', null, '系统默认否');
 | 
			
		||||
insert into sys_dict_data values(14, 1,  '通知',     '1',       'sys_notice_type',     '',   'warning', 'Y', '0', 'admin', sysdate, '', null, '通知');
 | 
			
		||||
insert into sys_dict_data values(15, 2,  '公告',     '2',       'sys_notice_type',     '',   'success', 'N', '0', 'admin', sysdate, '', null, '公告');
 | 
			
		||||
insert into sys_dict_data values(16, 1,  '正常',     '0',       'sys_notice_status',   '',   'primary', 'Y', '0', 'admin', sysdate, '', null, '正常状态');
 | 
			
		||||
insert into sys_dict_data values(17, 2,  '关闭',     '1',       'sys_notice_status',   '',   'danger',  'N', '0', 'admin', sysdate, '', null, '关闭状态');
 | 
			
		||||
insert into sys_dict_data values(18, 1,  '新增',     '1',       'sys_oper_type',       '',   'info',    'N', '0', 'admin', sysdate, '', null, '新增操作');
 | 
			
		||||
insert into sys_dict_data values(19, 2,  '修改',     '2',       'sys_oper_type',       '',   'info',    'N', '0', 'admin', sysdate, '', null, '修改操作');
 | 
			
		||||
insert into sys_dict_data values(20, 3,  '删除',     '3',       'sys_oper_type',       '',   'danger',  'N', '0', 'admin', sysdate, '', null, '删除操作');
 | 
			
		||||
insert into sys_dict_data values(21, 4,  '授权',     '4',       'sys_oper_type',       '',   'primary', 'N', '0', 'admin', sysdate, '', null, '授权操作');
 | 
			
		||||
insert into sys_dict_data values(22, 5,  '导出',     '5',       'sys_oper_type',       '',   'warning', 'N', '0', 'admin', sysdate, '', null, '导出操作');
 | 
			
		||||
insert into sys_dict_data values(23, 6,  '导入',     '6',       'sys_oper_type',       '',   'warning', 'N', '0', 'admin', sysdate, '', null, '导入操作');
 | 
			
		||||
insert into sys_dict_data values(24, 7,  '强退',     '7',       'sys_oper_type',       '',   'danger',  'N', '0', 'admin', sysdate, '', null, '强退操作');
 | 
			
		||||
insert into sys_dict_data values(25, 8,  '生成代码', '8',       'sys_oper_type',       '',   'warning', 'N', '0', 'admin', sysdate, '', null, '生成操作');
 | 
			
		||||
insert into sys_dict_data values(26, 9,  '清空数据', '9',       'sys_oper_type',       '',   'danger',  'N', '0', 'admin', sysdate, '', null, '清空操作');
 | 
			
		||||
insert into sys_dict_data values(27, 1,  '成功',     '0',       'sys_common_status',   '',   'primary', 'N', '0', 'admin', sysdate, '', null, '正常状态');
 | 
			
		||||
insert into sys_dict_data values(28, 2,  '失败',     '1',       'sys_common_status',   '',   'danger',  'N', '0', 'admin', sysdate, '', null, '停用状态');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 13、参数配置表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_config (
 | 
			
		||||
  config_id         number(20)     not null,
 | 
			
		||||
  config_name       varchar2(100)  default '',
 | 
			
		||||
  config_key        varchar2(100)  default '',
 | 
			
		||||
  config_value      varchar2(100)  default '',
 | 
			
		||||
  config_type       char(1)        default 'N',
 | 
			
		||||
  create_by         varchar2(64)   default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)   default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(500)  default null
 | 
			
		||||
);
 | 
			
		||||
alter table sys_config add constraint pk_sys_config primary key (config_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_config               is '参数配置表';
 | 
			
		||||
comment on column sys_config.config_id     is '参数主键';
 | 
			
		||||
comment on column sys_config.config_name   is '参数名称';
 | 
			
		||||
comment on column sys_config.config_key    is '参数键名';
 | 
			
		||||
comment on column sys_config.config_value  is '参数键值';
 | 
			
		||||
comment on column sys_config.config_type   is '系统内置(Y是 N否)';
 | 
			
		||||
comment on column sys_config.create_by     is '创建者';
 | 
			
		||||
comment on column sys_config.create_time   is '创建时间';
 | 
			
		||||
comment on column sys_config.update_by     is '更新者';
 | 
			
		||||
comment on column sys_config.update_time   is '更新时间';
 | 
			
		||||
comment on column sys_config.remark        is '备注';
 | 
			
		||||
 | 
			
		||||
insert into sys_config values(1, '主框架页-默认皮肤样式名称',     'sys.index.skinName',            'skin-blue',     'Y', 'admin', sysdate, '', null, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow' );
 | 
			
		||||
insert into sys_config values(2, '用户管理-账号初始密码',         'sys.user.initPassword',         '123456',        'Y', 'admin', sysdate, '', null, '初始化密码 123456' );
 | 
			
		||||
insert into sys_config values(3, '主框架页-侧边栏主题',           'sys.index.sideTheme',           'theme-dark',    'Y', 'admin', sysdate, '', null, '深色主题theme-dark,浅色主题theme-light' );
 | 
			
		||||
insert into sys_config values(4, '账号自助-验证码开关',           'sys.account.captchaOnOff',      'true',          'Y', 'admin', sysdate, '', null, '是否开启验证码功能(true开启,false关闭)');
 | 
			
		||||
insert into sys_config values(5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser',      'false',         'Y', 'admin', sysdate, '', null, '是否开启注册用户功能(true开启,false关闭)');
 | 
			
		||||
insert into sys_config values(11, 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 'admin', sysdate, '', null, 'true:开启, false:关闭');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 14、系统访问记录
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_logininfor (
 | 
			
		||||
  info_id         number(20)     not null,
 | 
			
		||||
  user_name       varchar2(50)   default '',
 | 
			
		||||
  ipaddr          varchar2(128)  default '',
 | 
			
		||||
  login_location  varchar2(255)  default '',
 | 
			
		||||
  browser         varchar2(50)   default '',
 | 
			
		||||
  os              varchar2(50)   default '',
 | 
			
		||||
  status          char(1)        default '0',
 | 
			
		||||
  msg             varchar2(255)  default '',
 | 
			
		||||
  login_time      date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_logininfor add constraint pk_sys_logininfor primary key (info_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_logininfor                is '系统访问记录';
 | 
			
		||||
comment on column sys_logininfor.info_id        is '访问ID';
 | 
			
		||||
comment on column sys_logininfor.user_name      is '登录账号';
 | 
			
		||||
comment on column sys_logininfor.ipaddr         is '登录IP地址';
 | 
			
		||||
comment on column sys_logininfor.login_location is '登录地点';
 | 
			
		||||
comment on column sys_logininfor.browser        is '浏览器类型';
 | 
			
		||||
comment on column sys_logininfor.os             is '操作系统';
 | 
			
		||||
comment on column sys_logininfor.status         is '登录状态(0成功 1失败)';
 | 
			
		||||
comment on column sys_logininfor.msg            is '提示消息';
 | 
			
		||||
comment on column sys_logininfor.login_time     is '访问时间';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 17、通知公告表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_notice (
 | 
			
		||||
  notice_id         number(20)      not null,
 | 
			
		||||
  notice_title      varchar2(50)    not null,
 | 
			
		||||
  notice_type       char(1)         not null,
 | 
			
		||||
  notice_content    clob            default null,
 | 
			
		||||
  status            char(1)         default '0',
 | 
			
		||||
  create_by         varchar2(64)    default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)    default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(255)   default null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_notice add constraint pk_sys_notice primary key (notice_id);
 | 
			
		||||
 | 
			
		||||
comment on table  sys_notice                   is '通知公告表';
 | 
			
		||||
comment on column sys_notice.notice_id         is '公告主键';
 | 
			
		||||
comment on column sys_notice.notice_title      is '公告标题';
 | 
			
		||||
comment on column sys_notice.notice_type       is '公告类型(1通知 2公告)';
 | 
			
		||||
comment on column sys_notice.notice_content    is '公告内容';
 | 
			
		||||
comment on column sys_notice.status            is '公告状态(0正常 1关闭)';
 | 
			
		||||
comment on column sys_notice.create_by         is '创建者';
 | 
			
		||||
comment on column sys_notice.create_time       is '创建时间';
 | 
			
		||||
comment on column sys_notice.update_by         is '更新者';
 | 
			
		||||
comment on column sys_notice.update_time       is '更新时间';
 | 
			
		||||
comment on column sys_notice.remark            is '备注';
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 初始化-公告信息表数据
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
insert into sys_notice values('1', '温馨提醒:2018-07-01 新版本发布啦', '2', '新版本内容', '0', 'admin', sysdate, '', null, '管理员');
 | 
			
		||||
insert into sys_notice values('2', '维护通知:2018-07-01 系统凌晨维护', '1', '维护内容',   '0', 'admin', sysdate, '', null, '管理员');
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 18、代码生成业务表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table gen_table (
 | 
			
		||||
  table_id          number(20)       not null,
 | 
			
		||||
  table_name        varchar2(200)    default '',
 | 
			
		||||
  table_comment     varchar2(500)    default '',
 | 
			
		||||
  sub_table_name    varchar(64)      default null,
 | 
			
		||||
  sub_table_fk_name varchar(64)      default null,
 | 
			
		||||
  class_name        varchar2(100)    default '',
 | 
			
		||||
  tpl_category      varchar2(200)    default 'crud',
 | 
			
		||||
  package_name      varchar2(100),
 | 
			
		||||
  module_name       varchar2(30),
 | 
			
		||||
  business_name     varchar2(30),
 | 
			
		||||
  function_name     varchar2(50),
 | 
			
		||||
  function_author   varchar2(50),
 | 
			
		||||
  gen_type          char(1)          default '0',
 | 
			
		||||
  gen_path          varchar2(200)    default '/',
 | 
			
		||||
  options           varchar2(1000),
 | 
			
		||||
  create_by         varchar2(64)     default '',
 | 
			
		||||
  create_time       date,
 | 
			
		||||
  update_by         varchar2(64)     default '',
 | 
			
		||||
  update_time       date,
 | 
			
		||||
  remark            varchar2(500)    default null
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table gen_table add constraint pk_gen_table primary key (table_id);
 | 
			
		||||
 | 
			
		||||
comment on table  gen_table                   is '代码生成业务表';
 | 
			
		||||
comment on column gen_table.table_id          is '编号';
 | 
			
		||||
comment on column gen_table.table_name        is '表名称';
 | 
			
		||||
comment on column gen_table.table_comment     is '表描述';
 | 
			
		||||
comment on column gen_table.sub_table_name    is '关联子表的表名';
 | 
			
		||||
comment on column gen_table.sub_table_fk_name is '子表关联的外键名';
 | 
			
		||||
comment on column gen_table.class_name        is '实体类名称';
 | 
			
		||||
comment on column gen_table.tpl_category      is '使用的模板(crud单表操作 tree树表操作)';
 | 
			
		||||
comment on column gen_table.package_name      is '生成包路径';
 | 
			
		||||
comment on column gen_table.module_name       is '生成模块名';
 | 
			
		||||
comment on column gen_table.business_name     is '生成业务名';
 | 
			
		||||
comment on column gen_table.function_name     is '生成功能名';
 | 
			
		||||
comment on column gen_table.function_author   is '生成功能作者';
 | 
			
		||||
comment on column gen_table.gen_type          is '生成代码方式(0zip压缩包 1自定义路径)';
 | 
			
		||||
comment on column gen_table.gen_path          is '生成路径(不填默认项目路径)';
 | 
			
		||||
comment on column gen_table.options           is '其它生成选项';
 | 
			
		||||
comment on column gen_table.create_by         is '创建者';
 | 
			
		||||
comment on column gen_table.create_time       is '创建时间';
 | 
			
		||||
comment on column gen_table.update_by         is '更新者';
 | 
			
		||||
comment on column gen_table.update_time       is '更新时间';
 | 
			
		||||
comment on column gen_table.remark            is '备注';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 19、代码生成业务表字段
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table gen_table_column (
 | 
			
		||||
  column_id         number(20)      not null,
 | 
			
		||||
  table_id          varchar2(64),
 | 
			
		||||
  column_name       varchar2(200),
 | 
			
		||||
  column_comment    varchar2(500),
 | 
			
		||||
  column_type       varchar2(100),
 | 
			
		||||
  java_type         varchar2(500),
 | 
			
		||||
  java_field        varchar2(200),
 | 
			
		||||
  is_pk             char(1),
 | 
			
		||||
  is_increment      char(1),
 | 
			
		||||
  is_required       char(1),
 | 
			
		||||
  is_insert         char(1),
 | 
			
		||||
  is_edit           char(1),
 | 
			
		||||
  is_list           char(1),
 | 
			
		||||
  is_query          char(1),
 | 
			
		||||
  query_type        varchar(200)    default 'EQ',
 | 
			
		||||
  html_type         varchar(200),
 | 
			
		||||
  dict_type         varchar(200)    default '',
 | 
			
		||||
  sort              number(4),
 | 
			
		||||
  create_by         varchar(64)     default '',
 | 
			
		||||
  create_time       date ,
 | 
			
		||||
  update_by         varchar(64)     default '',
 | 
			
		||||
  update_time       date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table gen_table_column add constraint pk_gen_table_column primary key (column_id);
 | 
			
		||||
 | 
			
		||||
comment on table  gen_table_column                is '代码生成业务表字段';
 | 
			
		||||
comment on column gen_table_column.column_id      is '编号';
 | 
			
		||||
comment on column gen_table_column.table_id       is '归属表编号';
 | 
			
		||||
comment on column gen_table_column.column_name    is '列名称';
 | 
			
		||||
comment on column gen_table_column.column_comment is '列描述';
 | 
			
		||||
comment on column gen_table_column.column_type    is '列类型';
 | 
			
		||||
comment on column gen_table_column.java_type      is 'JAVA类型';
 | 
			
		||||
comment on column gen_table_column.java_field     is 'JAVA字段名';
 | 
			
		||||
comment on column gen_table_column.is_pk          is '是否主键(1是)';
 | 
			
		||||
comment on column gen_table_column.is_increment   is '是否自增(1是)';
 | 
			
		||||
comment on column gen_table_column.is_required    is '是否必填(1是)';
 | 
			
		||||
comment on column gen_table_column.is_insert      is '是否为插入字段(1是)';
 | 
			
		||||
comment on column gen_table_column.is_edit        is '是否编辑字段(1是)';
 | 
			
		||||
comment on column gen_table_column.is_list        is '是否列表字段(1是)';
 | 
			
		||||
comment on column gen_table_column.is_query       is '是否查询字段(1是)';
 | 
			
		||||
comment on column gen_table_column.query_type     is '查询方式(等于、不等于、大于、小于、范围)';
 | 
			
		||||
comment on column gen_table_column.html_type      is '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)';
 | 
			
		||||
comment on column gen_table_column.dict_type      is '字典类型';
 | 
			
		||||
comment on column gen_table_column.sort           is '排序';
 | 
			
		||||
comment on column gen_table_column.create_by      is '创建者';
 | 
			
		||||
comment on column gen_table_column.create_time    is '创建时间';
 | 
			
		||||
comment on column gen_table_column.update_by      is '更新者';
 | 
			
		||||
comment on column gen_table_column.update_time    is '更新时间';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- OSS对象存储表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_oss (
 | 
			
		||||
  oss_id          number(20)   not null,
 | 
			
		||||
  file_name       varchar(255)  not null,
 | 
			
		||||
  original_name   varchar(255)  not null,
 | 
			
		||||
  file_suffix     varchar(10)  not null,
 | 
			
		||||
  url             varchar(500) not null,
 | 
			
		||||
  service         varchar(10)  default 'minio' not null,
 | 
			
		||||
  create_by       varchar(64)  default '',
 | 
			
		||||
  create_time     date,
 | 
			
		||||
  update_by       varchar(64)  default '',
 | 
			
		||||
  update_time     date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_oss add constraint pk_sys_oss primary key (oss_id);
 | 
			
		||||
 | 
			
		||||
comment on table sys_oss is 'OSS对象存储表';
 | 
			
		||||
comment on column sys_oss.oss_id is '对象存储主键';
 | 
			
		||||
comment on column sys_oss.file_name is '文件名';
 | 
			
		||||
comment on column sys_oss.original_name is '原名';
 | 
			
		||||
comment on column sys_oss.file_suffix is '文件后缀名';
 | 
			
		||||
comment on column sys_oss.url is 'URL地址';
 | 
			
		||||
comment on column sys_oss.service is '服务商';
 | 
			
		||||
comment on column sys_oss.create_time is '创建时间';
 | 
			
		||||
comment on column sys_oss.create_by is '上传者';
 | 
			
		||||
comment on column sys_oss.update_time is '更新时间';
 | 
			
		||||
comment on column sys_oss.update_by is '更新者';
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- OSS对象存储动态配置表
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create table sys_oss_config (
 | 
			
		||||
  oss_config_id   number(20)    not null,
 | 
			
		||||
  config_key      varchar(255)  not null,
 | 
			
		||||
  access_key      varchar(255)  default '',
 | 
			
		||||
  secret_key      varchar(255)  default '',
 | 
			
		||||
  bucket_name     varchar(255)  default '',
 | 
			
		||||
  prefix          varchar(255)  default '',
 | 
			
		||||
  endpoint        varchar(255)  default '',
 | 
			
		||||
  is_https        char(1)       default 'N',
 | 
			
		||||
  region          varchar(255)  default '',
 | 
			
		||||
  status          char(1)       default '1',
 | 
			
		||||
  ext1            varchar(255)  default '',
 | 
			
		||||
  create_by       varchar(64)   default '',
 | 
			
		||||
  remark          varchar(500)  default null,
 | 
			
		||||
  create_time     date,
 | 
			
		||||
  update_by       varchar(64)   default '',
 | 
			
		||||
  update_time     date
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
alter table sys_oss_config add constraint pk_sys_oss_config primary key (oss_config_id);
 | 
			
		||||
 | 
			
		||||
comment on table sys_oss_config is '对象存储配置表';
 | 
			
		||||
comment on column sys_oss_config.oss_config_id is '主建';
 | 
			
		||||
comment on column sys_oss_config.config_key is '配置key';
 | 
			
		||||
comment on column sys_oss_config.access_key is 'accesskey';
 | 
			
		||||
comment on column sys_oss_config.secret_key is '秘钥';
 | 
			
		||||
comment on column sys_oss_config.bucket_name is '桶名称';
 | 
			
		||||
comment on column sys_oss_config.prefix is '前缀';
 | 
			
		||||
comment on column sys_oss_config.endpoint is '访问站点';
 | 
			
		||||
comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)';
 | 
			
		||||
comment on column sys_oss_config.region is '域';
 | 
			
		||||
comment on column sys_oss_config.status is '状态(0=正常,1=停用)';
 | 
			
		||||
comment on column sys_oss_config.ext1 is '扩展字段';
 | 
			
		||||
comment on column sys_oss_config.remark is '备注';
 | 
			
		||||
comment on column sys_oss_config.create_by is '创建者';
 | 
			
		||||
comment on column sys_oss_config.create_time is '创建时间';
 | 
			
		||||
comment on column sys_oss_config.update_by is '更新者';
 | 
			
		||||
comment on column sys_oss_config.update_time is '更新时间';
 | 
			
		||||
 | 
			
		||||
insert into sys_oss_config values (1, 'minio',  'ruoyi',            'ruoyi123',        'ruoyi',             '', 'http://localhost:9000',                'N', '',            '0', '', NULL, 'admin', sysdate, 'admin', sysdate);
 | 
			
		||||
insert into sys_oss_config values (2, 'qiniu',  'XXXXXXXXXXXXXXX',  'XXXXXXXXXXXXXXX', 'ruoyi',             '', 'http://XXX.XXXX.com',                  'N', 'z0',          '1', '', NULL, 'admin', sysdate, 'admin', sysdate);
 | 
			
		||||
insert into sys_oss_config values (3, 'aliyun', 'XXXXXXXXXXXXXXX',  'XXXXXXXXXXXXXXX', 'ruoyi',             '', 'http://oss-cn-beijing.aliyuncs.com',   'N', '',            '1', '', NULL, 'admin', sysdate, 'admin', sysdate);
 | 
			
		||||
insert into sys_oss_config values (4, 'qcloud', 'XXXXXXXXXXXXXXX',  'XXXXXXXXXXXXXXX', 'ruoyi-1250000000',  '', 'http://cos.ap-beijing.myqcloud.com',   'N', 'ap-beijing',  '1', '', NULL, 'admin', sysdate, 'admin', sysdate);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
-- 函数 ,代替mysql的find_in_set
 | 
			
		||||
-- 例如: select * from sys_dept where FIND_IN_SET (101,ancestors) <> 0
 | 
			
		||||
-- mysql可接受0或其它number做为where 条件,oracle只接受表达式做为where 条件
 | 
			
		||||
-- ----------------------------
 | 
			
		||||
create or replace function find_in_set(arg1 in varchar2,arg2 in varchar)
 | 
			
		||||
return number is Result number;
 | 
			
		||||
begin
 | 
			
		||||
select instr(','||arg2||',' , ','||arg1||',') into Result from dual;
 | 
			
		||||
return(Result);
 | 
			
		||||
end find_in_set;
 | 
			
		||||
		Reference in New Issue
	
	Block a user