|
|
|
|
@ -1,16 +1,12 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.convert.ip;
|
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.framework.ip.core.Area;
|
|
|
|
|
import cn.iocoder.yudao.framework.ip.core.enums.AreaTypeEnum;
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.ip.vo.AreaNodeRespVO;
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.ip.vo.AreaNodeSimpleRespVO;
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.app.ip.vo.AppAreaNodeRespVO;
|
|
|
|
|
import org.mapstruct.Mapper;
|
|
|
|
|
import org.mapstruct.Mapping;
|
|
|
|
|
import org.mapstruct.factory.Mappers;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface AreaConvert {
|
|
|
|
|
@ -19,15 +15,6 @@ public interface AreaConvert {
|
|
|
|
|
|
|
|
|
|
List<AreaNodeRespVO> convertList(List<Area> list);
|
|
|
|
|
|
|
|
|
|
List<AreaNodeSimpleRespVO> convertList2(List<Area> list);
|
|
|
|
|
|
|
|
|
|
@Mapping(source = "type", target = "leaf")
|
|
|
|
|
AreaNodeSimpleRespVO convert(Area area);
|
|
|
|
|
|
|
|
|
|
default Boolean convertAreaType(Integer type) {
|
|
|
|
|
return Objects.equals(AreaTypeEnum.DISTRICT.getType(), type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<AppAreaNodeRespVO> convertList3(List<Area> list);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|