资产授权基本信息表实体列增加字段
parent
87c60d5934
commit
15c79db8d7
|
@ -11,6 +11,10 @@ import lombok.NoArgsConstructor;
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@Builder
|
@Builder
|
||||||
public class Accredit {
|
public class Accredit {
|
||||||
|
//表ID
|
||||||
|
private Long id;
|
||||||
|
//数据源Id
|
||||||
|
private Long basicId;
|
||||||
//接入源名称
|
//接入源名称
|
||||||
private String dataResourceName;
|
private String dataResourceName;
|
||||||
//数据来源系统名称
|
//数据来源系统名称
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
<result property="dataNum" column="data_num"/>
|
<result property="dataNum" column="data_num"/>
|
||||||
<result property="tableNameB" column="tableNameB"/>
|
<result property="tableNameB" column="tableNameB"/>
|
||||||
<result property="tableRemark" column="table_remark"/>
|
<result property="tableRemark" column="table_remark"/>
|
||||||
|
<result property="id" column="id"/>
|
||||||
|
<result property="basicId" column="basic_id"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<resultMap id="AccreditRep" type="com.muyu.domain.rep.AccreditDeptRep">
|
<resultMap id="AccreditRep" type="com.muyu.domain.rep.AccreditDeptRep">
|
||||||
|
@ -46,6 +48,8 @@
|
||||||
-- 根据
|
-- 根据
|
||||||
SELECT source.data_resource_name,source.database_name,source.data_sources_system_name,
|
SELECT source.data_resource_name,source.database_name,source.data_sources_system_name,
|
||||||
-- table1.table_name tableNameS,
|
-- table1.table_name tableNameS,
|
||||||
|
table2.id,
|
||||||
|
table2.basic_id,
|
||||||
table2.table_name tableNameB,
|
table2.table_name tableNameB,
|
||||||
table2.data_num,
|
table2.data_num,
|
||||||
table2.table_remark
|
table2.table_remark
|
||||||
|
|
Loading…
Reference in New Issue