Commit f10a6ef0 authored by pengxin's avatar pengxin

新增清洗任务名称。

parent 63816961
......@@ -4,6 +4,7 @@
<resultMap id="BaseResultMap" type="com.yice.webadmin.app.model.DatasetClean">
<id column="clean_id" jdbcType="BIGINT" property="cleanId"/>
<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="start_time" jdbcType="TIMESTAMP" property="startTime"/>
<result column="clean_type" jdbcType="INTEGER" property="cleanType"/>
......@@ -19,6 +20,7 @@
INSERT INTO lmp_dataset_clean
(clean_id,
dataset_id,
task_name,
dataset_name,
start_time,
clean_type,
......@@ -32,6 +34,7 @@
<foreach collection="list" index="index" item="item" separator=",">
(#{item.cleanId},
#{item.datasetId},
#{item.taskName},
#{item.datasetName},
#{item.startTime},
#{item.cleanType},
......
......@@ -25,6 +25,12 @@ public class DatasetCleanDto {
@ApiModelProperty(value = "清洗任务ID")
private Long cleanId;
/**
* 清洗任务名称。
*/
@ApiModelProperty(value = "清洗任务名称")
private String taskName;
/**
* 清洗数据集ID。
*/
......
......@@ -39,6 +39,11 @@ public class DatasetClean extends BaseModel {
*/
private Long datasetId;
/**
* 清洗任务名称。
*/
private String taskName;
/**
* 清洗数据集名称。
*/
......
......@@ -31,6 +31,12 @@ public class DatasetCleanVo {
@ApiModelProperty(value = "清洗数据集ID")
private Long datasetId;
/**
* 清洗任务名称。
*/
@ApiModelProperty(value = "清洗任务名称")
private String taskName;
/**
* 清洗方式。
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment