Commit 363094b2 authored by 徐俊's avatar 徐俊

xujun

parent 625704a5
......@@ -148,4 +148,7 @@ public class ComProjectAuditQueryVO extends PaginationVO{
@ApiModelProperty(value = "项目组Id", position = 4)
@Length(max=36, message = "项目组Id不能大于36")
private String groupId;
/** 人才类别 */
@ApiModelProperty(value = "人才类别", position = 41)
private String talentCategory;
}
......@@ -136,6 +136,9 @@ public class ComProjectAuditServiceImpl extends BaseServiceImpl<ComProjectAuditD
if (Objects.nonNull(vo.getProjState())) {
criteria.eq("c.proj_state", vo.getProjState());
}
if (Objects.nonNull(vo.getTalentCategory())) {
criteria.eq("c.talent_category", vo.getTalentCategory());
}
}
......
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