chenlei1231 5 months ago
parent
commit
82cf4b3583
25 changed files with 1273 additions and 21 deletions
  1. 11 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/constant/EnquiryDistributeTypeConstant.java
  2. 198 4
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/controller/AdwebEnquiryController.java
  3. 5 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/mapper/AdwebEnquiryMapper.java
  4. 17 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/mapper/xml/AdwebEnquiryMapper.xml
  5. 5 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/IAdwebEnquiryService.java
  6. 12 3
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebEnquiryServiceImpl.java
  7. 0 11
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebPublicBlackEmailServiceImpl.java
  8. 2 1
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/mapper/SiteUserPermissionMapper.java
  9. 0 2
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/service/impl/SiteUserPermissionServiceImpl.java
  10. 6 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/system/service/SysAdwebApi.java
  11. 16 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/system/service/impl/SysAdwebApiImpl.java
  12. 594 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/controller/AdwebUserCountryController.java
  13. 14 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/DistributeCountryParam.java
  14. 21 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/SubUser.java
  15. 21 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/TreeOption.java
  16. 54 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/entity/AdwebCountry.java
  17. 57 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/entity/AdwebUserCountry.java
  18. 14 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/AdwebCountryMapper.java
  19. 33 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/AdwebUserCountryMapper.java
  20. 5 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/xml/AdwebCountryMapper.xml
  21. 55 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/xml/AdwebUserCountryMapper.xml
  22. 14 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/IAdwebCountryService.java
  23. 33 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/IAdwebUserCountryService.java
  24. 18 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/impl/AdwebCountryServiceImpl.java
  25. 68 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/impl/AdwebUserCountryServiceImpl.java

+ 11 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/constant/EnquiryDistributeTypeConstant.java

@@ -0,0 +1,11 @@
+package org.jeecg.modules.adweb.enquiry.constant;
+
+public class EnquiryDistributeTypeConstant {
+
+    public static final String MASTER = "MASTER";
+
+    public static final String ALL = "ALL";
+
+    public static final String REGION = "REGION";
+
+}

+ 198 - 4
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/controller/AdwebEnquiryController.java

@@ -1,5 +1,6 @@
 package org.jeecg.modules.adweb.enquiry.controller;
 
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -19,6 +20,7 @@ import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.aspect.annotation.AutoLog;
 import org.jeecg.common.system.base.controller.JeecgController;
 import org.jeecg.common.system.vo.DictModel;
+import org.jeecg.common.system.vo.DictPropertyModel;
 import org.jeecg.common.system.vo.LoginUser;
 import org.jeecg.common.util.FastJsonUtil;
 import org.jeecg.modules.adweb.common.constant.AdwebConstant;
@@ -38,6 +40,7 @@ import org.jeecg.modules.adweb.system.service.SysAdwebApi;
 import org.jeecg.modules.system.service.ISysDictService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
+import org.springframework.format.annotation.DateTimeFormat;
 import org.springframework.security.access.prepost.PreAuthorize;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.servlet.ModelAndView;
@@ -96,10 +99,6 @@ public class AdwebEnquiryController extends JeecgController<AdwebEnquiry, IAdweb
                                                      @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
                                                      @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
                                    String principalUid) {
-//
-//		String message = "Hello World";
-//		rocketMQTemplate.convertAndSend("TEST", message);
-//		System.out.println("Message sent: " + message);
 
         if (sysAdwebApi.isNotOwnSite(searchDto.getSiteId())) {
             return Result.OK(new Page<>());
@@ -334,4 +333,199 @@ public class AdwebEnquiryController extends JeecgController<AdwebEnquiry, IAdweb
         return super.importExcel(request, response, AdwebEnquiry.class);
     }
 
+    /**
+     * 获取需要轮流询盘的站点code
+     */
+    @GetMapping("/getTurnInquiryCode")
+    public Result<?> getTurnInquiryCode() {
+        List<DictPropertyModel> siteRes = sysAdwebApi.queryDictInfoByDictCode("turn_inquiry_site_code");
+        if (ListUtil.notEmpty(siteRes)){
+            return Result.OK(siteRes);
+        }
+        return null;
+    }
+
+    /**
+     * @return
+     */
+    @GetMapping(value = "/getEnquiryCatalog")
+    public Result<?> getEnquiryCatalog() {
+        List<DictPropertyModel> userEffectiveDict = sysAdwebApi.queryDictInfoByDictCode(AdwebConstant.ENQUIRY_EFFECTIVE);
+        return Result.OK(FastJsonUtil.toJSONString(userEffectiveDict));
+    }
+
+    /**
+     * 获取不同状态询盘的数量
+     *
+     * @param siteId 站点id
+     * @return 数量信息
+     */
+    @GetMapping("getEnquiryNums")
+    public Result<?> getEnquiryNums(Integer siteId,
+                                 String dateType,
+                                 @DateTimeFormat(pattern = "yyyy-MM-dd") Date start,
+                                 @DateTimeFormat(pattern = "yyyy-MM-dd") Date end) {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        if (StringUtils.isNotBlank(dateType)) {
+            Map<String, Date> map = dealDateType(dateType);
+            start = map.get("start");
+            end = map.get("end");
+        } else {
+            if (end != null) {
+                end = DateUtil.addDays(end, 1);
+            }
+        }
+
+        List<Integer> siteIds = null;
+        if (siteId != null) {
+            String siteCode = adwebSiteService.getSiteCodeById(siteId);
+            QueryWrapper<AdwebSite> queryWrapper = new QueryWrapper<>();
+            queryWrapper.eq("code", siteCode).or().eq("parent_group_code", siteCode);
+            queryWrapper.ne("status", 0);
+            List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+            siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+        } else {
+            if (sysAdwebApi.isAdmin()) {
+                QueryWrapper<AdwebSite> queryWrapper = new QueryWrapper<>();
+                queryWrapper.ne("status", 0);
+                List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+                siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+            } else if (sysAdwebApi.isOem()) {
+                List<String> oemGroupUids = sysAdwebApi.getOemGroupUids();
+                List<String> codeList = siteUserPermissionService.getSiteCodeListByUids(oemGroupUids);
+                LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
+                queryWrapper.in(AdwebSite::getCode, codeList);
+                queryWrapper.ne(AdwebSite::getStatus, 0);
+                List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+                siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+            } else {
+                List<String> codeList = siteUserPermissionService.getSiteCodeList(loginUser.getId());
+                LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
+                queryWrapper.in(AdwebSite::getCode, codeList);
+                queryWrapper.ne(AdwebSite::getStatus, 0);
+                List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+                siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+            }
+        }
+
+        String principalUid = null;
+        if (sysAdwebApi.isAdwebSubVip()) {
+            principalUid = loginUser.getId();
+        }
+
+        QueryWrapper<AdwebEnquiry> enquiryQueryWrapper = new QueryWrapper<>();
+        enquiryQueryWrapper.eq("status", 1);
+        if (start != null) {
+            enquiryQueryWrapper.ge("record_ctime", start);
+        }
+        if (end != null) {
+            enquiryQueryWrapper.lt("record_ctime", end);
+        }
+        if (siteIds != null) {
+            enquiryQueryWrapper.in("site_id", siteIds);
+        }
+        if (StringUtils.isNotBlank(principalUid)) {
+            String finalPrincipalUid = principalUid;
+            enquiryQueryWrapper.and(wrapper -> wrapper.eq("principal_uid", finalPrincipalUid).or().eq("principal_uid", "ALL"));
+        }
+        enquiryQueryWrapper.ne("user_effective", 0);
+        int all = (int) adwebEnquiryService.count(enquiryQueryWrapper);
+
+        QueryWrapper<AdwebEnquiry> enquiryQueryWrapper1 = new QueryWrapper<>();
+        enquiryQueryWrapper1.eq("status", 1);
+        if (start != null) {
+            enquiryQueryWrapper1.ge("record_ctime", start);
+        }
+        if (end != null) {
+            enquiryQueryWrapper1.lt("record_ctime", end);
+        }
+        if (siteIds != null) {
+            enquiryQueryWrapper1.in("site_id", siteIds);
+        }
+        enquiryQueryWrapper1.eq("read_status", 0);
+        if (StringUtils.isNotBlank(principalUid)) {
+            String finalPrincipalUid = principalUid;
+            enquiryQueryWrapper1.and(wrapper -> wrapper.eq("principal_uid", finalPrincipalUid).or().eq("principal_uid", "ALL"));
+        }
+        enquiryQueryWrapper1.ne("user_effective", 0);
+        int noRead = (int) adwebEnquiryService.count(enquiryQueryWrapper1);
+
+        QueryWrapper<AdwebEnquiry> enquiryQueryWrapper2 = new QueryWrapper<>();
+        enquiryQueryWrapper2.eq("status", 1);
+        if (start != null) {
+            enquiryQueryWrapper2.ge("record_ctime", start);
+        }
+        if (end != null) {
+            enquiryQueryWrapper2.lt("record_ctime", end);
+        }
+        if (siteIds != null) {
+            enquiryQueryWrapper2.in("site_id", siteIds);
+        }
+        enquiryQueryWrapper2.eq("user_effective", 1);
+        if (StringUtils.isNotBlank(principalUid)) {
+            String finalPrincipalUid = principalUid;
+            enquiryQueryWrapper2.and(wrapper -> wrapper.eq("principal_uid", finalPrincipalUid).or().eq("principal_uid", "ALL"));
+        }
+        enquiryQueryWrapper2.ne("user_effective", 0);
+        int product = (int) adwebEnquiryService.count(enquiryQueryWrapper2);
+
+        QueryWrapper<AdwebEnquiry> enquiryQueryWrapper3 = new QueryWrapper<>();
+        enquiryQueryWrapper3.eq("status", 1);
+        if (start != null) {
+            enquiryQueryWrapper3.ge("record_ctime", start);
+        }
+        if (end != null) {
+            enquiryQueryWrapper3.lt("record_ctime", end);
+        }
+        if (siteIds != null) {
+            enquiryQueryWrapper3.in("site_id", siteIds);
+        }
+        enquiryQueryWrapper3.eq("user_effective", 2);
+        if (StringUtils.isNotBlank(principalUid)) {
+            String finalPrincipalUid = principalUid;
+            enquiryQueryWrapper3.and(wrapper -> wrapper.eq("principal_uid", finalPrincipalUid).or().eq("principal_uid", "ALL"));
+        }
+        enquiryQueryWrapper3.ne("user_effective", 0);
+        int wait = (int) adwebEnquiryService.count(enquiryQueryWrapper3);
+
+        Map<String, Integer> map = new HashMap<>();
+        map.put("all", all);
+        map.put("noRead", noRead);
+        map.put("product", product);
+        map.put("wait", wait);
+
+        return Result.OK(map);
+    }
+
+    /**
+     * 特殊时间数据处理
+     *
+     * @param dateType 时间
+     */
+    private Map<String, Date> dealDateType(String dateType) {
+        Date now = new Date();
+        Date start = null;
+        Date end = null;
+        if ("yesterday".equals(dateType)) {
+            start = DateUtil.getTodayZeroTime(DateUtil.addDays(now, -1));
+            end = DateUtil.getTodayZeroTime(now);
+        }
+        if ("today".equals(dateType)) {
+            start = DateUtil.getTodayZeroTime(now);
+            end = DateUtil.getTmrZeroTime(now);
+        }
+        if ("sevenDay".equals(dateType)) {
+            end = DateUtil.getTmrZeroTime(now);
+            start = DateUtil.addDays(end, -7);
+        }
+        if ("thirtyDay".equals(dateType)) {
+            end = DateUtil.getTmrZeroTime(now);
+            start = DateUtil.addDays(end, -30);
+        }
+        Map<String, Date> map = new HashMap<>();
+        map.put("start", start);
+        map.put("end", end);
+        return map;
+    }
+
 }

+ 5 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/mapper/AdwebEnquiryMapper.java

@@ -38,4 +38,9 @@ public interface AdwebEnquiryMapper extends BaseMapper<AdwebEnquiry> {
                                                     @Param("readStatus") Integer readStatus,
                                                     @Param("principalUid") String principalUid,
                                                     @Param("selfPrincipalUid") String selfPrincipalUid);
+
+    /**
+     * 根据地区更新询盘跟进人
+     */
+    void updatePrincipalUidByRegion(Integer siteId, List<Integer> siteIds);
 }

+ 17 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/mapper/xml/AdwebEnquiryMapper.xml

@@ -109,5 +109,22 @@
         t1.record_ctime DESC
     </select>
 
+    <update id="updatePrincipalUidByRegion">
+        update
+        adweb_enquiry t1,
+        admp_country t2,
+        adweb_user_country t3
+        set
+        t1.principal_uid = t3.uid
+        where
+        t1.country_code = t2.country_iso_code
+        and t2.geoname_id = t3.country_id
+        and t1.site_id IN
+        <foreach collection="siteIds" item="siteId" open="(" close=")" separator=",">
+            #{siteId}
+        </foreach>
+        and t3.site_id = #{siteId}
+        and t1.principal_type != 1
+    </update>
 
 </mapper>

+ 5 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/IAdwebEnquiryService.java

@@ -21,4 +21,9 @@ public interface IAdwebEnquiryService extends IService<AdwebEnquiry> {
      * 返回用户名称
      */
     void returnSalesperson (String siteCode,String inquiryId,String sales);
+
+    /**
+     * 根据地区更新询盘跟进人
+     */
+    void updatePrincipalUidByRegion(Integer siteId);
 }

+ 12 - 3
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebEnquiryServiceImpl.java

@@ -12,10 +12,8 @@ import jakarta.annotation.Resource;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang.StringUtils;
 import org.jeecg.common.constant.CacheConstant;
-import org.jeecg.common.system.vo.DictModel;
 import org.jeecg.common.system.vo.DictPropertyModel;
 import org.jeecg.common.util.FastJsonUtil;
-
 import org.jeecg.modules.adweb.common.constant.NumConstant;
 import org.jeecg.modules.adweb.common.dto.CountryAreaApiDto;
 import org.jeecg.modules.adweb.common.service.FeishuService;
@@ -48,7 +46,6 @@ import org.springframework.stereotype.Service;
 import org.springframework.web.client.RestTemplate;
 
 import java.util.*;
-import java.util.function.BiConsumer;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
@@ -64,6 +61,9 @@ import java.util.stream.Collectors;
 public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, AdwebEnquiry> implements IAdwebEnquiryService {
 
     @Resource
+    private AdwebEnquiryMapper adwebEnquiryMapper;
+
+    @Resource
     @Lazy
     private ISysUserService sysUserService;
 
@@ -1759,4 +1759,13 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
         restTemplate.exchange(url, HttpMethod.POST, entity, String.class);
         log.info("返回跟进人名称结束");
     }
+
+    /**
+     * 根据地区更新询盘跟进人
+     */
+    @Override
+    public void updatePrincipalUidByRegion(Integer siteId) {
+        List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(siteId);
+        adwebEnquiryMapper.updatePrincipalUidByRegion(siteId, siteIds);
+    }
 }

+ 0 - 11
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/service/impl/AdwebPublicBlackEmailServiceImpl.java

@@ -1,27 +1,16 @@
 package org.jeecg.modules.adweb.enquiry.service.impl;
 
-import cn.hutool.core.date.DateUtil;
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
-import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import jakarta.annotation.Resource;
 import lombok.extern.slf4j.Slf4j;
-import org.jeecg.common.util.RedisUtil;
-import org.jeecg.modules.adweb.enquiry.entity.AdwebEnquiry;
 import org.jeecg.modules.adweb.enquiry.entity.AdwebPublicBlackEmail;
-import org.jeecg.modules.adweb.enquiry.entity.AdwebPublicBlackIp;
 import org.jeecg.modules.adweb.enquiry.mapper.AdwebPublicBlackEmailMapper;
-import org.jeecg.modules.adweb.enquiry.service.IAdwebEnquiryService;
 import org.jeecg.modules.adweb.enquiry.service.IAdwebPublicBlackEmailService;
-import org.jeecg.modules.adweb.enquiry.service.IAdwebPublicBlackIpService;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
 
-import java.util.*;
-import java.util.stream.Collectors;
-
 
 /**
  * @Description: 询盘公共邮箱黑名单

+ 2 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/entity/SiteUserPermissionMapper.java → jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/mapper/SiteUserPermissionMapper.java

@@ -1,6 +1,7 @@
-package org.jeecg.modules.adweb.site.entity;
+package org.jeecg.modules.adweb.site.mapper;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.jeecg.modules.adweb.site.entity.AdwebSitePermission;
 
 /**
  * @Description: 站点和用户的中间表

+ 0 - 2
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/site/service/impl/SiteUserPermissionServiceImpl.java

@@ -4,12 +4,10 @@ package org.jeecg.modules.adweb.site.service.impl;
 import com.baomidou.mybatisplus.core.conditions.Wrapper;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import lombok.extern.slf4j.Slf4j;
 import org.jeecg.modules.adweb.common.util.ListUtil;
 import org.jeecg.modules.adweb.site.entity.AdwebSitePermission;
 import org.jeecg.modules.adweb.site.entity.AdwebSiteUserPermission;
-import org.jeecg.modules.adweb.site.entity.SiteUserPermissionMapper;
 import org.jeecg.modules.adweb.site.service.ISitePermissionService;
 import org.jeecg.modules.adweb.site.service.ISiteUserPermissionService;
 import org.springframework.beans.factory.annotation.Autowired;

+ 6 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/system/service/SysAdwebApi.java

@@ -27,6 +27,12 @@ public interface SysAdwebApi {
      */
     boolean isNotOwnSite(String siteCode);
 
+
+    /**
+     * 判断一个用户是否是adweb会员
+     */
+    boolean isAdwebVip();
+
     /**
      * 判断一个用户是否是adweb子会员
      */

+ 16 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/system/service/impl/SysAdwebApiImpl.java

@@ -171,6 +171,22 @@ public class SysAdwebApiImpl implements SysAdwebApi {
     }
 
     /**
+     * 判断一个用户是否是adweb会员
+     */
+    @Override
+    public boolean isAdwebVip() {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        String username = sysUser.getUsername();
+        List<String> roles = sysBaseAPI.getRolesByUsername(username);
+        for (String role : roles) {
+            if ("adweb_vip".equals(role)) {
+                return true;
+            }
+        }
+        return false;
+    }
+
+    /**
      * @return
      */
     @Override

+ 594 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/controller/AdwebUserCountryController.java

@@ -0,0 +1,594 @@
+package org.jeecg.modules.adweb.userCountry.controller;
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import io.swagger.v3.oas.annotations.Operation;
+import io.swagger.v3.oas.annotations.tags.Tag;
+import jakarta.annotation.Resource;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletResponse;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.SecurityUtils;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.aspect.annotation.AutoLog;
+import org.jeecg.common.system.api.ISysBaseAPI;
+import org.jeecg.common.system.base.controller.JeecgController;
+import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.common.system.vo.LoginUser;
+import org.jeecg.modules.adweb.common.util.ListUtil;
+import org.jeecg.modules.adweb.enquiry.constant.EnquiryDistributeTypeConstant;
+import org.jeecg.modules.adweb.enquiry.entity.AdwebEnquiry;
+import org.jeecg.modules.adweb.enquiry.service.IAdwebEnquiryService;
+import org.jeecg.modules.adweb.site.entity.AdwebSite;
+import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
+import org.jeecg.modules.adweb.system.service.SysAdwebApi;
+import org.jeecg.modules.adweb.userCountry.dto.DistributeCountryParam;
+import org.jeecg.modules.adweb.userCountry.dto.SubUser;
+import org.jeecg.modules.adweb.userCountry.dto.TreeOption;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebCountry;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebUserCountry;
+import org.jeecg.modules.adweb.userCountry.mapper.AdwebUserCountryMapper;
+import org.jeecg.modules.adweb.userCountry.service.IAdwebCountryService;
+import org.jeecg.modules.adweb.userCountry.service.IAdwebUserCountryService;
+import org.jeecg.modules.system.entity.SysUser;
+import org.jeecg.modules.system.service.ISysUserService;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.servlet.ModelAndView;
+
+import java.util.*;
+import java.util.stream.Collectors;
+
+/**
+ * @Description: adweb_user_country
+ * @Author: jeecg-boot
+ * @Date: 2022-08-19
+ * @Version: V1.0
+ */
+@Tag(name = "adweb_user_country")
+@RestController
+@RequestMapping("/usercountry")
+@Slf4j
+public class AdwebUserCountryController extends JeecgController<AdwebUserCountry, IAdwebUserCountryService> {
+
+    @Resource
+    private IAdwebUserCountryService adwebUserCountryService;
+
+    @Resource
+    private IAdwebSiteService adwebSiteService;
+
+    @Resource
+    private AdwebUserCountryMapper adwebUserCountryMapper;
+
+    @Resource
+    private IAdwebCountryService admpCountryService;
+
+    @Resource
+    private IAdwebEnquiryService adwebEnquiryService;
+
+    @Resource
+    private ISysBaseAPI sysBaseAPI;
+
+    @Resource
+    private SysAdwebApi sysAdwebApi;
+
+    @Resource
+    private ISysUserService sysUserService;
+
+
+    /**
+     * 分页列表查询
+     *
+     * @param adwebUserCountry
+     * @param pageNo
+     * @param pageSize
+     * @param req
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-分页列表查询")
+    @Operation(summary = "adweb_user_country-分页列表查询")
+    @GetMapping(value = "/list")
+    public Result<?> queryPageList(AdwebUserCountry adwebUserCountry,
+                                   @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+                                   @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
+                                   HttpServletRequest req) {
+        QueryWrapper<AdwebUserCountry> queryWrapper = QueryGenerator.initQueryWrapper(adwebUserCountry, req.getParameterMap());
+        Page<AdwebUserCountry> page = new Page<AdwebUserCountry>(pageNo, pageSize);
+        IPage<AdwebUserCountry> pageList = adwebUserCountryService.page(page, queryWrapper);
+        return Result.OK(pageList);
+    }
+
+    /**
+     * 查询未分配地区
+     */
+    @GetMapping(value = "/undistribute")
+    public Result<?> undistribute() {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        QueryWrapper<AdwebUserCountry> queryWrapper = new QueryWrapper<>();
+        queryWrapper.eq("master_uid", loginUser.getId());
+        queryWrapper.eq("status", 1);
+        List<AdwebUserCountry> userCountries = adwebUserCountryService.list(queryWrapper);
+        List<AdwebCountry> countries = null;
+        if (ListUtil.isEmpty(userCountries)) {
+
+        }
+        return Result.OK();
+    }
+
+    /**
+     * 获取子账户列表
+     */
+    @AutoLog(value = "询盘管理-询盘分配-子账户列表")
+    @GetMapping(value = "/subAccounts")
+    public Result<?> subAccounts(@RequestParam(name = "siteId") Integer siteId,
+                                 @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+                                 @RequestParam(name = "pageSize", defaultValue = "15") Integer pageSize) {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(siteId);
+        Page<SubUser> page = new Page<>(pageNo, pageSize);
+        IPage<SubUser> pageList = adwebUserCountryMapper.getSubUserList(page, loginUser.getId(), siteIds);
+        QueryWrapper<AdwebEnquiry> enquiryQueryWrapper = new QueryWrapper<>();
+        enquiryQueryWrapper.eq("status", 1);
+        enquiryQueryWrapper.in("site_id", siteIds);
+        enquiryQueryWrapper.eq("principal_type", 1);
+        int count = (int) adwebEnquiryService.count(enquiryQueryWrapper);
+        List<SubUser> list = pageList.getRecords();
+        SubUser subUser = new SubUser();
+        subUser.setId("-1");
+        subUser.setUsername("已手动分配跟进人的询盘");
+        subUser.setRealname("已手动分配跟进人的询盘");
+        subUser.setCountryNum(-1);
+        subUser.setEnquiryNum(count);
+        list.add(subUser);
+        return Result.OK(pageList);
+    }
+
+    /**
+     * 获取子账户列表
+     */
+    @GetMapping(value = "/subAccounts/options")
+    public Result<?> subAccounts2(Integer siteId, String siteCode) {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        // 获取主账户uid
+        String uid;
+        if (sysBaseAPI.isAdmin() || sysBaseAPI.isOem()) {
+            AdwebSite site;
+            if (siteId != null) {
+                site = adwebSiteService.getById(siteId);
+            } else {
+                site = adwebSiteService.getOne(new LambdaQueryWrapper<AdwebSite>().eq(AdwebSite::getCode, siteCode));
+            }
+            if (site == null) {
+                return Result.OK(new ArrayList<SubUser>());
+            }
+            uid = site.getUid();
+        } else if (sysAdwebApi.isAdwebVip()) {
+            uid = loginUser.getId();
+        } else {
+            return Result.OK(new ArrayList<SubUser>());
+        }
+
+        // 获取子账户列表
+        List<SubUser> list = adwebUserCountryMapper.getSubUserOptions(uid);
+
+        // 如果子账户不为空,将主账户也加进去作为选项
+        if (ListUtil.notEmpty(list)) {
+            SysUser masterAccount = sysUserService.getById(uid);
+            SubUser user = new SubUser();
+            user.setId(masterAccount.getId());
+            user.setUsername(masterAccount.getRealname());
+            list.add(0, user);
+        }
+
+        return Result.OK(list);
+    }
+
+    /**
+     * 获取转发子账户列表
+     */
+    @GetMapping(value = "/otherSubAccounts/options")
+    public Result<?> otherSubAccounts(Integer siteId) {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        // 获取主账户uid
+        if (siteId == null) {
+            return Result.OK(new ArrayList<SubUser>());
+        }
+        AdwebSite site = adwebSiteService.getById(siteId);
+        String uid = site.getUid();
+
+        // 获取子账户列表
+        List<SubUser> list = adwebUserCountryMapper.getSubUserOptions(uid);
+        // 如果子账户不为空,将主账户也加进去作为选项
+        if (ListUtil.notEmpty(list)) {
+            SysUser masterAccount = sysUserService.getById(uid);
+            SubUser user = new SubUser();
+            user.setId(masterAccount.getId());
+            user.setUsername(masterAccount.getRealname());
+            list.add(0, user);
+        }
+
+
+        return Result.OK(list);
+    }
+    /**
+     * 获取子账户列表
+     */
+    @GetMapping(value = "/subAccounts/optionswithoutself")
+    public Result<?> optionswithoutself() {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        List<SubUser> list = adwebUserCountryMapper.getSubUserOptions(loginUser.getId());
+        return Result.OK(list);
+    }
+
+    /**
+     * 获取子账户负责的国家
+     */
+    @GetMapping(value = "/country/charge")
+    public Result<?> chargeCountry(@RequestParam String id, @RequestParam Integer siteId) {
+        QueryWrapper<AdwebUserCountry> userCountryQueryWrapper = new QueryWrapper<>();
+        userCountryQueryWrapper.eq("uid", id);
+        userCountryQueryWrapper.eq("site_id", siteId);
+        userCountryQueryWrapper.eq("status", 1);
+        List<AdwebUserCountry> userCountries = adwebUserCountryService.list(userCountryQueryWrapper);
+        if (ListUtil.isEmpty(userCountries)) {
+            return Result.OK();
+        }
+
+        List<Integer> countryIds = new ArrayList<>();
+        for (AdwebUserCountry userCountry : userCountries) {
+            countryIds.add(userCountry.getCountryId());
+        }
+
+        QueryWrapper<AdwebCountry> countryQueryWrapper = new QueryWrapper<>();
+        countryQueryWrapper.in("geoname_id", countryIds);
+        List<AdwebCountry> countries = admpCountryService.list(countryQueryWrapper);
+        if (ListUtil.isEmpty(countries)) {
+            return Result.OK();
+        }
+
+        // 将国家按大洲分组,然后组装成树结构
+        Map<String, List<AdwebCountry>> map = new HashMap<>();
+        for (AdwebCountry country : countries) {
+            String continentCode = country.getContinentCode();
+            List<AdwebCountry> countryList = map.computeIfAbsent(continentCode, k -> new ArrayList<>());
+            countryList.add(country);
+        }
+
+        List<TreeOption> options = new ArrayList<>();
+        for (List<AdwebCountry> countryList : map.values()) {
+            TreeOption parentOption = new TreeOption();
+            parentOption.setKey(countryList.get(0).getContinentCode());
+            parentOption.setValue(countryList.get(0).getContinentCode());
+            parentOption.setTitle(countryList.get(0).getContinentName());
+            List<TreeOption> children = new ArrayList<>();
+            for (AdwebCountry country : countryList) {
+                TreeOption option = new TreeOption();
+                option.setKey(country.getGeonameId());
+                option.setValue(country.getGeonameId());
+                option.setTitle(country.getCountryName());
+                children.add(option);
+            }
+            parentOption.setChildren(children);
+            options.add(parentOption);
+        }
+
+        return Result.OK(options);
+    }
+
+    /**
+     * 获取未分配的国家
+     */
+    @GetMapping(value = "/country/uncontribute")
+    public Result<?> uncontributeCountry(Integer siteId) {
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        QueryWrapper<AdwebUserCountry> userCountryQueryWrapper = new QueryWrapper<>();
+        userCountryQueryWrapper.eq("master_uid", loginUser.getId());
+        userCountryQueryWrapper.eq("status", 1);
+        userCountryQueryWrapper.eq("site_id", siteId);
+        List<AdwebUserCountry> userCountries = adwebUserCountryService.list(userCountryQueryWrapper);
+
+        List<AdwebCountry> countries;
+        if (ListUtil.isEmpty(userCountries)) {
+            countries = admpCountryService.list();
+        } else {
+            List<Integer> countryIds = new ArrayList<>();
+            for (AdwebUserCountry userCountry : userCountries) {
+                countryIds.add(userCountry.getCountryId());
+            }
+
+            QueryWrapper<AdwebCountry> countryQueryWrapper = new QueryWrapper<>();
+            countryQueryWrapper.notIn("geoname_id", countryIds);
+            countries = admpCountryService.list(countryQueryWrapper);
+        }
+        if (ListUtil.isEmpty(countries)) {
+            return Result.OK();
+        }
+
+        // 将国家按大洲分组,然后组装成树结构
+        Map<String, List<AdwebCountry>> map = new HashMap<>();
+        for (AdwebCountry country : countries) {
+            String continentCode = country.getContinentCode();
+            List<AdwebCountry> countryList = map.computeIfAbsent(continentCode, k -> new ArrayList<>());
+            countryList.add(country);
+        }
+
+        List<TreeOption> options = new ArrayList<>();
+        for (List<AdwebCountry> countryList : map.values()) {
+            TreeOption parentOption = new TreeOption();
+            parentOption.setKey(countryList.get(0).getContinentCode());
+            parentOption.setValue(countryList.get(0).getContinentCode());
+            parentOption.setTitle(countryList.get(0).getContinentName());
+            List<TreeOption> children = new ArrayList<>();
+            for (AdwebCountry country : countryList) {
+                TreeOption option = new TreeOption();
+                option.setKey(country.getGeonameId());
+                option.setValue(country.getGeonameId());
+                option.setTitle(country.getCountryName());
+                children.add(option);
+            }
+            parentOption.setChildren(children);
+            options.add(parentOption);
+        }
+
+        return Result.OK(options);
+    }
+
+    /**
+     * 分配国家
+     */
+    @PostMapping(value = "/contribute/add")
+    public Result<?> contributeCountry(@RequestBody DistributeCountryParam param) {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+//        if(sysUser.isPerform()){
+//            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
+//        }
+        String uid = param.getUid();
+        String countryIds = param.getCountryIds();
+        String[] countryIdArr = countryIds.split(",");
+        LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        List<AdwebUserCountry> userCountries = new ArrayList<>();
+        for (String countryId : countryIdArr) {
+            if (StringUtils.isEmpty(countryId) || this.notNum(countryId)) {
+                continue;
+            }
+            AdwebUserCountry country = new AdwebUserCountry();
+            country.setUid(uid);
+            country.setMasterUid(loginUser.getId());
+            country.setSiteId(param.getSiteId());
+            country.setCountryId(Integer.parseInt(countryId));
+            country.setStatus(1);
+            country.setCreateTime(new Date());
+            userCountries.add(country);
+        }
+        adwebUserCountryService.saveBatch(userCountries);
+
+        // 更改相关询盘的负责人
+        QueryWrapper<AdwebCountry> countryQueryWrapper = new QueryWrapper<>();
+        countryQueryWrapper.in("geoname_id", countryIdArr);
+        List<AdwebCountry> countries = admpCountryService.list(countryQueryWrapper);
+        List<String> countryCodes = countries.stream().map(AdwebCountry::getCountryIsoCode).collect(Collectors.toList());
+
+        List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(param.getSiteId());
+        UpdateWrapper<AdwebEnquiry> enquiryUpdateWrapper = new UpdateWrapper<>();
+        enquiryUpdateWrapper.in("country_code", countryCodes);
+        enquiryUpdateWrapper.in("site_id", siteIds);
+        enquiryUpdateWrapper.ne("principal_type", 1);
+        enquiryUpdateWrapper.set("principal_uid", param.getUid());
+        adwebEnquiryService.update(enquiryUpdateWrapper);
+
+        return Result.OK();
+    }
+
+    private boolean notNum(String countryId) {
+        if (countryId.charAt(0) < '1' || countryId.charAt(0) > '9') {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * 分配国家
+     */
+    @PostMapping(value = "/contribute/delete")
+    public Result<?> delete(@RequestBody DistributeCountryParam param) {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+//        if(sysUser.isPerform()){
+//            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
+//        }
+        String uid = param.getUid();
+        String countryIds = param.getCountryIds();
+        List<String> countryIdList = new ArrayList<>();
+        if (StringUtils.isNotBlank(countryIds)) {
+            Collections.addAll(countryIdList, countryIds.split(","));
+        }
+        countryIdList.removeIf(this::notNum);
+        UpdateWrapper<AdwebUserCountry> updateWrapper = new UpdateWrapper<>();
+        updateWrapper.eq("uid", uid);
+        updateWrapper.eq("site_id", param.getSiteId());
+        if (ListUtil.notEmpty(countryIdList)) {
+            updateWrapper.notIn("country_id", countryIdList);
+        }
+        updateWrapper.set("status", 0);
+        adwebUserCountryService.update(updateWrapper);
+
+        // 更改相关询盘的负责人
+        List<Integer> siteIds = adwebSiteService.getAllSiteIdByParentId(param.getSiteId());
+        UpdateWrapper<AdwebEnquiry> enquiryUpdateWrapper = new UpdateWrapper<>();
+        if (ListUtil.notEmpty(countryIdList)) {
+            QueryWrapper<AdwebCountry> countryQueryWrapper = new QueryWrapper<>();
+            countryQueryWrapper.in("geoname_id", countryIdList);
+            List<AdwebCountry> countries = admpCountryService.list(countryQueryWrapper);
+            List<String> countryCodes = countries.stream().map(AdwebCountry::getCountryIsoCode).collect(Collectors.toList());
+            enquiryUpdateWrapper.notIn("country_code", countryCodes);
+        }
+        enquiryUpdateWrapper.in("site_id", siteIds);
+        enquiryUpdateWrapper.eq("principal_uid", param.getUid());
+        enquiryUpdateWrapper.ne("principal_type", 1);
+        enquiryUpdateWrapper.setSql("principal_uid = uid");
+        adwebEnquiryService.update(enquiryUpdateWrapper);
+        return Result.OK();
+    }
+
+    /**
+     * 更改分配方式
+     */
+    @AutoLog(value = "询盘管理-询盘分配-分配规则切换")
+    @PostMapping(value = "/updateDistributeType")
+    public Result<?> updateDistributeType(@RequestParam Integer siteId, @RequestParam String distributeType) {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+//        if(sysUser.isPerform()){
+//            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
+//        }
+        UpdateWrapper<AdwebSite> updateWrapper = new UpdateWrapper<>();
+        updateWrapper.eq("id", siteId);
+        updateWrapper.set("enquiry_distribute_type", distributeType);
+        adwebSiteService.update(updateWrapper);
+
+        // 修改询盘的跟进人
+        if (EnquiryDistributeTypeConstant.MASTER.equals(distributeType)) {
+            UpdateWrapper<AdwebEnquiry> enquiryUpdateWrapper = new UpdateWrapper<>();
+            enquiryUpdateWrapper.ne("principal_type", 1);
+            enquiryUpdateWrapper.setSql("principal_uid = uid");
+            adwebEnquiryService.update(enquiryUpdateWrapper);
+        } else if (EnquiryDistributeTypeConstant.ALL.equals(distributeType)) {
+            UpdateWrapper<AdwebEnquiry> enquiryUpdateWrapper = new UpdateWrapper<>();
+            enquiryUpdateWrapper.ne("principal_type", 1);
+            enquiryUpdateWrapper.set("principal_uid", "ALL");
+            adwebEnquiryService.update(enquiryUpdateWrapper);
+        } else if (EnquiryDistributeTypeConstant.REGION.equals(distributeType)) {
+            adwebEnquiryService.updatePrincipalUidByRegion(siteId);
+        }
+        return Result.OK();
+    }
+
+    /**
+     * 更改询盘发送规则
+     */
+    @AutoLog(value = "询盘管理-询盘分配-更改询盘发送规则")
+    @PostMapping(value = "/updateSendEmailType")
+    public Result<?> updateSendEmailType(@RequestParam Integer siteId, @RequestParam String sendEmailType) {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+//        if(sysUser.isPerform()){
+//            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
+//        }
+        UpdateWrapper<AdwebSite> updateWrapper = new UpdateWrapper<>();
+        updateWrapper.eq("id", siteId);
+        updateWrapper.set("enquiry_send_email_type", sendEmailType);
+        adwebSiteService.update(updateWrapper);
+
+        return Result.OK();
+    }
+
+    /**
+     * 根据站点id获取站点信息
+     */
+    @GetMapping(value = "/getSiteBySiteId")
+    public Result<?> getSiteBySiteId(Integer siteId) {
+        AdwebSite site = adwebSiteService.getById(siteId);
+        return Result.OK(site);
+    }
+
+    /**
+     * 添加
+     *
+     * @param adwebUserCountry
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-添加")
+    @Operation(description = "adweb_user_country-添加")
+    @PostMapping(value = "/add")
+    public Result<?> add(@RequestBody AdwebUserCountry adwebUserCountry) {
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+//        if(sysUser.isPerform()){
+//            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
+//        }
+        adwebUserCountryService.save(adwebUserCountry);
+        return Result.OK("添加成功!");
+    }
+
+    /**
+     * 编辑
+     *
+     * @param adwebUserCountry
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-编辑")
+    @Operation(description = "adweb_user_country-编辑")
+    @PutMapping(value = "/edit")
+    public Result<?> edit(@RequestBody AdwebUserCountry adwebUserCountry) {
+        adwebUserCountryService.updateById(adwebUserCountry);
+        return Result.OK("编辑成功!");
+    }
+
+    /**
+     * 通过id删除
+     *
+     * @param id
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-通过id删除")
+    @Operation(description = "adweb_user_country-通过id删除")
+    @DeleteMapping(value = "/delete")
+    public Result<?> delete(@RequestParam(name = "id", required = true) String id) {
+        adwebUserCountryService.removeById(id);
+        return Result.OK("删除成功!");
+    }
+
+    /**
+     * 批量删除
+     *
+     * @param ids
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-批量删除")
+    @Operation(description = "adweb_user_country-批量删除")
+    @DeleteMapping(value = "/deleteBatch")
+    public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
+        this.adwebUserCountryService.removeByIds(Arrays.asList(ids.split(",")));
+        return Result.OK("批量删除成功!");
+    }
+
+    /**
+     * 通过id查询
+     *
+     * @param id
+     * @return
+     */
+    @AutoLog(value = "adweb_user_country-通过id查询")
+    @Operation(description = "adweb_user_country-通过id查询")
+    @GetMapping(value = "/queryById")
+    public Result<?> queryById(@RequestParam(name = "id", required = true) String id) {
+        AdwebUserCountry adwebUserCountry = adwebUserCountryService.getById(id);
+        if (adwebUserCountry == null) {
+            return Result.error("未找到对应数据");
+        }
+        return Result.OK(adwebUserCountry);
+    }
+
+    /**
+     * 导出excel
+     *
+     * @param request
+     * @param adwebUserCountry
+     */
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, AdwebUserCountry adwebUserCountry) {
+        return super.exportXls(request, adwebUserCountry, AdwebUserCountry.class, "adweb_user_country");
+    }
+
+    /**
+     * 通过excel导入数据
+     *
+     * @param request
+     * @param response
+     * @return
+     */
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, AdwebUserCountry.class);
+    }
+
+}

+ 14 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/DistributeCountryParam.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.adweb.userCountry.dto;
+
+
+import lombok.Data;
+
+@Data
+public class DistributeCountryParam {
+
+    private String uid;
+
+    private Integer siteId;
+
+    private String countryIds;
+}

+ 21 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/SubUser.java

@@ -0,0 +1,21 @@
+package org.jeecg.modules.adweb.userCountry.dto;
+
+import lombok.Data;
+
+/**
+ * 子账户
+ */
+@Data
+public class SubUser {
+
+    private String id;
+
+    private String username;
+
+    private String realname;
+
+    private int countryNum;
+
+    private int EnquiryNum;
+}
+

+ 21 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/dto/TreeOption.java

@@ -0,0 +1,21 @@
+package org.jeecg.modules.adweb.userCountry.dto;
+
+import lombok.Data;
+
+import java.util.List;
+
+/**
+ * 国家选项的结构
+ */
+@Data
+public class TreeOption {
+
+    private String key;
+
+    private String value;
+
+    private String title;
+
+    private List<TreeOption> children;
+
+}

+ 54 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/entity/AdwebCountry.java

@@ -0,0 +1,54 @@
+package org.jeecg.modules.adweb.userCountry.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+import java.io.Serializable;
+
+/**
+ * @Description: adweb_country
+ * @Author: jeecg-boot
+ * @Date:   2021-11-16
+ * @Version: V1.0
+ */
+@Data
+@TableName("adweb_country")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@Schema(description="admp_country")
+public class AdwebCountry implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+	/**geonameId*/
+	@Excel(name = "geonameId", width = 15)
+    @Schema(description = "geonameId")
+    private String geonameId;
+	/**localeCode*/
+	@Excel(name = "localeCode", width = 15)
+    @Schema(description = "localeCode")
+    private String localeCode;
+	/**continentCode*/
+	@Excel(name = "continentCode", width = 15)
+    @Schema(description = "continentCode")
+    private String continentCode;
+	/**continentName*/
+	@Excel(name = "continentName", width = 15)
+    @Schema(description = "continentName")
+    private String continentName;
+	/**countryIsoCode*/
+	@Excel(name = "countryIsoCode", width = 15)
+    @Schema(description = "countryIsoCode")
+    private String countryIsoCode;
+	/**countryName*/
+	@Excel(name = "countryName", width = 15)
+    @Schema(description = "countryName")
+    private String countryName;
+	/**isInEuropeanUnion*/
+	@Excel(name = "isInEuropeanUnion", width = 15)
+    @Schema(description = "isInEuropeanUnion")
+    private String isInEuropeanUnion;
+}

+ 57 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/entity/AdwebUserCountry.java

@@ -0,0 +1,57 @@
+package org.jeecg.modules.adweb.userCountry.entity;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * @Description: adweb_user_country
+ * @Author: jeecg-boot
+ * @Date:   2022-08-19
+ * @Version: V1.0
+ */
+@Data
+@TableName("adweb_user_country")
+@Accessors(chain = true)
+@EqualsAndHashCode(callSuper = false)
+@Schema(description="adweb_user_country")
+public class AdwebUserCountry implements Serializable {
+    private static final long serialVersionUID = 1L;
+
+	/**id*/
+	@TableId(type = IdType.AUTO)
+    @Schema(description = "id")
+    private Integer id;
+	/**用户id*/
+	@Excel(name = "用户id", width = 15)
+    @Schema(description = "用户id")
+    private String uid;
+	/**父用户id*/
+	@Excel(name = "父用户id", width = 15)
+    @Schema(description = "父用户id")
+    private String masterUid;
+    private Integer siteId;
+	/**国家id*/
+	@Excel(name = "国家id", width = 15)
+    @Schema(description = "国家id")
+    private Integer countryId;
+	/**1有效 0无效*/
+	@Excel(name = "1有效 0无效", width = 15)
+    @Schema(description = "1有效 0无效")
+    private Integer status;
+	/**创建世家*/
+	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    @Schema(description = "创建世家")
+    private Date createTime;
+}

+ 14 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/AdwebCountryMapper.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.adweb.userCountry.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebCountry;
+
+/**
+ * @Description: admp_country
+ * @Author: jeecg-boot
+ * @Date:   2021-11-16
+ * @Version: V1.0
+ */
+public interface AdwebCountryMapper extends BaseMapper<AdwebCountry> {
+
+}

+ 33 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/AdwebUserCountryMapper.java

@@ -0,0 +1,33 @@
+package org.jeecg.modules.adweb.userCountry.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import org.jeecg.modules.adweb.userCountry.dto.SubUser;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebUserCountry;
+
+import java.util.List;
+
+/**
+ * @Description: adweb_user_country
+ * @Author: jeecg-boot
+ * @Date:   2022-08-19
+ * @Version: V1.0
+ */
+public interface AdwebUserCountryMapper extends BaseMapper<AdwebUserCountry> {
+
+    /**
+     * 获取子账户列表
+     *
+     * @param uid 父账户id
+     * @return 子账户列表
+     */
+    IPage<SubUser> getSubUserList(IPage<SubUser> page, String uid, List<Integer> siteIds);
+
+    /**
+     * 获取子账户列表2,作为下拉框选项,只需要部分字段
+     *
+     * @param uid 父账户id
+     * @return 子账户列表
+     */
+    List<SubUser> getSubUserOptions(String uid);
+}

+ 5 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/xml/AdwebCountryMapper.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.jeecg.modules.adweb.userCountry.mapper.AdwebCountryMapper">
+
+</mapper>

+ 55 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/mapper/xml/AdwebUserCountryMapper.xml

@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.jeecg.modules.adweb.userCountry.mapper.AdwebUserCountryMapper">
+
+    <select id="getSubUserList" resultType="org.jeecg.modules.adweb.userCountry.dto.SubUser">
+        SELECT
+            t0.sub_id id,
+            t4.username,
+            t4.realname,
+            COUNT(DISTINCT t1.country_id) countryNum,
+            enquiryCount enquiryNum
+        FROM
+            master_sub_account_relation t0
+            LEFT JOIN adweb_user_country t1 ON t0.sub_id = t1.uid AND t1.`status` = 1 AND t1.site_id IN
+            <foreach collection="siteIds" open="(" close=")" separator="," item="siteId">
+                #{siteId}
+            </foreach>
+            LEFT JOIN admp_country t2 ON t1.country_id = t2.geoname_id
+            LEFT JOIN
+            (
+                SELECT
+                    COUNT(id) enquiryCount,
+                    principal_uid
+                FROM
+                    adweb_enquiry
+                WHERE
+                    `status` = 1 AND site_id IN
+                    <foreach collection="siteIds" open="(" close=")" separator="," item="siteId">
+                        #{siteId}
+                    </foreach>
+                GROUP BY
+                    principal_uid
+            ) t3 ON t0.sub_id = t3.principal_uid
+            LEFT JOIN sys_user t4 ON t0.sub_id = t4.id
+        WHERE
+            t0.`status` = 1
+            AND t0.master_id = #{uid}
+        GROUP BY
+            t0.sub_id
+    </select>
+    <select id="getSubUserOptions" resultType="org.jeecg.modules.adweb.userCountry.dto.SubUser">
+        SELECT
+            t1.id,
+            t1.realname username
+        FROM
+            master_sub_account_relation t0,
+            sys_user t1
+        WHERE
+            t0.sub_id = t1.id
+            AND t0.`status` = 1
+            AND t1.del_flag = 0
+            AND t1.status = 1
+            AND t0.master_id = #{uid}
+    </select>
+</mapper>

+ 14 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/IAdwebCountryService.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.adweb.userCountry.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebCountry;
+
+/**
+ * @Description: admp_country
+ * @Author: jeecg-boot
+ * @Date:   2021-11-16
+ * @Version: V1.0
+ */
+public interface IAdwebCountryService extends IService<AdwebCountry> {
+
+}

+ 33 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/IAdwebUserCountryService.java

@@ -0,0 +1,33 @@
+package org.jeecg.modules.adweb.userCountry.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebUserCountry;
+
+import java.util.List;
+
+/**
+ * @Description: adweb_user_country
+ * @Author: jeecg-boot
+ * @Date:   2022-08-19
+ * @Version: V1.0
+ */
+public interface IAdwebUserCountryService extends IService<AdwebUserCountry> {
+
+    /**
+     * 根据子账户的id获取分配给其负责的国家列表
+     *
+     * @param id 子账户id
+     * @return 国家id列表
+     */
+    List<Integer> getCountryIdsBySubId(String id);
+
+    /**
+     * 根据子账户的id获取分配给其负责的国家列表
+     *
+     * @param id     子账户id
+     * @param siteId 站点id
+     * @return 国家code列表
+     */
+    List<String> getCountryCodesBySubId(String id, Integer siteId);
+
+}

+ 18 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/impl/AdwebCountryServiceImpl.java

@@ -0,0 +1,18 @@
+package org.jeecg.modules.adweb.userCountry.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebCountry;
+import org.jeecg.modules.adweb.userCountry.mapper.AdwebCountryMapper;
+import org.jeecg.modules.adweb.userCountry.service.IAdwebCountryService;
+import org.springframework.stereotype.Service;
+
+/**
+ * @Description: admp_country
+ * @Author: jeecg-boot
+ * @Date:   2021-11-16
+ * @Version: V1.0
+ */
+@Service
+public class AdwebCountryServiceImpl extends ServiceImpl<AdwebCountryMapper, AdwebCountry> implements IAdwebCountryService {
+
+}

+ 68 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/userCountry/service/impl/AdwebUserCountryServiceImpl.java

@@ -0,0 +1,68 @@
+package org.jeecg.modules.adweb.userCountry.service.impl;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import jakarta.annotation.Resource;
+import org.jeecg.modules.adweb.common.util.ListUtil;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebCountry;
+import org.jeecg.modules.adweb.userCountry.entity.AdwebUserCountry;
+import org.jeecg.modules.adweb.userCountry.mapper.AdwebUserCountryMapper;
+import org.jeecg.modules.adweb.userCountry.service.IAdwebCountryService;
+import org.jeecg.modules.adweb.userCountry.service.IAdwebUserCountryService;
+import org.springframework.stereotype.Service;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.stream.Collectors;
+
+/**
+ * @Description: adweb_user_country
+ * @Author: jeecg-boot
+ * @Date:   2022-08-19
+ * @Version: V1.0
+ */
+@Service
+public class AdwebUserCountryServiceImpl extends ServiceImpl<AdwebUserCountryMapper, AdwebUserCountry> implements IAdwebUserCountryService {
+
+    @Resource
+    private IAdwebCountryService adwebCountryService;
+
+    /**
+     * 根据子账户的id获取分配给其负责的国家列表
+     *
+     * @param id 子账户id
+     * @return 国家id列表
+     */
+    @Override
+    public List<Integer> getCountryIdsBySubId(String id) {
+        QueryWrapper<AdwebUserCountry> queryWrapper = new QueryWrapper<AdwebUserCountry>()
+                .select("country_id")
+                .eq("uid", id)
+                .eq("status", 1);
+        List<AdwebUserCountry> list = this.list(queryWrapper);
+        if (ListUtil.isEmpty(list)) {
+            return new ArrayList<>();
+        }
+        return list.stream().map(AdwebUserCountry::getCountryId).collect(Collectors.toList());
+    }
+
+    /**
+     * 根据子账户的id获取分配给其负责的国家列表
+     *
+     * @param id     子账户id
+     * @param siteId 站点id
+     * @return 国家code列表
+     */
+    @Override
+    public List<String> getCountryCodesBySubId(String id, Integer siteId) {
+        List<Integer> countryIds = this.getCountryIdsBySubId(id);
+        if (ListUtil.isEmpty(countryIds)) {
+            return new ArrayList<>();
+        }
+        QueryWrapper<AdwebCountry> queryWrapper = new QueryWrapper<>();
+        queryWrapper.in("geoname_id", countryIds);
+        List<AdwebCountry> countries = adwebCountryService.list(queryWrapper);
+        return countries.stream().map(AdwebCountry::getCountryIsoCode).collect(Collectors.toList());
+    }
+
+}