|  |  |  | 
|---|
|  |  |  | Utils.MP.blankToNull(pageWrap.getModel()); | 
|---|
|  |  |  | YwPatrolLine model = pageWrap.getModel(); | 
|---|
|  |  |  | queryWrapper.selectAll(YwPatrolLine.class) | 
|---|
|  |  |  | .select(" ( select count(1) from  yw_line_point y where y.LINE_ID = yw_patrol_line.id ) as lineAmount ") | 
|---|
|  |  |  | .select(" ( select count(1) from  yw_line_point y where y.LINE_ID = t.id ) as lineAmount ") | 
|---|
|  |  |  | .like(Objects.nonNull(model)&&StringUtils.isNotBlank(model.getName()),YwPatrolLine::getName,model.getName()) | 
|---|
|  |  |  | .eq(YwPatrolLine::getIsdeleted,Constants.ZERO) | 
|---|
|  |  |  | .orderByDesc(YwPatrolLine::getCreateDate) | 
|---|