游客查询标签状态
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit
This commit is contained in:
parent
56bfc0737f
commit
a854c41f24
|
@ -214,8 +214,14 @@ public class ProjectDAO {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public List<ProjectDO> tget(Integer id) {
|
public List<ProjectDO> tget(Integer id, List<String> tags, Integer isFinish) {
|
||||||
log.info("DAO层");
|
log.info("DAO层");
|
||||||
|
if(isFinish != null){
|
||||||
|
return projectMapper.tgetByIsfinish(isFinish);
|
||||||
|
}
|
||||||
|
if(tags != null && !tags.isEmpty()){
|
||||||
|
return projectMapper.tgetByTags(tags);
|
||||||
|
}
|
||||||
return projectMapper.tget(id);
|
return projectMapper.tget(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user