Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
73ca6081
提交
73ca6081
编写于
12月 29, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhouweidong 发布系统代码 [ibz-dst,应用]
上级
ad4ce95e
变更
5
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
45 行增加
和
3 行删除
+45
-3
DABuild.java
...rc/main/java/cn/ibizlab/core/analysis/domain/DABuild.java
+8
-0
IDAMetricService.java
...va/cn/ibizlab/core/analysis/service/IDAMetricService.java
+1
-0
DABuildServiceImpl.java
...bizlab/core/analysis/service/impl/DABuildServiceImpl.java
+4
-0
DAMetricServiceImpl.java
...izlab/core/analysis/service/impl/DAMetricServiceImpl.java
+29
-0
h2_table.xml
ibzdst-core/src/main/resources/liquibase/h2_table.xml
+3
-3
未找到文件。
ibzdst-core/src/main/java/cn/ibizlab/core/analysis/domain/DABuild.java
浏览文件 @
73ca6081
...
...
@@ -141,6 +141,14 @@ public class DABuild extends EntityMP implements Serializable {
this
.
dadimension
=
dadimension
;
this
.
modify
(
"dadimension"
,
(
dadimension
!=
null
)?
dadimension:
(
new
ArrayList
()));
}
/**
* 指标
*/
@JsonIgnore
@JSONField
(
serialize
=
false
)
@TableField
(
exist
=
false
)
private
List
<
cn
.
ibizlab
.
core
.
analysis
.
domain
.
DAMetric
>
metrics
;
/**
* 设置 [名称]
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/analysis/service/IDAMetricService.java
浏览文件 @
73ca6081
...
...
@@ -41,6 +41,7 @@ public interface IDAMetricService extends IService<DAMetric> {
Page
<
DAMetric
>
searchDefault
(
DAMetricSearchContext
context
);
List
<
DAMetric
>
selectByBuildId
(
String
build_id
);
void
removeByBuildId
(
String
build_id
);
void
saveByBuildId
(
String
build_id
,
List
<
DAMetric
>
list
)
;
/**
*自定义查询SQL
* @param sql select * from table where id =#{et.param}
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/analysis/service/impl/DABuildServiceImpl.java
浏览文件 @
73ca6081
...
...
@@ -67,6 +67,7 @@ public class DABuildServiceImpl extends ServiceImpl<DABuildMapper, DABuild> impl
if
(!
this
.
retBool
(
this
.
baseMapper
.
insert
(
et
)))
{
return
false
;
}
dametricService
.
saveByBuildId
(
et
.
getBuildId
(),
et
.
getMetrics
());
CachedBeanCopier
.
copy
(
get
(
et
.
getBuildId
()),
et
);
return
true
;
}
...
...
@@ -85,6 +86,7 @@ public class DABuildServiceImpl extends ServiceImpl<DABuildMapper, DABuild> impl
if
(!
update
(
et
,
(
Wrapper
)
et
.
getUpdateWrapper
(
true
).
eq
(
"buildid"
,
et
.
getBuildId
())))
{
return
false
;
}
dametricService
.
saveByBuildId
(
et
.
getBuildId
(),
et
.
getMetrics
());
CachedBeanCopier
.
copy
(
get
(
et
.
getBuildId
()),
et
);
return
true
;
}
...
...
@@ -99,6 +101,7 @@ public class DABuildServiceImpl extends ServiceImpl<DABuildMapper, DABuild> impl
@Override
@Transactional
public
boolean
remove
(
String
key
)
{
dametricService
.
removeByBuildId
(
key
)
;
boolean
result
=
removeById
(
key
);
return
result
;
}
...
...
@@ -118,6 +121,7 @@ public class DABuildServiceImpl extends ServiceImpl<DABuildMapper, DABuild> impl
et
.
setBuildId
(
key
);
}
else
{
et
.
setMetrics
(
dametricService
.
selectByBuildId
(
key
));
}
return
et
;
}
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/analysis/service/impl/DAMetricServiceImpl.java
浏览文件 @
73ca6081
...
...
@@ -217,6 +217,35 @@ public class DAMetricServiceImpl extends ServiceImpl<DAMetricMapper, DAMetric> i
this
.
remove
(
new
QueryWrapper
<
DAMetric
>().
eq
(
"buildid"
,
build_id
));
}
@Override
public
void
saveByBuildId
(
String
build_id
,
List
<
DAMetric
>
list
)
{
if
(
list
==
null
)
return
;
Set
<
String
>
delIds
=
new
HashSet
<
String
>();
List
<
DAMetric
>
_update
=
new
ArrayList
<
DAMetric
>();
List
<
DAMetric
>
_create
=
new
ArrayList
<
DAMetric
>();
for
(
DAMetric
before:
selectByBuildId
(
build_id
)){
delIds
.
add
(
before
.
getMetricId
());
}
for
(
DAMetric
sub:
list
)
{
sub
.
setBuildId
(
build_id
);
if
(
ObjectUtils
.
isEmpty
(
sub
.
getMetricId
()))
sub
.
setMetricId
((
String
)
sub
.
getDefaultKey
(
true
));
if
(
delIds
.
contains
(
sub
.
getMetricId
()))
{
delIds
.
remove
(
sub
.
getMetricId
());
_update
.
add
(
sub
);
}
else
_create
.
add
(
sub
);
}
if
(
_update
.
size
()>
0
)
proxyService
.
updateBatch
(
_update
);
if
(
_create
.
size
()>
0
)
proxyService
.
createBatch
(
_create
);
if
(
delIds
.
size
()>
0
)
proxyService
.
removeBatch
(
delIds
);
}
/**
* 查询集合 数据集
...
...
ibzdst-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
73ca6081
...
...
@@ -4,7 +4,7 @@
<!--输出实体[DA_BUILD]数据结构 -->
<changeSet
author=
"root"
id=
"tab-da_build-6
5
-1"
>
<changeSet
author=
"root"
id=
"tab-da_build-6
7
-1"
>
<createTable
tableName=
"IBZDABUILD"
>
<column
name=
"BUILDID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_DA_BUILD_BUILDID"
/>
...
...
@@ -54,7 +54,7 @@
<!--输出实体[DA_METRIC]数据结构 -->
<changeSet
author=
"root"
id=
"tab-da_metric-6
0
-3"
>
<changeSet
author=
"root"
id=
"tab-da_metric-6
2
-3"
>
<createTable
tableName=
"IBZDAMETRIC"
>
<column
name=
"DA_METRICID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_DA_METRIC_DA_METRICID"
/>
...
...
@@ -469,7 +469,7 @@
<!--输出实体[DA_BUILD]外键关系 -->
<!--输出实体[DA_CHART]外键关系 -->
<!--输出实体[DA_METRIC]外键关系 -->
<changeSet
author=
"root"
id=
"fk-da_metric-6
0
-17"
>
<changeSet
author=
"root"
id=
"fk-da_metric-6
2
-17"
>
<addForeignKeyConstraint
baseColumnNames=
"BUILDID"
baseTableName=
"IBZDAMETRIC"
constraintName=
"DER1N_DA_METRIC_DA_BUILD_BUILD"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"BUILDID"
referencedTableName=
"IBZDABUILD"
validate=
"true"
/>
</changeSet>
<!--输出实体[DA_REPORT]外键关系 -->
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录