|
@@ -110,6 +110,9 @@ public class BaseExpertController extends BaseController {
|
|
|
if (!ObjectUtils.isEmpty(baseExpertVo.getMajorGrade())) {
|
|
|
lw.eq(BaseExpert::getMajorGrade, baseExpertVo.getMajorGrade());
|
|
|
}
|
|
|
+ if (!ObjectUtils.isEmpty(baseExpertVo.getVarietyPurchase())) {
|
|
|
+ lw.eq(BaseExpert::getVarietyPurchase, baseExpertVo.getVarietyPurchase());
|
|
|
+ }
|
|
|
lw.orderBy(true, false, BaseExpert::getCreateTime);
|
|
|
List<BaseExpert> list = baseExpertService.list(lw);
|
|
|
List<BaseExpertVo> listVo = BeanUtils.entityListToVOList(list, BaseExpertVo.class);
|