Commit e5770358 authored by wangxl's avatar wangxl

1

parent 6d457cea
......@@ -89,4 +89,13 @@ public class ComTalentAssignQueryVO extends PaginationVO {
/** 项目组Id */
@ApiModelProperty(value = "项目组Id", position = 6)
private String groupId;
/** 专家姓名 */
@ExcelProperty("专家姓名")
@ApiModelProperty(value = "姓名", position = 3)
private String expertName;
/** 专家电话 */
@ApiModelProperty(value = "专家电话", position = 10)
private String expertMobile;
}
......@@ -75,6 +75,9 @@ public class ComTalentAssignServiceImpl extends BaseServiceImpl<ComTalentAssignD
if (Objects.nonNull(vo.getPersonName())) {
criteria.like("f.person_name", vo.getPersonName());
}
if (Objects.nonNull(vo.getExpertName())) {
criteria.like("c.person_name", vo.getExpertName());
}
if (Objects.nonNull(vo.getSex())) {
criteria.eq("f.sex", vo.getSex());
}
......
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