Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lmp_server
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
lmp
lmp_server
Commits
f10a6ef0
Commit
f10a6ef0
authored
Apr 08, 2024
by
pengxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增清洗任务名称。
parent
63816961
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
0 deletions
+20
-0
DatasetCleanMapper.xml
...a/com/yice/webadmin/app/dao/mapper/DatasetCleanMapper.xml
+3
-0
DatasetCleanDto.java
.../main/java/com/yice/webadmin/app/dto/DatasetCleanDto.java
+6
-0
DatasetClean.java
...c/main/java/com/yice/webadmin/app/model/DatasetClean.java
+5
-0
DatasetCleanVo.java
...rc/main/java/com/yice/webadmin/app/vo/DatasetCleanVo.java
+6
-0
No files found.
application-webadmin/src/main/java/com/yice/webadmin/app/dao/mapper/DatasetCleanMapper.xml
View file @
f10a6ef0
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
<resultMap
id=
"BaseResultMap"
type=
"com.yice.webadmin.app.model.DatasetClean"
>
<resultMap
id=
"BaseResultMap"
type=
"com.yice.webadmin.app.model.DatasetClean"
>
<id
column=
"clean_id"
jdbcType=
"BIGINT"
property=
"cleanId"
/>
<id
column=
"clean_id"
jdbcType=
"BIGINT"
property=
"cleanId"
/>
<result
column=
"dataset_id"
jdbcType=
"BIGINT"
property=
"datasetId"
/>
<result
column=
"dataset_id"
jdbcType=
"BIGINT"
property=
"datasetId"
/>
<result
column=
"task_name"
jdbcType=
"VARCHAR"
property=
"taskName"
/>
<result
column=
"dataset_name"
jdbcType=
"VARCHAR"
property=
"datasetName"
/>
<result
column=
"dataset_name"
jdbcType=
"VARCHAR"
property=
"datasetName"
/>
<result
column=
"start_time"
jdbcType=
"TIMESTAMP"
property=
"startTime"
/>
<result
column=
"start_time"
jdbcType=
"TIMESTAMP"
property=
"startTime"
/>
<result
column=
"clean_type"
jdbcType=
"INTEGER"
property=
"cleanType"
/>
<result
column=
"clean_type"
jdbcType=
"INTEGER"
property=
"cleanType"
/>
...
@@ -19,6 +20,7 @@
...
@@ -19,6 +20,7 @@
INSERT INTO lmp_dataset_clean
INSERT INTO lmp_dataset_clean
(clean_id,
(clean_id,
dataset_id,
dataset_id,
task_name,
dataset_name,
dataset_name,
start_time,
start_time,
clean_type,
clean_type,
...
@@ -32,6 +34,7 @@
...
@@ -32,6 +34,7 @@
<foreach
collection=
"list"
index=
"index"
item=
"item"
separator=
","
>
<foreach
collection=
"list"
index=
"index"
item=
"item"
separator=
","
>
(#{item.cleanId},
(#{item.cleanId},
#{item.datasetId},
#{item.datasetId},
#{item.taskName},
#{item.datasetName},
#{item.datasetName},
#{item.startTime},
#{item.startTime},
#{item.cleanType},
#{item.cleanType},
...
...
application-webadmin/src/main/java/com/yice/webadmin/app/dto/DatasetCleanDto.java
View file @
f10a6ef0
...
@@ -25,6 +25,12 @@ public class DatasetCleanDto {
...
@@ -25,6 +25,12 @@ public class DatasetCleanDto {
@ApiModelProperty
(
value
=
"清洗任务ID"
)
@ApiModelProperty
(
value
=
"清洗任务ID"
)
private
Long
cleanId
;
private
Long
cleanId
;
/**
* 清洗任务名称。
*/
@ApiModelProperty
(
value
=
"清洗任务名称"
)
private
String
taskName
;
/**
/**
* 清洗数据集ID。
* 清洗数据集ID。
*/
*/
...
...
application-webadmin/src/main/java/com/yice/webadmin/app/model/DatasetClean.java
View file @
f10a6ef0
...
@@ -39,6 +39,11 @@ public class DatasetClean extends BaseModel {
...
@@ -39,6 +39,11 @@ public class DatasetClean extends BaseModel {
*/
*/
private
Long
datasetId
;
private
Long
datasetId
;
/**
* 清洗任务名称。
*/
private
String
taskName
;
/**
/**
* 清洗数据集名称。
* 清洗数据集名称。
*/
*/
...
...
application-webadmin/src/main/java/com/yice/webadmin/app/vo/DatasetCleanVo.java
View file @
f10a6ef0
...
@@ -31,6 +31,12 @@ public class DatasetCleanVo {
...
@@ -31,6 +31,12 @@ public class DatasetCleanVo {
@ApiModelProperty
(
value
=
"清洗数据集ID"
)
@ApiModelProperty
(
value
=
"清洗数据集ID"
)
private
Long
datasetId
;
private
Long
datasetId
;
/**
* 清洗任务名称。
*/
@ApiModelProperty
(
value
=
"清洗任务名称"
)
private
String
taskName
;
/**
/**
* 清洗方式。
* 清洗方式。
*/
*/
...
...
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