|
@@ -1,9 +1,9 @@
|
|
|
<?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.datau.mdm.mapper.StorageManageMapper">
|
|
|
+<mapper namespace="com.ozs.mdm.mapper.StorageManageMapper">
|
|
|
|
|
|
- <select id="listDatabaseOption" resultType="com.datau.mdm.dto.MdmInfoDatabase">
|
|
|
+ <select id="listDatabaseOption" resultType="com.ozs.mdm.dto.MdmInfoDatabase">
|
|
|
SELECT
|
|
|
mid.id,
|
|
|
resource_name,
|
|
@@ -21,7 +21,7 @@
|
|
|
and resource_name like concat('%',#{resourceName},'%')
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="listDatabaseOptionAll" resultType="com.datau.mdm.dto.MdmInfoDatabase">
|
|
|
+ <select id="listDatabaseOptionAll" resultType="com.ozs.mdm.dto.MdmInfoDatabase">
|
|
|
SELECT
|
|
|
mid.id,
|
|
|
resource_name,
|
|
@@ -38,12 +38,12 @@
|
|
|
and resource_name like concat('%',#{resourceName},'%')
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="listCreateTableOption" resultType="com.datau.mdm.dto.MdmDimCreateOption">
|
|
|
+ <select id="listCreateTableOption" resultType="com.ozs.mdm.dto.MdmDimCreateOption">
|
|
|
select id,name
|
|
|
from mdm_dim_create_option
|
|
|
</select>
|
|
|
|
|
|
- <select id="listColumnTypeByIds" resultType="com.datau.mdm.dto.MdmDimColumnType">
|
|
|
+ <select id="listColumnTypeByIds" resultType="com.ozs.mdm.dto.MdmDimColumnType">
|
|
|
select id,type_name,is_float_point,is_time from mdm_dim_column_type
|
|
|
where id in(
|
|
|
<foreach collection="list" separator="," item="column">
|
|
@@ -52,7 +52,7 @@
|
|
|
)
|
|
|
</select>
|
|
|
|
|
|
- <select id="getDatabaseById" resultType="com.datau.mdm.dto.MdmInfoDatabase">
|
|
|
+ <select id="getDatabaseById" resultType="com.ozs.mdm.dto.MdmInfoDatabase">
|
|
|
select mid.id,
|
|
|
mid.resource_name,
|
|
|
mid.ip,
|
|
@@ -82,7 +82,7 @@
|
|
|
and id = #{charsetId}
|
|
|
</if>
|
|
|
</select>
|
|
|
- <insert id="saveTable" parameterType="com.datau.mdm.dto.MdmCreateTableDTO">
|
|
|
+ <insert id="saveTable" parameterType="com.ozs.mdm.dto.MdmCreateTableDTO">
|
|
|
insert into
|
|
|
mdm_info_table(id,table_name,table_comment,table_desc,database_id,charset
|
|
|
,hive_separator_row,hive_separator_column,hive_partition,update_user_id,update_time)
|
|
@@ -114,7 +114,7 @@
|
|
|
#{resourceType}
|
|
|
</select>
|
|
|
|
|
|
- <select id="listColumnTypeByNames" resultType="com.datau.mdm.dto.MdmDimColumnType">
|
|
|
+ <select id="listColumnTypeByNames" resultType="com.ozs.mdm.dto.MdmDimColumnType">
|
|
|
select id,type_name from mdm_dim_column_type where type_name
|
|
|
in(
|
|
|
<foreach collection="list" separator="," item="column">
|
|
@@ -122,7 +122,7 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</select>
|
|
|
- <select id="listTable" resultType="com.datau.mdm.dto.MdmInfoTable">
|
|
|
+ <select id="listTable" resultType="com.ozs.mdm.dto.MdmInfoTable">
|
|
|
select
|
|
|
mit.id,table_comment,table_name,mid.database_name,mid.resource_name,mit.update_time,
|
|
|
diu.nickname updateUserName
|
|
@@ -143,7 +143,7 @@
|
|
|
and mit.database_id = #{databaseId}
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="listTableScan" resultType="com.datau.mdm.dto.MdmInfoTable">
|
|
|
+ <select id="listTableScan" resultType="com.ozs.mdm.dto.MdmInfoTable">
|
|
|
select
|
|
|
mit.id,table_comment,table_name,mid.database_name,mid.resource_name,mit.update_time,
|
|
|
diu.nickname updateUserName
|
|
@@ -163,7 +163,7 @@
|
|
|
and mit.database_id = #{databaseId}
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="getTableInfoById" resultType="com.datau.mdm.dto.MdmCreateTableDTO">
|
|
|
+ <select id="getTableInfoById" resultType="com.ozs.mdm.dto.MdmCreateTableDTO">
|
|
|
SELECT
|
|
|
mit.id,
|
|
|
table_name,
|
|
@@ -195,7 +195,7 @@
|
|
|
select id from
|
|
|
mdm_info_column where table_id = #{tableId}
|
|
|
</select>
|
|
|
- <insert id="saveUpdateColumn" parameterType="com.datau.mdm.dto.UpdateColumnDTO">
|
|
|
+ <insert id="saveUpdateColumn" parameterType="com.ozs.mdm.dto.UpdateColumnDTO">
|
|
|
insert into
|
|
|
mdm_info_column(id,column_code,column_name,column_comment,column_type,length
|
|
|
,numeric_scale,if_primary,if_null,table_id,update_user_id,update_time)
|
|
@@ -205,7 +205,7 @@
|
|
|
,#{column.numericScale},#{column.ifPrimary},#{column.ifNull},#{column.tableId},#{column.updateUserId},now())
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
- <update id="updateUpdateColumn" parameterType="com.datau.mdm.dto.UpdateColumnDTO">
|
|
|
+ <update id="updateUpdateColumn" parameterType="com.ozs.mdm.dto.UpdateColumnDTO">
|
|
|
update
|
|
|
mdm_info_column set
|
|
|
column_name = case
|
|
@@ -256,14 +256,14 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</update>
|
|
|
- <delete id="removeUpdateColumn" parameterType="com.datau.mdm.dto.UpdateColumnDTO">
|
|
|
+ <delete id="removeUpdateColumn" parameterType="com.ozs.mdm.dto.UpdateColumnDTO">
|
|
|
delete from mdm_info_column where id in(
|
|
|
<foreach collection="list" separator="," item="column">
|
|
|
#{column.id}
|
|
|
</foreach>
|
|
|
)
|
|
|
</delete>
|
|
|
- <update id="updateTableInfo" parameterType="com.datau.mdm.dto.UpdateTableDTO">
|
|
|
+ <update id="updateTableInfo" parameterType="com.ozs.mdm.dto.UpdateTableDTO">
|
|
|
update mdm_info_table
|
|
|
set
|
|
|
<if test="newTableName !=null && newTableName !=''">
|
|
@@ -284,7 +284,7 @@
|
|
|
now()
|
|
|
where id = #{id}
|
|
|
</update>
|
|
|
- <select id="listColumsByTableId" resultType="com.datau.mdm.dto.MdmInfoColumn">
|
|
|
+ <select id="listColumsByTableId" resultType="com.ozs.mdm.dto.MdmInfoColumn">
|
|
|
SELECT
|
|
|
mic.id,
|
|
|
mic.column_code,
|
|
@@ -316,7 +316,7 @@
|
|
|
order by column_code
|
|
|
</select>
|
|
|
|
|
|
- <select id="listColumTypeByDatabaseType" resultType="com.datau.mdm.dto.MdmDimColumnType">
|
|
|
+ <select id="listColumTypeByDatabaseType" resultType="com.ozs.mdm.dto.MdmDimColumnType">
|
|
|
select id,type_desc,type_name,resource_type,is_float_point,is_time
|
|
|
from
|
|
|
mdm_dim_column_type
|
|
@@ -326,7 +326,7 @@
|
|
|
</if>
|
|
|
</select>
|
|
|
|
|
|
- <select id="getDatabaseByTableId" resultType="com.datau.mdm.dto.MdmInfoDatabase">
|
|
|
+ <select id="getDatabaseByTableId" resultType="com.ozs.mdm.dto.MdmInfoDatabase">
|
|
|
select mid.id,
|
|
|
mid.resource_name,
|
|
|
mid.ip,
|
|
@@ -354,7 +354,7 @@
|
|
|
and mit.id = #{tableId}
|
|
|
</if>
|
|
|
</select>
|
|
|
- <select id="listCreateTableByIds" resultType="com.datau.mdm.dto.MdmCreateTableDTO">
|
|
|
+ <select id="listCreateTableByIds" resultType="com.ozs.mdm.dto.MdmCreateTableDTO">
|
|
|
select
|
|
|
mit.id tableId,table_comment,mit.charset
|
|
|
charsetId,table_desc,table_name,mid.database_name,mid.resource_name,mddc.charset_name
|
|
@@ -368,7 +368,7 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</select>
|
|
|
- <select id="listColumnByTableIds" resultType="com.datau.mdm.dto.MdmInfoColumn">
|
|
|
+ <select id="listColumnByTableIds" resultType="com.ozs.mdm.dto.MdmInfoColumn">
|
|
|
SELECT
|
|
|
mic.id,
|
|
|
mic.table_id,
|
|
@@ -403,7 +403,7 @@
|
|
|
select
|
|
|
table_name from mdm_info_table where database_id = #{databaseId}
|
|
|
</select>
|
|
|
- <insert id="saveCopyTables" parameterType="com.datau.mdm.dto.MdmCreateTableDTO">
|
|
|
+ <insert id="saveCopyTables" parameterType="com.ozs.mdm.dto.MdmCreateTableDTO">
|
|
|
insert into
|
|
|
mdm_info_table(id,table_name,table_comment,table_desc,database_id,charset
|
|
|
,hive_separator_row,hive_separator_column,hive_partition,update_user_id,update_time)
|
|
@@ -413,11 +413,11 @@
|
|
|
,#{table.hiveSeparatorRow},#{table.hiveSeparatorColumn},#{table.hivePartition},#{table.updateUserId},now())
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
- <select id="listColumnTypeAll" resultType="com.datau.mdm.dto.MdmDimColumnType">
|
|
|
+ <select id="listColumnTypeAll" resultType="com.ozs.mdm.dto.MdmDimColumnType">
|
|
|
select
|
|
|
id,type_name,is_float_point,is_time from mdm_dim_column_type
|
|
|
</select>
|
|
|
- <select id="listTableByDatabaseId" resultType="com.datau.mdm.dto.MdmCreateTableDTO">
|
|
|
+ <select id="listTableByDatabaseId" resultType="com.ozs.mdm.dto.MdmCreateTableDTO">
|
|
|
select
|
|
|
mit.id
|
|
|
tableId,table_comment,mit.charset
|
|
@@ -428,7 +428,7 @@
|
|
|
mid.charset = mddc.id where 1=1
|
|
|
and mit.database_id = #{databaseId}
|
|
|
</select>
|
|
|
- <select id="listColumnByDatabaseId" resultType="com.datau.mdm.dto.MdmInfoColumn">
|
|
|
+ <select id="listColumnByDatabaseId" resultType="com.ozs.mdm.dto.MdmInfoColumn">
|
|
|
SELECT
|
|
|
mic.id,
|
|
|
mic.column_code,
|