|
@@ -68,7 +68,7 @@ public class GBuildingServiceImpl extends ServicePlusImpl<GBuildingMapper, GBuil
|
|
|
LambdaQueryWrapper<GBuilding> lqw = Wrappers.lambdaQuery();
|
|
|
lqw.like(StringUtils.isNotBlank(bo.getName()), GBuilding::getName, bo.getName());
|
|
|
lqw.eq(bo.getAreaId() != null, GBuilding::getAreaId, bo.getAreaId());
|
|
|
- lqw.last(" ORDER BY CAST(NAME AS SIGNED) ASC");
|
|
|
+ lqw.last(" ORDER BY CAST(name AS SIGNED) ASC ,name");
|
|
|
return lqw;
|
|
|
}
|
|
|
|