|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.ruoyi.web.controller.manager;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
|
|
import com.ruoyi.system.domain.SysArea;
|
|
|
|
|
import com.ruoyi.system.service.SysAreaService;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@ -26,15 +27,15 @@ public class SysAreaManager {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<SysArea> getSysAreaList(Long parentId) {
|
|
|
|
|
public List<SysArea> getSysAreaList(String parentId) {
|
|
|
|
|
return sysAreaService.lambdaQuery()
|
|
|
|
|
.eq(SysArea::getParentId, Objects.isNull(parentId) ? 29 : parentId)
|
|
|
|
|
.eq(SysArea::getParentId, StringUtils.isEmpty(parentId) ? "29" : parentId)
|
|
|
|
|
.orderByAsc(SysArea::getAreaCode)
|
|
|
|
|
.list();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getAreaName(Long id) {
|
|
|
|
|
public String getAreaName(String id) {
|
|
|
|
|
return sysAreaService.lambdaQuery()
|
|
|
|
|
.eq(SysArea::getId,id).one().getName();
|
|
|
|
|
}
|
|
|
|
|