Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzlite
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzlite
提交
ca87ab45
提交
ca87ab45
编写于
9月 15, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhouweidong 发布系统代码
上级
fdf0e4e4
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
55 行增加
和
1 行删除
+55
-1
DstSystemExService.java
...n/ibizlab/core/extensions/service/DstSystemExService.java
+35
-0
IDstSystemService.java
.../java/cn/ibizlab/core/lite/service/IDstSystemService.java
+1
-0
DstSystemServiceImpl.java
.../ibizlab/core/lite/service/impl/DstSystemServiceImpl.java
+7
-0
h2_table.xml
ibzlite-core/src/main/resources/liquibase/h2_table.xml
+1
-1
DstSystemResource.java
.../src/main/java/cn/ibizlab/api/rest/DstSystemResource.java
+11
-0
未找到文件。
ibzlite-core/src/main/java/cn/ibizlab/core/extensions/service/DstSystemExService.java
0 → 100644
浏览文件 @
ca87ab45
package
cn
.
ibizlab
.
core
.
extensions
.
service
;
import
cn.ibizlab.core.lite.service.impl.DstSystemServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
cn.ibizlab.core.lite.domain.DstSystem
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.context.annotation.Primary
;
import
java.util.*
;
/**
* 实体[系统] 自定义服务对象
*/
@Slf4j
@Primary
@Service
(
"DstSystemExService"
)
public
class
DstSystemExService
extends
DstSystemServiceImpl
{
@Override
protected
Class
currentModelClass
()
{
return
com
.
baomidou
.
mybatisplus
.
core
.
toolkit
.
ReflectionKit
.
getSuperClassGenericType
(
this
.
getClass
().
getSuperclass
(),
1
);
}
/**
* 自定义行为[SyncSysModel]用户扩展
* @param et
* @return
*/
@Override
@Transactional
public
DstSystem
syncSysModel
(
DstSystem
et
)
{
return
super
.
syncSysModel
(
et
);
}
}
ibzlite-core/src/main/java/cn/ibizlab/core/lite/service/IDstSystemService.java
浏览文件 @
ca87ab45
...
...
@@ -37,6 +37,7 @@ public interface IDstSystemService extends IService<DstSystem>{
boolean
checkKey
(
DstSystem
et
)
;
boolean
save
(
DstSystem
et
)
;
void
saveBatch
(
List
<
DstSystem
>
list
)
;
DstSystem
syncSysModel
(
DstSystem
et
)
;
Page
<
DstSystem
>
searchDefault
(
DstSystemSearchContext
context
)
;
/**
*自定义查询SQL
...
...
ibzlite-core/src/main/java/cn/ibizlab/core/lite/service/impl/DstSystemServiceImpl.java
浏览文件 @
ca87ab45
...
...
@@ -165,6 +165,13 @@ public class DstSystemServiceImpl extends ServiceImpl<DstSystemMapper, DstSystem
saveOrUpdateBatch
(
list
,
batchSize
);
}
@Override
@Transactional
public
DstSystem
syncSysModel
(
DstSystem
et
)
{
//自定义代码
return
et
;
}
/**
...
...
ibzlite-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
ca87ab45
...
...
@@ -94,7 +94,7 @@
<!--输出实体[DST_SYSTEM]数据结构 -->
<changeSet
author=
"a_A_5d9d78509"
id=
"tab-dst_system-
29
-5"
>
<changeSet
author=
"a_A_5d9d78509"
id=
"tab-dst_system-
30
-5"
>
<createTable
tableName=
"IBZPSSYSTEM"
>
<column
name=
"PSSYSTEMID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_DST_SYSTEM_PSSYSTEMID"
/>
...
...
ibzlite-provider/ibzlite-provider-api/src/main/java/cn/ibizlab/api/rest/DstSystemResource.java
浏览文件 @
ca87ab45
...
...
@@ -135,6 +135,17 @@ public class DstSystemResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
true
);
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibzlite-DstSystem-SyncSysModel-all')"
)
@ApiOperation
(
value
=
"同步系统模型"
,
tags
=
{
"系统"
},
notes
=
"同步系统模型"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/dstsystems/{dstsystem_id}/syncsysmodel"
)
public
ResponseEntity
<
DstSystemDTO
>
syncSysModel
(
@PathVariable
(
"dstsystem_id"
)
String
dstsystem_id
,
@RequestBody
DstSystemDTO
dstsystemdto
)
{
DstSystem
domain
=
dstsystemMapping
.
toDomain
(
dstsystemdto
);
domain
.
setPssystemid
(
dstsystem_id
);
domain
=
dstsystemService
.
syncSysModel
(
domain
);
dstsystemdto
=
dstsystemMapping
.
toDto
(
domain
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
dstsystemdto
);
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibzlite-DstSystem-searchDefault-all')"
)
@ApiOperation
(
value
=
"获取数据集"
,
tags
=
{
"系统"
}
,
notes
=
"获取数据集"
)
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/dstsystems/fetchdefault"
)
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录