mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 04:08:43 +08:00 
			
		
		
		
	!342 同步最新版本的商城进度
Merge pull request !342 from 芋道源码/feature/1.8.0-uniapp
This commit is contained in:
		@@ -0,0 +1,5 @@
 | 
			
		||||
### 获得地区树
 | 
			
		||||
GET {{baseUrl}}/system/area/tree
 | 
			
		||||
Authorization: Bearer {{token}}
 | 
			
		||||
tenant-id: {{adminTenentId}}
 | 
			
		||||
 | 
			
		||||
@@ -0,0 +1,50 @@
 | 
			
		||||
package cn.iocoder.yudao.module.system.controller.admin.ip;
 | 
			
		||||
 | 
			
		||||
import cn.hutool.core.lang.Assert;
 | 
			
		||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
 | 
			
		||||
import cn.iocoder.yudao.framework.ip.core.Area;
 | 
			
		||||
import cn.iocoder.yudao.framework.ip.core.utils.AreaUtils;
 | 
			
		||||
import cn.iocoder.yudao.framework.ip.core.utils.IPUtils;
 | 
			
		||||
import cn.iocoder.yudao.module.system.controller.admin.ip.vo.AreaNodeRespVO;
 | 
			
		||||
import cn.iocoder.yudao.module.system.convert.ip.AreaConvert;
 | 
			
		||||
import io.swagger.annotations.Api;
 | 
			
		||||
import io.swagger.annotations.ApiImplicitParam;
 | 
			
		||||
import io.swagger.annotations.ApiOperation;
 | 
			
		||||
import org.springframework.validation.annotation.Validated;
 | 
			
		||||
import org.springframework.web.bind.annotation.GetMapping;
 | 
			
		||||
import org.springframework.web.bind.annotation.RequestMapping;
 | 
			
		||||
import org.springframework.web.bind.annotation.RequestParam;
 | 
			
		||||
import org.springframework.web.bind.annotation.RestController;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
 | 
			
		||||
 | 
			
		||||
@Api(tags = "管理后台 - 地区")
 | 
			
		||||
@RestController
 | 
			
		||||
@RequestMapping("/system/area")
 | 
			
		||||
@Validated
 | 
			
		||||
public class AreaController {
 | 
			
		||||
 | 
			
		||||
    @GetMapping("/tree")
 | 
			
		||||
    @ApiOperation("获得地区树")
 | 
			
		||||
    public CommonResult<List<AreaNodeRespVO>> getAreaTree() {
 | 
			
		||||
        Area area = AreaUtils.getArea(Area.ID_CHINA);
 | 
			
		||||
        Assert.notNull(area, "获取不到中国");
 | 
			
		||||
        return success(AreaConvert.INSTANCE.convertList(area.getChildren()));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @GetMapping("/get-by-ip")
 | 
			
		||||
    @ApiOperation("获得 IP 对应的地区名")
 | 
			
		||||
    @ApiImplicitParam(name = "ip", value = "IP", required = true, dataTypeClass = String.class)
 | 
			
		||||
    public CommonResult<String> getAreaByIp(@RequestParam("ip") String ip) {
 | 
			
		||||
        // 获得城市
 | 
			
		||||
        Area area = IPUtils.getArea(ip);
 | 
			
		||||
        if (area == null) {
 | 
			
		||||
            return success("未知");
 | 
			
		||||
        }
 | 
			
		||||
        // 格式化返回
 | 
			
		||||
        return success(AreaUtils.format(area.getId()));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,24 @@
 | 
			
		||||
package cn.iocoder.yudao.module.system.controller.admin.ip.vo;
 | 
			
		||||
 | 
			
		||||
import io.swagger.annotations.ApiModel;
 | 
			
		||||
import io.swagger.annotations.ApiModelProperty;
 | 
			
		||||
import lombok.Data;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
@ApiModel("管理后台 - 地区节点 Response VO")
 | 
			
		||||
@Data
 | 
			
		||||
public class AreaNodeRespVO {
 | 
			
		||||
 | 
			
		||||
    @ApiModelProperty(value = "编号", required = true, example = "110000")
 | 
			
		||||
    private Integer id;
 | 
			
		||||
 | 
			
		||||
    @ApiModelProperty(value = "名字", required = true, example = "北京")
 | 
			
		||||
    private String name;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 子节点
 | 
			
		||||
     */
 | 
			
		||||
    private List<AreaNodeRespVO> children;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,17 @@
 | 
			
		||||
package cn.iocoder.yudao.module.system.convert.ip;
 | 
			
		||||
 | 
			
		||||
import cn.iocoder.yudao.framework.ip.core.Area;
 | 
			
		||||
import cn.iocoder.yudao.module.system.controller.admin.ip.vo.AreaNodeRespVO;
 | 
			
		||||
import org.mapstruct.Mapper;
 | 
			
		||||
import org.mapstruct.factory.Mappers;
 | 
			
		||||
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
@Mapper
 | 
			
		||||
public interface AreaConvert {
 | 
			
		||||
 | 
			
		||||
    AreaConvert INSTANCE = Mappers.getMapper(AreaConvert.class);
 | 
			
		||||
 | 
			
		||||
    List<AreaNodeRespVO> convertList(List<Area> list);
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -113,7 +113,7 @@ public class SmsSendServiceImpl implements SmsSendService {
 | 
			
		||||
        SmsChannelDO channelDO = smsChannelService.getSmsChannel(channelId);
 | 
			
		||||
        // 短信模板不存在
 | 
			
		||||
        if (channelDO == null) {
 | 
			
		||||
            throw exception(SMS_SEND_TEMPLATE_NOT_EXISTS);
 | 
			
		||||
            throw exception(SMS_CHANNEL_NOT_EXISTS);
 | 
			
		||||
        }
 | 
			
		||||
        return channelDO;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user