Commit a02bf463 authored by mcb's avatar mcb

no message

parent 4381a078
...@@ -32,6 +32,12 @@ public class DataDevExamplesListReq extends BasePageBean { ...@@ -32,6 +32,12 @@ public class DataDevExamplesListReq extends BasePageBean {
@ApiModelProperty(value = "任务名称") @ApiModelProperty(value = "任务名称")
private String treeName; private String treeName;
/*
* 任务ID
* */
@ApiModelProperty(value = "任务ID")
private String taskId;
/* /*
* 业务日期 * 业务日期
* */ * */
...@@ -102,4 +108,12 @@ public class DataDevExamplesListReq extends BasePageBean { ...@@ -102,4 +108,12 @@ public class DataDevExamplesListReq extends BasePageBean {
public void setBusinessTime(String businessTime) { public void setBusinessTime(String businessTime) {
this.businessTime = businessTime; this.businessTime = businessTime;
} }
public String getTaskId() {
return taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
} }
...@@ -962,6 +962,9 @@ public class DmpDevelopTaskServiceImpl implements DmpDevelopTaskService { ...@@ -962,6 +962,9 @@ public class DmpDevelopTaskServiceImpl implements DmpDevelopTaskService {
if (StringUtils.isNotBlank(req.getTreeName())) { if (StringUtils.isNotBlank(req.getTreeName())) {
params.put("taskName", req.getTreeName().trim()); params.put("taskName", req.getTreeName().trim());
} }
if (StringUtils.isNotBlank(req.getTreeName())) {
params.put("treeId", req.getTaskId());
}
List<DataDevTaskListDto> treeList = dmpDevelopTaskDao.queryTaskTreeInfo(params); List<DataDevTaskListDto> treeList = dmpDevelopTaskDao.queryTaskTreeInfo(params);
if (treeList.size() > 0 && treeList != null) { if (treeList.size() > 0 && treeList != null) {
for (DataDevTaskListDto treeDto : treeList) { for (DataDevTaskListDto treeDto : treeList) {
......
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