Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jz-dmp-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姚本章
jz-dmp-service
Commits
008c0a82
Commit
008c0a82
authored
Feb 04, 2021
by
mcb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
d8b06dd8
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
137 deletions
+9
-137
DmpTableColumnController.java
...m/jz/dmp/modules/controller/DmpTableColumnController.java
+0
-28
DmpTableController.java
...ava/com/jz/dmp/modules/controller/DmpTableController.java
+0
-27
DmpTableFieldMappingController.java
...mp/modules/controller/DmpTableFieldMappingController.java
+0
-28
DmpTableFieldSchemaController.java
...dmp/modules/controller/DmpTableFieldSchemaController.java
+0
-28
DvRuleTController.java
...java/com/jz/dmp/modules/controller/DvRuleTController.java
+0
-24
DmpDevelopTaskServiceImpl.java
...z/dmp/modules/service/impl/DmpDevelopTaskServiceImpl.java
+2
-2
ExecutionFlowsMapper.xml
src/main/resources/azkabanmapper/ExecutionFlowsMapper.xml
+7
-0
No files found.
src/main/java/com/jz/dmp/modules/controller/DmpTableColumnController.java
deleted
100644 → 0
View file @
d8b06dd8
package
com
.
jz
.
dmp
.
modules
.
controller
;
import
com.jz.dmp.modules.model.DmpTableColumn
;
import
com.jz.dmp.modules.service.DmpTableColumnService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
/**
* 项目表字段(DmpTableColumn)表控制层
*
* @author Bellamy
* @since 2020-12-23 16:34:56
*/
@RestController
@RequestMapping
(
"/dmpTableColumn"
)
public
class
DmpTableColumnController
{
/**
* 服务对象
*/
@Autowired
private
DmpTableColumnService
dmpTableColumnService
;
}
\ No newline at end of file
src/main/java/com/jz/dmp/modules/controller/DmpTableController.java
deleted
100644 → 0
View file @
d8b06dd8
package
com
.
jz
.
dmp
.
modules
.
controller
;
import
com.jz.dmp.modules.model.DmpTable
;
import
com.jz.dmp.modules.service.DmpTableService
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
/**
* 项目表信息(DmpTable)表控制层
*
* @author Bellamy
* @since 2020-12-23 15:32:57
*/
@RestController
@RequestMapping
(
"dmpTable"
)
public
class
DmpTableController
{
/**
* 服务对象
*/
@Resource
private
DmpTableService
dmpTableService
;
}
\ No newline at end of file
src/main/java/com/jz/dmp/modules/controller/DmpTableFieldMappingController.java
deleted
100644 → 0
View file @
d8b06dd8
package
com
.
jz
.
dmp
.
modules
.
controller
;
import
com.jz.dmp.modules.model.DmpTableFieldMapping
;
import
com.jz.dmp.modules.service.DmpTableFieldMappingService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
/**
* 项目表字段类型映射(DmpTableFieldMapping)表控制层
*
* @author Bellamy
* @since 2020-12-23 16:34:55
*/
@RestController
@RequestMapping
(
"dmpTableFieldMapping"
)
public
class
DmpTableFieldMappingController
{
/**
* 服务对象
*/
@Autowired
private
DmpTableFieldMappingService
dmpTableFieldMappingService
;
}
\ No newline at end of file
src/main/java/com/jz/dmp/modules/controller/DmpTableFieldSchemaController.java
deleted
100644 → 0
View file @
d8b06dd8
package
com
.
jz
.
dmp
.
modules
.
controller
;
import
com.jz.dmp.modules.model.DmpTableFieldSchema
;
import
com.jz.dmp.modules.service.DmpTableFieldSchemaService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
/**
* 项目表字段类型(DmpTableFieldSchema)表控制层
*
* @author Bellamy
* @since 2020-12-23 16:34:56
*/
@RestController
@RequestMapping
(
"dmpTableFieldSchema"
)
public
class
DmpTableFieldSchemaController
{
/**
* 服务对象
*/
@Autowired
private
DmpTableFieldSchemaService
dmpTableFieldSchemaService
;
}
\ No newline at end of file
src/main/java/com/jz/dmp/modules/controller/DvRuleTController.java
deleted
100644 → 0
View file @
d8b06dd8
package
com
.
jz
.
dmp
.
modules
.
controller
;
import
com.jz.dmp.modules.service.DvRuleTService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* ???(DvRuleT)表控制层
*
* @author Bellamy
* @since 2020-12-24 10:56:18
*/
@RestController
@RequestMapping
(
"/dvRuleT"
)
public
class
DvRuleTController
{
/**
* 服务对象
*/
@Autowired
private
DvRuleTService
dvRuleTService
;
}
\ No newline at end of file
src/main/java/com/jz/dmp/modules/service/impl/DmpDevelopTaskServiceImpl.java
View file @
008c0a82
...
...
@@ -1248,7 +1248,7 @@ public class DmpDevelopTaskServiceImpl extends BaseService implements DmpDevelop
List
<
Map
>
list
=
executionFlowsMapper
.
queryExamplesLogByExecId
(
execId
);
if
(
list
.
size
()
>
0
&&
list
!=
null
)
{
list
.
forEach
(
map
->
{
map
.
put
(
"log"
,
map
.
get
(
"log"
));
//
map.put("log", map.get("log"));
});
}
return
JsonResult
.
ok
(
list
);
...
...
src/main/resources/azkabanmapper/ExecutionFlowsMapper.xml
View file @
008c0a82
...
...
@@ -192,6 +192,13 @@
<if
test=
"endTime != null and endTime != ''"
>
#{endTime} >= and from_unixtime(submit_time/1000,'%Y-%m-%d %H:%i:%s')
</if>
</select>
<!-- <resultMap type="java.util.HashMap" id="taskExamplesLog">
<result property="execId" column="exec_id" jdbcType="INTEGER"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="log" column="log" jdbcType="BLOB" typeHandler="com.jz.common.persistence.CBTHandler"/>
<result property="uploadTime" column="upload_time" jdbcType="INTEGER"/>
</resultMap>-->
<!--获取执行实例的日志详情-->
<select
id=
"queryExamplesLogByExecId"
parameterType=
"string"
resultType=
"java.util.Map"
>
select
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment