Bladeren bron

子账户自动和手动分配询盘

chenlei1231 1 maand geleden
bovenliggende
commit
f4ed657a24

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

@@ -1,6 +1,8 @@
 package org.jeecg.modules.adweb.enquiry.controller;
 
+import com.alibaba.fastjson.JSONObject;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -27,10 +29,12 @@ 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.config.shiro.IgnoreAuth;
 import org.jeecg.modules.adweb.common.constant.AdwebConstant;
 import org.jeecg.modules.adweb.common.util.AwsTranslateUtils;
 import org.jeecg.modules.adweb.common.util.DateUtil;
 import org.jeecg.modules.adweb.enquiry.constant.EnquirySendStatus;
+import org.jeecg.modules.adweb.enquiry.dto.EnquiryDTO;
 import org.jeecg.modules.adweb.enquiry.dto.param.EffectiveEnquiryParamDto;
 import org.jeecg.modules.adweb.enquiry.dto.param.EnquiryListSearchDto;
 import org.jeecg.modules.adweb.enquiry.dto.param.EnquirySearchDto;
@@ -54,10 +58,7 @@ import org.springframework.web.bind.annotation.*;
 import org.springframework.web.servlet.ModelAndView;
 
 /**
- * @Description: 询盘信息存储表单
- * @Author: jeecg-boot
- * @Date: 2024-10-12
- * @Version: V1.0
+ * @Description: 询盘信息存储表单 @Author: jeecg-boot @Date: 2024-10-12 @Version: V1.0
  */
 @Tag(name = "询盘信息存储表单")
 @RestController
@@ -65,711 +66,749 @@ import org.springframework.web.servlet.ModelAndView;
 @Slf4j
 public class AdwebEnquiryController extends JeecgController<AdwebEnquiry, IAdwebEnquiryService> {
 
-    @Value("${enquiry.disable-admin-read:true}")
-    private Boolean disableAdminRead;
-
-    @Value("${enquiry.demoFlag:false}")
-    private Boolean demoFlag;
-
-    @Resource private IAdwebEnquiryService adwebEnquiryService;
-
-    @Resource private AdwebEnquiryMapper adwebEnquiryMapper;
-
-    @Resource private SysAdwebApi sysAdwebApi;
-
-    @Resource private IAdwebSiteService adwebSiteService;
-
-    @Resource private ISiteUserPermissionService siteUserPermissionService;
-
-    @Resource private ISysDictService sysDictService;
-
-    @Resource private AwsTranslateUtils awsTranslateUtils;
-
-    @Resource private ISysUserService sysUserService;
-
-    /**
-     * 分页列表查询
-     *
-     * @param searchDto
-     * @param pageNo
-     * @param pageSize
-     * @param principalUid
-     * @return
-     */
-    // @AutoLog(value = "询盘信息存储表单-分页列表查询")
-    @Operation(summary = "询盘信息存储表单-分页列表查询")
-    @GetMapping(value = "/list")
-    public Result<?> queryPageList(
-            EnquiryListSearchDto searchDto,
-            @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
-            @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
-            String principalUid) {
-
-        if (sysAdwebApi.isNotOwnSite(searchDto.getSiteId())) {
-            return Result.OK(new Page<>());
-        }
-
-        Page<EnquirySearchDto> page = new Page<>(pageNo, pageSize);
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-
-        List<String> codeList = null;
-        List<String> uidList = null;
-
-        if (sysAdwebApi.isAdmin()) {
-
-        } else if (sysAdwebApi.isChannelAdmin()) {
-            uidList = sysAdwebApi.getChannelGroupUids();
-        } else {
-            uidList = new ArrayList<>();
-            uidList.add(sysUser.getId());
-        }
-        List<String> siteCodeList = null;
-        if (CollectionUtils.isNotEmpty(uidList)) {
-            siteCodeList = siteUserPermissionService.getSiteCodeListByUids(uidList);
-        }
-
-        if (searchDto.getSiteId() != null) {
-            String siteCode = adwebSiteService.getSiteCodeById(searchDto.getSiteId());
-            if (StringUtils.isNotBlank(siteCode)) {
-                LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
-                queryWrapper
-                        .eq(AdwebSite::getId, searchDto.getSiteId())
-                        .or()
-                        .eq(AdwebSite::getParentGroupCode, siteCode);
-                queryWrapper.ne(AdwebSite::getStatus, 0);
-                queryWrapper.in(!sysAdwebApi.isAdmin(), AdwebSite::getCode, siteCodeList);
-                codeList =
-                        adwebSiteService.list(queryWrapper).stream()
-                                .map(AdwebSite::getCode)
-                                .collect(Collectors.toList());
-            }
-        } else {
-            codeList = siteCodeList;
-        }
-
-        String dateType = searchDto.getDateType();
-        Date start = searchDto.getStart();
-        Date end = searchDto.getEnd();
-        if (StringUtils.isNotBlank(dateType)) {
-            Pair<Date, Date> dateRange = DateUtil.getDateRangeByType(dateType);
-            start = dateRange.getLeft();
-            end = dateRange.getRight();
-        }
-
-        if (CollectionUtils.isEmpty(codeList)) {
-            return Result.OK(page);
-        }
-
-        String selfPrincipalUid = null;
-        if (sysAdwebApi.isAdwebSubVip()) {
-            selfPrincipalUid = sysUser.getId();
-        }
-
-        String userEfftecive = "(" + searchDto.getUserEffective() + ")";
-
-        IPage<EnquiryListDto> pageList =
-                adwebEnquiryMapper.selectEnquiryList(
-                        page,
-                        codeList,
-                        userEfftecive,
-                        searchDto.getWasteEnquiryType(),
-                        searchDto.getSearchText(),
-                        searchDto.getSearchContent(),
-                        start,
-                        end,
-                        searchDto.getWhatsApp(),
-                        searchDto.getReadStatus(),
-                        principalUid,
-                        selfPrincipalUid);
-
-        if (CollectionUtils.isNotEmpty(pageList.getRecords())) {
-            dealInfo(pageList.getRecords());
-        }
-        return Result.OK(pageList);
-    }
-
-    /**
-     * 处理询盘列表结果集
-     *
-     * @param enquiryList
-     */
-    private void dealInfo(List<EnquiryListDto> enquiryList) {
-        if (CollectionUtils.isEmpty(enquiryList)) {
-            return;
-        }
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-        List<DictModel> userEffectiveDict =
-                sysDictService.queryDictItemsByCode(AdwebConstant.ENQUIRY_EFFECTIVE);
-        AtomicInteger atomicInteger = new AtomicInteger();
-
-        enquiryList.forEach(
-                enquiry -> {
-                    // 来源页面如果以 / 结尾,去掉最后一个字符
-                    String fromPage = enquiry.getFromPage();
-                    if (StringUtils.isNotBlank(fromPage)) {
-                        if (fromPage.endsWith("/")) {
-                            enquiry.setFromPage(fromPage.substring(0, fromPage.length() - 1));
-                        }
-                    }
-                    atomicInteger.getAndIncrement();
-                    enquiry.setDataIndex(atomicInteger.get());
-
-                    // 示例关键信息脱敏
-                    if (demoFlag) {
-                        enquiry.setFormCompany("**********");
-                        enquiry.setFromEmail("**********");
-                        enquiry.setWhatsApp("**********");
-                        enquiry.setPhone("**********");
-                        String siteName = enquiry.getSiteName();
-                        enquiry.setSiteName(
-                                siteName.substring(0, 2)
-                                        + "**********"
-                                        + siteName.substring(siteName.length() - 2));
-                    }
-
-                    /**********************字典数据处理***********************/
-                    if (CollectionUtils.isNotEmpty(userEffectiveDict)) {
-                        userEffectiveDict.forEach(
-                                dict -> {
-                                    if (dict.getValue().equals(enquiry.getUserEffective() + "")) {
-                                        enquiry.setUserEffectiveStr(dict.getLabel());
-                                    }
-                                });
-                    }
-
-                    // 询盘中用户自定义的字段处理
-                    if (StringUtils.isNotBlank(enquiry.getSpecialField())) {
-                        List<EnquirySpecialFields> specialFieldsList =
-                                FastJsonUtil.parseList(
-                                        enquiry.getSpecialField(), EnquirySpecialFields.class);
-                        enquiry.setSpecialFieldList(specialFieldsList);
-                        enquiry.setSpecialField(null);
-                    }
-
-                    if (StringUtils.isNotBlank(enquiry.getContext())) {
-                        String context = enquiry.getContext();
-                        Pattern CRLF = Pattern.compile("(\r\n|\r|\n|\n\r)");
-                        Matcher m = CRLF.matcher(context);
-                        if (m.find()) {
-                            context = m.replaceAll("<br/>");
-                        }
-                        enquiry.setContext(context);
-                    }
-                });
+  @Value("${enquiry.disable-admin-read:true}")
+  private Boolean disableAdminRead;
+
+  @Value("${enquiry.demoFlag:false}")
+  private Boolean demoFlag;
+
+  @Resource private IAdwebEnquiryService adwebEnquiryService;
+
+  @Resource private AdwebEnquiryMapper adwebEnquiryMapper;
+
+  @Resource private SysAdwebApi sysAdwebApi;
+
+  @Resource private IAdwebSiteService adwebSiteService;
+
+  @Resource private ISiteUserPermissionService siteUserPermissionService;
+
+  @Resource private ISysDictService sysDictService;
+
+  @Resource private AwsTranslateUtils awsTranslateUtils;
+
+  @Resource private ISysUserService sysUserService;
+
+  /**
+   * 分页列表查询
+   *
+   * @param searchDto
+   * @param pageNo
+   * @param pageSize
+   * @param principalUid
+   * @return
+   */
+  // @AutoLog(value = "询盘信息存储表单-分页列表查询")
+  @Operation(summary = "询盘信息存储表单-分页列表查询")
+  @GetMapping(value = "/list")
+  public Result<?> queryPageList(
+      EnquiryListSearchDto searchDto,
+      @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+      @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
+      String principalUid) {
+
+    if (sysAdwebApi.isNotOwnSite(searchDto.getSiteId())) {
+      return Result.OK(new Page<>());
+    }
+
+    Page<EnquirySearchDto> page = new Page<>(pageNo, pageSize);
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+
+    List<String> codeList = null;
+    List<String> uidList = null;
+
+    if (sysAdwebApi.isAdmin()) {
+
+    } else if (sysAdwebApi.isChannelAdmin()) {
+      uidList = sysAdwebApi.getChannelGroupUids();
+    } else {
+      uidList = new ArrayList<>();
+      uidList.add(sysUser.getId());
+    }
+    List<String> siteCodeList = null;
+    if (CollectionUtils.isNotEmpty(uidList)) {
+      siteCodeList = siteUserPermissionService.getSiteCodeListByUids(uidList);
     }
 
-    /**
-     * 添加
-     *
-     * @param adwebEnquiry
-     * @return
-     */
-    @AutoLog(value = "询盘信息存储表单-添加")
-    @Operation(summary = "询盘信息存储表单-添加")
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:add')")
-    @PostMapping(value = "/add")
-    public Result<String> add(@RequestBody AdwebEnquiry adwebEnquiry) {
-        adwebEnquiryService.save(adwebEnquiry);
-        return Result.OK("添加成功!");
-    }
-
-    /**
-     * 编辑
-     *
-     * @param adwebEnquiry
-     * @return
-     */
-    @AutoLog(value = "询盘信息存储表单-编辑")
-    @Operation(summary = "询盘信息存储表单-编辑")
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:edit')")
-    @RequestMapping(
-            value = "/edit",
-            method = {RequestMethod.PUT, RequestMethod.POST})
-    public Result<String> edit(@RequestBody AdwebEnquiry adwebEnquiry) {
-        adwebEnquiryService.updateById(adwebEnquiry);
-        return Result.OK("编辑成功!");
-    }
-
-    /**
-     * 通过id删除
-     *
-     * @param id
-     * @return
-     */
-    @AutoLog(value = "询盘信息存储表单-通过id删除")
-    @Operation(summary = "询盘信息存储表单-通过id删除")
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:delete')")
-    @DeleteMapping(value = "/delete")
-    public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
-        adwebEnquiryService.removeById(id);
-        return Result.OK("删除成功!");
-    }
-
-    /**
-     * 批量删除
-     *
-     * @param ids
-     * @return
-     */
-    @AutoLog(value = "询盘信息存储表单-批量删除")
-    @Operation(summary = "询盘信息存储表单-批量删除")
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:deleteBatch')")
-    @DeleteMapping(value = "/deleteBatch")
-    public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
-        this.adwebEnquiryService.removeByIds(Arrays.asList(ids.split(",")));
-        return Result.OK("批量删除成功!");
-    }
-
-    /**
-     * 通过id查询
-     *
-     * @param id
-     * @return
-     */
-    // @AutoLog(value = "询盘信息存储表单-通过id查询")
-    @Operation(summary = "询盘信息存储表单-通过id查询")
-    @GetMapping(value = "/queryById")
-    public Result<AdwebEnquiry> queryById(@RequestParam(name = "id", required = true) String id) {
-        AdwebEnquiry adwebEnquiry = adwebEnquiryService.getById(id);
-        if (adwebEnquiry == null) {
-            return Result.error("未找到对应数据");
-        }
-        return Result.OK(adwebEnquiry);
-    }
-
-    /**
-     * 导出excel
-     *
-     * @param request
-     * @param adwebEnquiry
-     */
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:exportXls')")
-    @RequestMapping(value = "/exportXls")
-    public ModelAndView exportXls(HttpServletRequest request, AdwebEnquiry adwebEnquiry) {
-        return super.exportXls(request, adwebEnquiry, AdwebEnquiry.class, "询盘信息存储表单");
-    }
-
-    /**
-     * 通过excel导入数据
-     *
-     * @param request
-     * @param response
-     * @return
-     */
-    @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:importExcel')")
-    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
-    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
-        return super.importExcel(request, response, AdwebEnquiry.class);
-    }
-
-    /** 获取需要轮流询盘的站点code */
-    @GetMapping("/getTurnInquiryCode")
-    public Result<?> getTurnInquiryCode() {
-        List<DictPropertyModel> siteRes =
-                sysAdwebApi.queryDictInfoByDictCode("turn_inquiry_site_code");
-        if (CollectionUtils.isNotEmpty(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)) {
-            Pair<Date, Date> dateRange = DateUtil.getDateRangeByType(dateType);
-            start = dateRange.getLeft();
-            end = dateRange.getRight();
-        }
-
-        List<Integer> siteIds = null;
-        if (siteId != null) {
-            String siteCode = adwebSiteService.getSiteCodeById(siteId);
-            LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
-            queryWrapper
-                    .eq(AdwebSite::getCode, siteCode)
-                    .or()
-                    .eq(AdwebSite::getParentGroupCode, siteCode);
-            queryWrapper.ne(AdwebSite::getStatus, 0);
-            List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
-            siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
-        } else {
-            if (sysAdwebApi.isAdmin()) {
-                LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
-                queryWrapper.ne(AdwebSite::getStatus, 0);
-                List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
-                siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
-            } else if (sysAdwebApi.isChannelAdmin()) {
-                List<String> channelGroupUids = sysAdwebApi.getChannelGroupUids();
-                List<String> codeList =
-                        siteUserPermissionService.getSiteCodeListByUids(channelGroupUids);
-                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());
+    if (searchDto.getSiteId() != null) {
+      String siteCode = adwebSiteService.getSiteCodeById(searchDto.getSiteId());
+      if (StringUtils.isNotBlank(siteCode)) {
+        LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
+        queryWrapper
+            .eq(AdwebSite::getId, searchDto.getSiteId())
+            .or()
+            .eq(AdwebSite::getParentGroupCode, siteCode);
+        queryWrapper.ne(AdwebSite::getStatus, 0);
+        queryWrapper.in(!sysAdwebApi.isAdmin(), AdwebSite::getCode, siteCodeList);
+        codeList =
+            adwebSiteService.list(queryWrapper).stream()
+                .map(AdwebSite::getCode)
+                .collect(Collectors.toList());
+      }
+    } else {
+      codeList = siteCodeList;
+    }
+
+    String dateType = searchDto.getDateType();
+    Date start = searchDto.getStart();
+    Date end = searchDto.getEnd();
+    if (StringUtils.isNotBlank(dateType)) {
+      Pair<Date, Date> dateRange = DateUtil.getDateRangeByType(dateType);
+      start = dateRange.getLeft();
+      end = dateRange.getRight();
+    }
+
+    if (CollectionUtils.isEmpty(codeList)) {
+      return Result.OK(page);
+    }
+
+    String selfPrincipalUid = null;
+    if (sysAdwebApi.isAdwebSubVip()) {
+      selfPrincipalUid = sysUser.getId();
+    }
+
+    String userEfftecive = "(" + searchDto.getUserEffective() + ")";
+
+    IPage<EnquiryListDto> pageList =
+        adwebEnquiryMapper.selectEnquiryList(
+            page,
+            codeList,
+            userEfftecive,
+            searchDto.getWasteEnquiryType(),
+            searchDto.getSearchText(),
+            searchDto.getSearchContent(),
+            start,
+            end,
+            searchDto.getWhatsApp(),
+            searchDto.getReadStatus(),
+            principalUid,
+            selfPrincipalUid);
+
+    if (CollectionUtils.isNotEmpty(pageList.getRecords())) {
+      dealInfo(pageList.getRecords());
+    }
+    return Result.OK(pageList);
+  }
+
+  /**
+   * 处理询盘列表结果集
+   *
+   * @param enquiryList
+   */
+  private void dealInfo(List<EnquiryListDto> enquiryList) {
+    if (CollectionUtils.isEmpty(enquiryList)) {
+      return;
+    }
+    List<DictModel> userEffectiveDict =
+        sysDictService.queryDictItemsByCode(AdwebConstant.ENQUIRY_EFFECTIVE);
+    AtomicInteger atomicInteger = new AtomicInteger();
+
+    enquiryList.forEach(
+        enquiry -> {
+          // 来源页面如果以 / 结尾,去掉最后一个字符
+          String fromPage = enquiry.getFromPage();
+          if (StringUtils.isNotBlank(fromPage)) {
+            if (fromPage.endsWith("/")) {
+              enquiry.setFromPage(fromPage.substring(0, fromPage.length() - 1));
             }
-        }
-
-        String principalUid = null;
-        if (sysAdwebApi.isAdwebSubVip()) {
-            principalUid = loginUser.getId();
-        }
-
-        LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper = new LambdaQueryWrapper<>();
-        enquiryQueryWrapper.eq(AdwebEnquiry::getStatus, 1);
-        if (start != null) {
-            enquiryQueryWrapper.ge(AdwebEnquiry::getRecordCtime, start);
-        }
-        if (end != null) {
-            enquiryQueryWrapper.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
-        }
-        if (siteIds != null) {
-            enquiryQueryWrapper.in(AdwebEnquiry::getSiteId, siteIds);
-        }
-        if (StringUtils.isNotBlank(principalUid)) {
-            String finalPrincipalUid = principalUid;
-            enquiryQueryWrapper.and(
-                    wrapper ->
-                            wrapper.eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
-                                    .or()
-                                    .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
-        }
-        enquiryQueryWrapper.ne(AdwebEnquiry::getUserEffective, 0);
-        int all = (int) adwebEnquiryService.count(enquiryQueryWrapper);
-
-        LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper1 = new LambdaQueryWrapper<>();
-        enquiryQueryWrapper1.eq(AdwebEnquiry::getStatus, 1);
-        if (start != null) {
-            enquiryQueryWrapper1.ge(AdwebEnquiry::getRecordCtime, start);
-        }
-        if (end != null) {
-            enquiryQueryWrapper1.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
-        }
-        if (siteIds != null) {
-            enquiryQueryWrapper1.in(AdwebEnquiry::getSiteId, siteIds);
-        }
-        enquiryQueryWrapper1.eq(AdwebEnquiry::getReadStatus, 0);
-        if (StringUtils.isNotBlank(principalUid)) {
-            String finalPrincipalUid = principalUid;
-            enquiryQueryWrapper1.and(
-                    wrapper ->
-                            wrapper.eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
-                                    .or()
-                                    .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
-        }
-        enquiryQueryWrapper1.ne(AdwebEnquiry::getUserEffective, 0);
-        int noRead = (int) adwebEnquiryService.count(enquiryQueryWrapper1);
-
-        LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper2 = new LambdaQueryWrapper<>();
-        enquiryQueryWrapper2.eq(AdwebEnquiry::getStatus, 1);
-        if (start != null) {
-            enquiryQueryWrapper2.ge(AdwebEnquiry::getRecordCtime, start);
-        }
-        if (end != null) {
-            enquiryQueryWrapper2.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
-        }
-        if (siteIds != null) {
-            enquiryQueryWrapper2.in(AdwebEnquiry::getSiteId, siteIds);
-        }
-        enquiryQueryWrapper2.eq(AdwebEnquiry::getUserEffective, 1);
-        if (StringUtils.isNotBlank(principalUid)) {
-            String finalPrincipalUid = principalUid;
-            enquiryQueryWrapper2.and(
-                    wrapper ->
-                            wrapper.eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
-                                    .or()
-                                    .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
-        }
-        enquiryQueryWrapper2.ne(AdwebEnquiry::getUserEffective, 0);
-        int product = (int) adwebEnquiryService.count(enquiryQueryWrapper2);
-
-        LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper3 = new LambdaQueryWrapper<>();
-        enquiryQueryWrapper3.eq(AdwebEnquiry::getStatus, 1);
-        if (start != null) {
-            enquiryQueryWrapper3.ge(AdwebEnquiry::getRecordCtime, start);
-        }
-        if (end != null) {
-            enquiryQueryWrapper3.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
-        }
-        if (siteIds != null) {
-            enquiryQueryWrapper3.in(AdwebEnquiry::getSiteId, siteIds);
-        }
-        enquiryQueryWrapper3.eq(AdwebEnquiry::getUserEffective, 2);
-        if (StringUtils.isNotBlank(principalUid)) {
-            String finalPrincipalUid = principalUid;
-            enquiryQueryWrapper3.and(
-                    wrapper ->
-                            wrapper.eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
-                                    .or()
-                                    .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
-        }
-        enquiryQueryWrapper3.ne(AdwebEnquiry::getUserEffective, 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 id 询盘id
-     * @return 处理结果
-     */
-    @GetMapping("/read")
-    public Result<?> read(@Param("id") String id) {
-        if (disableAdminRead && (sysAdwebApi.isAdmin() || sysAdwebApi.isChannelAdmin())) {
-            return Result.OK();
-        }
-        LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
-        updateWrapper.in(AdwebEnquiry::getId, id);
-        updateWrapper.set(AdwebEnquiry::getReadStatus, 1);
-        adwebEnquiryService.update(updateWrapper);
-        return Result.OK();
-    }
-
-    /**
-     * @param query
-     * @return
-     */
-    @RequestMapping(value = "/enquiryTrans", method = RequestMethod.POST)
-    @ResponseBody
-    public Result<String> getEnquiryTrans(String query, String id) {
-        String text = awsTranslateUtils.translate(query);
-        LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
-        updateWrapper.eq(AdwebEnquiry::getId, id);
-        updateWrapper.set(AdwebEnquiry::getTransContent, text);
-        adwebEnquiryService.update(updateWrapper);
-
-        return Result.ok(text);
-    }
-
-    /** 更改询盘用户有效性 */
-    @PostMapping("/update/user/effective")
-    public Result<?> updateUserEffective(EffectiveEnquiryParamDto effectiveEnquiryParamDto) {
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-
-        boolean res = adwebEnquiryService.updateUserEffective(effectiveEnquiryParamDto);
-        if (res) {
-            return Result.OK("ok");
-        }
-        return Result.error("fail");
-    }
-
-    /** 转发询盘 */
-    @AutoLog(value = "转发询盘")
-    @GetMapping(value = "/setForward")
-    public Result<?> setForward(
-            @RequestParam String ids, @RequestParam String uid, @RequestParam String code) {
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-
-        SysUser user = sysUserService.getById(uid);
-        if (StringUtils.isEmpty(user.getEmail())) {
-            return Result.error("该账户未设置邮箱!");
-        }
-        List<String> idList = Arrays.asList(ids.split(","));
-        LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
-        updateWrapper.in(AdwebEnquiry::getId, idList);
-        updateWrapper.set(AdwebEnquiry::getPrincipalUid, uid);
-        updateWrapper.set(AdwebEnquiry::getPrincipalType, 1);
-        adwebEnquiryService.update(updateWrapper);
-
-        LambdaQueryWrapper<AdwebEnquiry> queryWrapper = new LambdaQueryWrapper<>();
-        queryWrapper.in(AdwebEnquiry::getId, idList);
-        List<AdwebEnquiry> list = adwebEnquiryService.list(queryWrapper);
-        // 获取站点
-        LambdaQueryWrapper<AdwebSite> adwebSiteQueryWrapper = new LambdaQueryWrapper<>();
-        adwebSiteQueryWrapper.eq(AdwebSite::getCode, code);
-        AdwebSite adwebSite = adwebSiteService.getOne(adwebSiteQueryWrapper);
-
-        // 返回跟进人名称
-        for (String id : idList) {
-            AdwebEnquiry adwebEnquiry = adwebEnquiryService.getById(id);
-
-            adwebEnquiryService.specialSendEmail(adwebEnquiry, adwebSite);
-            if (adwebEnquiry != null && StringUtils.isNotBlank(adwebEnquiry.getRecordId())) {
-                adwebEnquiryService.returnSalesperson(
-                        code, adwebEnquiry.getRecordId(), user.getUsername());
+          }
+          atomicInteger.getAndIncrement();
+          enquiry.setDataIndex(atomicInteger.get());
+
+          // 示例关键信息脱敏
+          if (demoFlag) {
+            enquiry.setFormCompany("**********");
+            enquiry.setFromEmail("**********");
+            enquiry.setWhatsApp("**********");
+            enquiry.setPhone("**********");
+            String siteName = enquiry.getSiteName();
+            enquiry.setSiteName(
+                siteName.substring(0, 2)
+                    + "**********"
+                    + siteName.substring(siteName.length() - 2));
+          }
+
+          /**********************字典数据处理***********************/
+          if (CollectionUtils.isNotEmpty(userEffectiveDict)) {
+            userEffectiveDict.forEach(
+                dict -> {
+                  if (dict.getValue().equals(enquiry.getUserEffective() + "")) {
+                    enquiry.setUserEffectiveStr(dict.getLabel());
+                  }
+                });
+          }
+
+          if (StringUtils.isNotBlank(enquiry.getPrincipalUid())) {
+            SysUser sysUser = sysUserService.getById(enquiry.getPrincipalUid());
+            enquiry.setPrincipalName(sysUser.getUsername());
+          } else {
+            enquiry.setPrincipalName("ALL");
+          }
+
+          // 询盘中用户自定义的字段处理
+          if (StringUtils.isNotBlank(enquiry.getSpecialField())) {
+            List<EnquirySpecialFields> specialFieldsList =
+                FastJsonUtil.parseList(enquiry.getSpecialField(), EnquirySpecialFields.class);
+            enquiry.setSpecialFieldList(specialFieldsList);
+            enquiry.setSpecialField(null);
+          }
+
+          if (StringUtils.isNotBlank(enquiry.getContext())) {
+            String context = enquiry.getContext();
+            Pattern CRLF = Pattern.compile("(\r\n|\r|\n|\n\r)");
+            Matcher m = CRLF.matcher(context);
+            if (m.find()) {
+              context = m.replaceAll("<br/>");
             }
-        }
-        return Result.OK();
-    }
-
-    /** 回收站列表接口 */
-    @AutoLog(value = "adweb_enquiry-分页列表查询")
-    @GetMapping(value = "/queryWasteEnquiryList")
-    public Result<?> queryWasteEnquiryList(
-            Integer siteId,
-            String searchText,
-            String enquiryType,
-            @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
-            @RequestParam(name = "pageSize", defaultValue = "1000") Integer pageSize) {
-        if (sysAdwebApi.isNotOwnSite(siteId)) {
-            return Result.OK(new Page<>());
-        }
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-        Page<EnquirySearchDto> page = new Page<>(pageNo, pageSize);
-        List<String> codeList = null;
-        List<String> uidList = null;
-
-        if (sysAdwebApi.isAdmin()) {
-        } else if (sysAdwebApi.isChannelAdmin()) {
-            uidList = sysAdwebApi.getChannelGroupUids();
-        } else {
-            uidList = new ArrayList<>();
-            uidList.add(sysUser.getId());
-        }
-
-        List<String> siteCodeList = null;
-        if (CollectionUtils.isNotEmpty(uidList)) {
-            siteCodeList = siteUserPermissionService.getSiteCodeListByUids(uidList);
-        }
+            enquiry.setContext(context);
+          }
+        });
+  }
+
+  /**
+   * 添加
+   *
+   * @param adwebEnquiry
+   * @return
+   */
+  @AutoLog(value = "询盘信息存储表单-添加")
+  @Operation(summary = "询盘信息存储表单-添加")
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:add')")
+  @PostMapping(value = "/add")
+  public Result<String> add(@RequestBody AdwebEnquiry adwebEnquiry) {
+    adwebEnquiryService.save(adwebEnquiry);
+    return Result.OK("添加成功!");
+  }
+
+  /**
+   * 编辑
+   *
+   * @param adwebEnquiry
+   * @return
+   */
+  @AutoLog(value = "询盘信息存储表单-编辑")
+  @Operation(summary = "询盘信息存储表单-编辑")
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:edit')")
+  @RequestMapping(
+      value = "/edit",
+      method = {RequestMethod.PUT, RequestMethod.POST})
+  public Result<String> edit(@RequestBody AdwebEnquiry adwebEnquiry) {
+    adwebEnquiryService.updateById(adwebEnquiry);
+    return Result.OK("编辑成功!");
+  }
+
+  /**
+   * 通过id删除
+   *
+   * @param id
+   * @return
+   */
+  @AutoLog(value = "询盘信息存储表单-通过id删除")
+  @Operation(summary = "询盘信息存储表单-通过id删除")
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:delete')")
+  @DeleteMapping(value = "/delete")
+  public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
+    adwebEnquiryService.removeById(id);
+    return Result.OK("删除成功!");
+  }
+
+  /**
+   * 批量删除
+   *
+   * @param ids
+   * @return
+   */
+  @AutoLog(value = "询盘信息存储表单-批量删除")
+  @Operation(summary = "询盘信息存储表单-批量删除")
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:deleteBatch')")
+  @DeleteMapping(value = "/deleteBatch")
+  public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
+    this.adwebEnquiryService.removeByIds(Arrays.asList(ids.split(",")));
+    return Result.OK("批量删除成功!");
+  }
+
+  /**
+   * 通过id查询
+   *
+   * @param id
+   * @return
+   */
+  // @AutoLog(value = "询盘信息存储表单-通过id查询")
+  @Operation(summary = "询盘信息存储表单-通过id查询")
+  @GetMapping(value = "/queryById")
+  public Result<AdwebEnquiry> queryById(@RequestParam(name = "id", required = true) String id) {
+    AdwebEnquiry adwebEnquiry = adwebEnquiryService.getById(id);
+    if (adwebEnquiry == null) {
+      return Result.error("未找到对应数据");
+    }
+    return Result.OK(adwebEnquiry);
+  }
+
+  /**
+   * 导出excel
+   *
+   * @param request
+   * @param adwebEnquiry
+   */
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:exportXls')")
+  @RequestMapping(value = "/exportXls")
+  public ModelAndView exportXls(HttpServletRequest request, AdwebEnquiry adwebEnquiry) {
+    return super.exportXls(request, adwebEnquiry, AdwebEnquiry.class, "询盘信息存储表单");
+  }
+
+  /**
+   * 通过excel导入数据
+   *
+   * @param request
+   * @param response
+   * @return
+   */
+  @PreAuthorize("@jps.requiresPermissions('adweb:adweb_enquiry:importExcel')")
+  @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+  public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+    return super.importExcel(request, response, AdwebEnquiry.class);
+  }
+
+  /** 获取需要轮流询盘的站点code */
+  @GetMapping("/getTurnInquiryCode")
+  public Result<?> getTurnInquiryCode() {
+    List<DictPropertyModel> siteRes = sysAdwebApi.queryDictInfoByDictCode("turn_inquiry_site_code");
+    if (CollectionUtils.isNotEmpty(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)) {
+      Pair<Date, Date> dateRange = DateUtil.getDateRangeByType(dateType);
+      start = dateRange.getLeft();
+      end = dateRange.getRight();
+    }
 
-        codeList =
-                adwebSiteService
-                        .list(
-                                new LambdaQueryWrapper<AdwebSite>()
-                                        .eq(siteId != null, AdwebSite::getId, siteId)
-                                        .in(
-                                                !sysAdwebApi.isAdmin(),
-                                                AdwebSite::getCode,
-                                                siteCodeList)
-                                        .ne(AdwebSite::getStatus, 0))
-                        .stream()
-                        .map(AdwebSite::getCode)
-                        .collect(Collectors.toList());
-
-        String principalUid = null;
-        if (sysAdwebApi.isAdwebSubVip()) {
-            principalUid = sysUser.getId();
-        }
-        if (StringUtils.isNotBlank(searchText)) {
-            searchText = searchText.trim();
-        }
-        enquiryType = "(" + enquiryType + ")";
-        IPage<EnquiryListDto> pageList =
-                adwebEnquiryMapper.queryWasteEnquiryList(
-                        page,
-                        codeList,
-                        "",
-                        enquiryType,
-                        searchText,
-                        null,
-                        null,
-                        null,
-                        principalUid);
-        if (CollectionUtils.isNotEmpty(pageList.getRecords())) {
-            dealInfo(pageList.getRecords());
-            return Result.OK(pageList);
-        }
-        dealInfo(pageList.getRecords());
-        return Result.OK(pageList);
-    }
-
-    /**
-     * 批量复原
-     *
-     * @param adwebEnquiry
-     * @return
-     */
-    @PutMapping(value = "/refreshBatch")
-    public Result<?> refreshBatch(@RequestBody AdwebEnquiry adwebEnquiry) {
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-
-        LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
-        updateWrapper.in(AdwebEnquiry::getId, adwebEnquiry.getNo().split(","));
-        updateWrapper.set(AdwebEnquiry::getStatus, 1);
-        adwebEnquiryService.update(updateWrapper);
-
-        return Result.OK("批量复原成功!");
-    }
-
-    /**
-     * 批量删除
-     *
-     * @param id 删除的询盘
-     * @return
-     */
-    @GetMapping(value = "/delBatch")
-    public Result<?> delBatch(@RequestParam("id") String id) {
-
-        LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
-        updateWrapper.in(AdwebEnquiry::getId, id.split(","));
-        updateWrapper.set(AdwebEnquiry::getStatus, 0);
-        this.adwebEnquiryService.update(updateWrapper);
-        return Result.OK("批量删除成功!");
-    }
-
-    @GetMapping("/getWastedEnquiry")
-    public Result<List<EnquiryListDto>> getWastedEnquiry(
-            EnquiryListSearchDto enquiryListSearchDto) {
-
-        List<EnquiryListDto> wasterEnquiries =
-                adwebEnquiryMapper.getWastedEnquiry(
-                        enquiryListSearchDto.getWasteEnquiryType(),
-                        enquiryListSearchDto.getIp(),
-                        enquiryListSearchDto.getEmail(),
-                        enquiryListSearchDto.getKeyword(),
-                        enquiryListSearchDto.getSearchText(),
-                        enquiryListSearchDto.getType(),
-                        enquiryListSearchDto.getSiteId());
-
-        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-
-        return Result.OK(wasterEnquiries);
-    }
-
-    /**
-     * 根据询盘信息创建邮件发送记录
-     *
-     * @param adwebEnquiry 询盘信息
-     * @param email 接收邮箱
-     * @return
-     */
-    private static EnquiryEmailMessage newEmail(AdwebEnquiry adwebEnquiry, String email) {
-        EnquiryEmailMessage enquiryEmailMessage = new EnquiryEmailMessage();
-        enquiryEmailMessage.setEnquiryId(adwebEnquiry.getId());
-        enquiryEmailMessage.setEmail(email);
-        enquiryEmailMessage.setFromEmail(adwebEnquiry.getFromEmail());
-        enquiryEmailMessage.setCreateTime(new Date());
-        enquiryEmailMessage.setSiteCode(adwebEnquiry.getSiteCode());
-        enquiryEmailMessage.setSendStatus(EnquirySendStatus.WAIT_SEND);
-        enquiryEmailMessage.setSendErrorNum(0);
-
-        return enquiryEmailMessage;
+    List<Integer> siteIds = null;
+    if (siteId != null) {
+      String siteCode = adwebSiteService.getSiteCodeById(siteId);
+      LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
+      queryWrapper
+          .eq(AdwebSite::getCode, siteCode)
+          .or()
+          .eq(AdwebSite::getParentGroupCode, siteCode);
+      queryWrapper.ne(AdwebSite::getStatus, 0);
+      List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+      siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+    } else {
+      if (sysAdwebApi.isAdmin()) {
+        LambdaQueryWrapper<AdwebSite> queryWrapper = new LambdaQueryWrapper<>();
+        queryWrapper.ne(AdwebSite::getStatus, 0);
+        List<AdwebSite> sites = adwebSiteService.list(queryWrapper);
+        siteIds = sites.stream().map(AdwebSite::getId).collect(Collectors.toList());
+      } else if (sysAdwebApi.isChannelAdmin()) {
+        List<String> channelGroupUids = sysAdwebApi.getChannelGroupUids();
+        List<String> codeList = siteUserPermissionService.getSiteCodeListByUids(channelGroupUids);
+        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();
+    }
+
+    LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper = new LambdaQueryWrapper<>();
+    enquiryQueryWrapper.eq(AdwebEnquiry::getStatus, 1);
+    if (start != null) {
+      enquiryQueryWrapper.ge(AdwebEnquiry::getRecordCtime, start);
     }
+    if (end != null) {
+      enquiryQueryWrapper.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
+    }
+    if (siteIds != null) {
+      enquiryQueryWrapper.in(AdwebEnquiry::getSiteId, siteIds);
+    }
+    if (StringUtils.isNotBlank(principalUid)) {
+      String finalPrincipalUid = principalUid;
+      enquiryQueryWrapper.and(
+          wrapper ->
+              wrapper
+                  .eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
+                  .or()
+                  .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
+    }
+    enquiryQueryWrapper.ne(AdwebEnquiry::getUserEffective, 0);
+    int all = (int) adwebEnquiryService.count(enquiryQueryWrapper);
+
+    LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper1 = new LambdaQueryWrapper<>();
+    enquiryQueryWrapper1.eq(AdwebEnquiry::getStatus, 1);
+    if (start != null) {
+      enquiryQueryWrapper1.ge(AdwebEnquiry::getRecordCtime, start);
+    }
+    if (end != null) {
+      enquiryQueryWrapper1.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
+    }
+    if (siteIds != null) {
+      enquiryQueryWrapper1.in(AdwebEnquiry::getSiteId, siteIds);
+    }
+    enquiryQueryWrapper1.eq(AdwebEnquiry::getReadStatus, 0);
+    if (StringUtils.isNotBlank(principalUid)) {
+      String finalPrincipalUid = principalUid;
+      enquiryQueryWrapper1.and(
+          wrapper ->
+              wrapper
+                  .eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
+                  .or()
+                  .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
+    }
+    enquiryQueryWrapper1.ne(AdwebEnquiry::getUserEffective, 0);
+    int noRead = (int) adwebEnquiryService.count(enquiryQueryWrapper1);
+
+    LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper2 = new LambdaQueryWrapper<>();
+    enquiryQueryWrapper2.eq(AdwebEnquiry::getStatus, 1);
+    if (start != null) {
+      enquiryQueryWrapper2.ge(AdwebEnquiry::getRecordCtime, start);
+    }
+    if (end != null) {
+      enquiryQueryWrapper2.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
+    }
+    if (siteIds != null) {
+      enquiryQueryWrapper2.in(AdwebEnquiry::getSiteId, siteIds);
+    }
+    enquiryQueryWrapper2.eq(AdwebEnquiry::getUserEffective, 1);
+    if (StringUtils.isNotBlank(principalUid)) {
+      String finalPrincipalUid = principalUid;
+      enquiryQueryWrapper2.and(
+          wrapper ->
+              wrapper
+                  .eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
+                  .or()
+                  .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
+    }
+    enquiryQueryWrapper2.ne(AdwebEnquiry::getUserEffective, 0);
+    int product = (int) adwebEnquiryService.count(enquiryQueryWrapper2);
+
+    LambdaQueryWrapper<AdwebEnquiry> enquiryQueryWrapper3 = new LambdaQueryWrapper<>();
+    enquiryQueryWrapper3.eq(AdwebEnquiry::getStatus, 1);
+    if (start != null) {
+      enquiryQueryWrapper3.ge(AdwebEnquiry::getRecordCtime, start);
+    }
+    if (end != null) {
+      enquiryQueryWrapper3.lt(AdwebEnquiry::getRecordCtime, DateUtil.addDays(end, 1));
+    }
+    if (siteIds != null) {
+      enquiryQueryWrapper3.in(AdwebEnquiry::getSiteId, siteIds);
+    }
+    enquiryQueryWrapper3.eq(AdwebEnquiry::getUserEffective, 2);
+    if (StringUtils.isNotBlank(principalUid)) {
+      String finalPrincipalUid = principalUid;
+      enquiryQueryWrapper3.and(
+          wrapper ->
+              wrapper
+                  .eq(AdwebEnquiry::getPrincipalUid, finalPrincipalUid)
+                  .or()
+                  .eq(AdwebEnquiry::getPrincipalUid, "ALL"));
+    }
+    enquiryQueryWrapper3.ne(AdwebEnquiry::getUserEffective, 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 id 询盘id
+   * @return 处理结果
+   */
+  @GetMapping("/read")
+  public Result<?> read(@Param("id") String id) {
+    if (disableAdminRead && (sysAdwebApi.isAdmin() || sysAdwebApi.isChannelAdmin())) {
+      return Result.OK();
+    }
+    LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
+    updateWrapper.in(AdwebEnquiry::getId, id);
+    updateWrapper.set(AdwebEnquiry::getReadStatus, 1);
+    adwebEnquiryService.update(updateWrapper);
+    return Result.OK();
+  }
+
+  /**
+   * @param query
+   * @return
+   */
+  @RequestMapping(value = "/enquiryTrans", method = RequestMethod.POST)
+  @ResponseBody
+  public Result<String> getEnquiryTrans(String query, String id) {
+    String text = awsTranslateUtils.translate(query);
+    LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
+    updateWrapper.eq(AdwebEnquiry::getId, id);
+    updateWrapper.set(AdwebEnquiry::getTransContent, text);
+    adwebEnquiryService.update(updateWrapper);
+
+    return Result.ok(text);
+  }
+
+  /** 更改询盘用户有效性 */
+  @PostMapping("/update/user/effective")
+  public Result<?> updateUserEffective(EffectiveEnquiryParamDto effectiveEnquiryParamDto) {
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+
+    boolean res = adwebEnquiryService.updateUserEffective(effectiveEnquiryParamDto);
+    if (res) {
+      return Result.OK("ok");
+    }
+    return Result.error("fail");
+  }
+
+  /** 转发询盘 */
+  @AutoLog(value = "转发询盘")
+  @GetMapping(value = "/setForward")
+  public Result<?> setForward(
+      @RequestParam String ids, @RequestParam String uid, @RequestParam String code) {
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+
+    SysUser user = sysUserService.getById(uid);
+    if (StringUtils.isEmpty(user.getEmail())) {
+      return Result.error("该账户未设置邮箱!");
+    }
+    List<String> idList = Arrays.asList(ids.split(","));
+    LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
+    updateWrapper.in(AdwebEnquiry::getId, idList);
+    updateWrapper.set(AdwebEnquiry::getPrincipalUid, uid);
+    updateWrapper.set(AdwebEnquiry::getPrincipalType, 1);
+    adwebEnquiryService.update(updateWrapper);
+
+    LambdaQueryWrapper<AdwebEnquiry> queryWrapper = new LambdaQueryWrapper<>();
+    queryWrapper.in(AdwebEnquiry::getId, idList);
+    List<AdwebEnquiry> list = adwebEnquiryService.list(queryWrapper);
+    // 获取站点
+    LambdaQueryWrapper<AdwebSite> adwebSiteQueryWrapper = new LambdaQueryWrapper<>();
+    adwebSiteQueryWrapper.eq(AdwebSite::getCode, code);
+    AdwebSite adwebSite = adwebSiteService.getOne(adwebSiteQueryWrapper);
+
+    // 返回跟进人名称
+    for (String id : idList) {
+      AdwebEnquiry adwebEnquiry = adwebEnquiryService.getById(id);
+
+      adwebEnquiryService.specialSendEmail(adwebEnquiry, adwebSite);
+      if (adwebEnquiry != null && StringUtils.isNotBlank(adwebEnquiry.getRecordId())) {
+        adwebEnquiryService.returnSalesperson(code, adwebEnquiry.getRecordId(), user.getUsername());
+      }
+    }
+    return Result.OK();
+  }
+
+  /** 回收站列表接口 */
+  @AutoLog(value = "adweb_enquiry-分页列表查询")
+  @GetMapping(value = "/queryWasteEnquiryList")
+  public Result<?> queryWasteEnquiryList(
+      Integer siteId,
+      String searchText,
+      String enquiryType,
+      @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+      @RequestParam(name = "pageSize", defaultValue = "1000") Integer pageSize) {
+    if (sysAdwebApi.isNotOwnSite(siteId)) {
+      return Result.OK(new Page<>());
+    }
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+    Page<EnquirySearchDto> page = new Page<>(pageNo, pageSize);
+    List<String> codeList = null;
+    List<String> uidList = null;
+
+    if (sysAdwebApi.isAdmin()) {
+    } else if (sysAdwebApi.isChannelAdmin()) {
+      uidList = sysAdwebApi.getChannelGroupUids();
+    } else {
+      uidList = new ArrayList<>();
+      uidList.add(sysUser.getId());
+    }
+
+    List<String> siteCodeList = null;
+    if (CollectionUtils.isNotEmpty(uidList)) {
+      siteCodeList = siteUserPermissionService.getSiteCodeListByUids(uidList);
+    }
+
+    codeList =
+        adwebSiteService
+            .list(
+                new LambdaQueryWrapper<AdwebSite>()
+                    .eq(siteId != null, AdwebSite::getId, siteId)
+                    .in(!sysAdwebApi.isAdmin(), AdwebSite::getCode, siteCodeList)
+                    .ne(AdwebSite::getStatus, 0))
+            .stream()
+            .map(AdwebSite::getCode)
+            .collect(Collectors.toList());
+
+    String principalUid = null;
+    if (sysAdwebApi.isAdwebSubVip()) {
+      principalUid = sysUser.getId();
+    }
+    if (StringUtils.isNotBlank(searchText)) {
+      searchText = searchText.trim();
+    }
+    enquiryType = "(" + enquiryType + ")";
+    IPage<EnquiryListDto> pageList =
+        adwebEnquiryMapper.queryWasteEnquiryList(
+            page, codeList, "", enquiryType, searchText, null, null, null, principalUid);
+    if (CollectionUtils.isNotEmpty(pageList.getRecords())) {
+      dealInfo(pageList.getRecords());
+      return Result.OK(pageList);
+    }
+    dealInfo(pageList.getRecords());
+    return Result.OK(pageList);
+  }
+
+  /**
+   * 批量复原
+   *
+   * @param adwebEnquiry
+   * @return
+   */
+  @PutMapping(value = "/refreshBatch")
+  public Result<?> refreshBatch(@RequestBody AdwebEnquiry adwebEnquiry) {
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+
+    LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
+    updateWrapper.in(AdwebEnquiry::getId, adwebEnquiry.getNo().split(","));
+    updateWrapper.set(AdwebEnquiry::getStatus, 1);
+    adwebEnquiryService.update(updateWrapper);
+
+    return Result.OK("批量复原成功!");
+  }
+
+  /**
+   * 批量删除
+   *
+   * @param id 删除的询盘
+   * @return
+   */
+  @GetMapping(value = "/delBatch")
+  public Result<?> delBatch(@RequestParam("id") String id) {
+
+    LambdaUpdateWrapper<AdwebEnquiry> updateWrapper = new LambdaUpdateWrapper<>();
+    updateWrapper.in(AdwebEnquiry::getId, id.split(","));
+    updateWrapper.set(AdwebEnquiry::getStatus, 0);
+    this.adwebEnquiryService.update(updateWrapper);
+    return Result.OK("批量删除成功!");
+  }
+
+  @GetMapping("/getWastedEnquiry")
+  public Result<List<EnquiryListDto>> getWastedEnquiry(EnquiryListSearchDto enquiryListSearchDto) {
+
+    List<EnquiryListDto> wasterEnquiries =
+        adwebEnquiryMapper.getWastedEnquiry(
+            enquiryListSearchDto.getWasteEnquiryType(),
+            enquiryListSearchDto.getIp(),
+            enquiryListSearchDto.getEmail(),
+            enquiryListSearchDto.getKeyword(),
+            enquiryListSearchDto.getSearchText(),
+            enquiryListSearchDto.getType(),
+            enquiryListSearchDto.getSiteId());
+
+    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+
+    return Result.OK(wasterEnquiries);
+  }
+
+  // 本地开发环境测试询盘同步,从远程站点拉取询盘到开发数据库
+  @IgnoreAuth
+  @GetMapping("local_test_enquiryNotify")
+  public Result<?> enquiryNotifyss(
+      @RequestParam(name = "siteCodeJobParam", required = false) String siteCodeJobParam,
+      @RequestParam(name = "siteRecodeId", required = false) String siteRecodeId) {
+
+    if (StringUtils.isBlank(siteCodeJobParam)) {
+      return Result.error("请输入站点code");
+    }
+
+    if (StringUtils.isBlank(siteRecodeId)) {
+      return Result.error("站点询盘记录ID");
+    }
+
+    QueryWrapper<AdwebSite> queryWrapper = new QueryWrapper<>();
+    queryWrapper
+        .ne("status", 0)
+        .in("create_type", Arrays.asList("manual", "wp"))
+        .eq("code", siteCodeJobParam);
+
+    List<AdwebSite> siteList = adwebSiteService.list(queryWrapper);
+
+    if (siteList.isEmpty()) {
+      return Result.error("当前站点不存在");
+    }
+
+    String jsonString =
+        "{\"1\":{\"name\":\"Name\",\"value\":\"chen peiqing\",\"id\":1,\"type\":\"text\"},\"2\":{\"name\":\"Email\",\"value\":\"chenpeiqing.1393599253@live.com\",\"id\":2,\"type\":\"email\"},\"3\":{\"name\":\"Phone\",\"value\":\"13223012703\",\"id\":3,\"type\":\"phone\"},\"4\":{\"name\":\"Message\",\"value\":\"tets\",\"id\":4,\"type\":\"textarea\"},\"5\":{\"name\":\"Customer IP\",\"value\":\"::1\",\"id\":5,\"type\":\"hidden\"},\"6\":{\"name\":\"From Page\",\"value\":\"http:\\/\\/wp063.cpq\\/products\\/occupancy-product-3\\/\",\"id\":6,\"type\":\"hidden\"}}";
+
+    JSONObject object = FastJsonUtil.parseObject(jsonString, JSONObject.class);
+    EnquiryDTO adwebEnquiry = new EnquiryDTO();
+    adwebEnquiry.setForms(object);
+    adwebEnquiry.setFromEmail("chenpeiqing.1393599253@dfd.com");
+    adwebEnquiry.setFromIp("107.182.184.127");
+    adwebEnquiry.setPluginName("wpforms");
+    adwebEnquiry.setSiteHost("20250219i96eui.v3-site.adwebcloud.com");
+    adwebEnquiry.setRecordCtime(new Date("Tue Feb 25 03:31:37 UTC 2025"));
+    adwebEnquiry.setRecordId(siteRecodeId);
+    // 模拟mq推送询盘
+    adwebEnquiryService.addEnquiry(adwebEnquiry, adwebEnquiry.getPluginName(), siteList.get(0));
+
+    return Result.OK(true);
+  }
+
+  /**
+   * 根据询盘信息创建邮件发送记录
+   *
+   * @param adwebEnquiry 询盘信息
+   * @param email 接收邮箱
+   * @return
+   */
+  private static EnquiryEmailMessage newEmail(AdwebEnquiry adwebEnquiry, String email) {
+    EnquiryEmailMessage enquiryEmailMessage = new EnquiryEmailMessage();
+    enquiryEmailMessage.setEnquiryId(adwebEnquiry.getId());
+    enquiryEmailMessage.setEmail(email);
+    enquiryEmailMessage.setFromEmail(adwebEnquiry.getFromEmail());
+    enquiryEmailMessage.setCreateTime(new Date());
+    enquiryEmailMessage.setSiteCode(adwebEnquiry.getSiteCode());
+    enquiryEmailMessage.setSendStatus(EnquirySendStatus.WAIT_SEND);
+    enquiryEmailMessage.setSendErrorNum(0);
+
+    return enquiryEmailMessage;
+  }
 }

+ 88 - 86
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/dto/result/EnquiryListDto.java

@@ -9,90 +9,92 @@ import java.util.List;
 
 @Data
 public class EnquiryListDto {
-    @JsonSerialize(using = ToStringSerializer.class)
-    private Long id;
-
-    // 询盘编号(系统生成)
-    private String no;
-    private String noOut;
-    // 询盘创建时间(发起时间)
-    private Date recordCtime;
-    // 询盘入库时间
-    private Date ctime;
-    // 询盘业务模块
-    private String modular;
-    // 询盘联系人
-    private String contact;
-    // 询盘内容
-    private String context;
-    // 询盘发送邮箱
-    private String fromEmail;
-    // 国家/地区
-    private String country;
-    // 发送询盘的站点
-    private String siteHost;
-    // 用户有效性
-    private Integer userEffective;
-    // 回复状态
-    private String replayStatus;
-    private Integer status;
-    private Integer siteId;
-    private String siteCode;
-
-    private List<String> job;
-    // 简历路径
-    private String path;
-
-    /** 后台处理字段 */
-
-    // 来源页面
-    private String fromPage;
-
-    // 电话
-    private String phone;
-    // 表单公司
-    private String formCompany;
-    // 用户有效性
-    private String userEffectiveStr;
-    // 敏感词
-    private String sensitiveMessage;
-    // 系统有效性
-    private Integer sysEffective;
-    private String siteName;
-    private String transContent;
-    private String cartItems;
-
-    /** 用于前端默认展示第一行数据 */
-    private Integer dataIndex;
-
-    private String whatsApp;
-
-    private String wasteEnquiry;
-
-    private String countryName;
-
-    private String countryCode;
-
-    private Integer readStatus;
-
-    private String fromIp;
-
-    private String customerIp;
-
-    private String visitId;
-
-    private String principalUid;
-
-    /** 特殊字段名 */
-    private String specialField;
-
-    private List<EnquirySpecialFields> specialFieldList;
-
-    /** 疑似垃圾询盘理由 */
-    private String effectiveReason;
-
-    /** 询盘来源插件名称 */
-    private String pluginName;
-
-    private String wasteEnquiryType;
+  @JsonSerialize(using = ToStringSerializer.class)
+  private Long id;
+
+  // 询盘编号(系统生成)
+  private String no;
+  private String noOut;
+  // 询盘创建时间(发起时间)
+  private Date recordCtime;
+  // 询盘入库时间
+  private Date ctime;
+  // 询盘业务模块
+  private String modular;
+  // 询盘联系人
+  private String contact;
+  // 询盘内容
+  private String context;
+  // 询盘发送邮箱
+  private String fromEmail;
+  // 国家/地区
+  private String country;
+  // 发送询盘的站点
+  private String siteHost;
+  // 用户有效性
+  private Integer userEffective;
+  // 回复状态
+  private String replayStatus;
+  private Integer status;
+  private Integer siteId;
+  private String siteCode;
+
+  private List<String> job;
+  // 简历路径
+  private String path;
+
+  /** 后台处理字段 */
+
+  // 来源页面
+  private String fromPage;
+
+  // 电话
+  private String phone;
+  // 表单公司
+  private String formCompany;
+  // 用户有效性
+  private String userEffectiveStr;
+  // 敏感词
+  private String sensitiveMessage;
+  // 系统有效性
+  private Integer sysEffective;
+  private String siteName;
+  private String transContent;
+  private String cartItems;
+
+  /** 用于前端默认展示第一行数据 */
+  private Integer dataIndex;
+
+  private String whatsApp;
+
+  private String wasteEnquiry;
+
+  private String countryName;
+
+  private String countryCode;
+
+  private Integer readStatus;
+
+  private String fromIp;
+
+  private String customerIp;
+
+  private String visitId;
+
+  private String principalUid;
+
+  private String principalName;
+
+  /** 特殊字段名 */
+  private String specialField;
+
+  private List<EnquirySpecialFields> specialFieldList;
+
+  /** 疑似垃圾询盘理由 */
+  private String effectiveReason;
+
+  /** 询盘来源插件名称 */
+  private String pluginName;
+
+  private String wasteEnquiryType;
 }

+ 330 - 403
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/enquiry/entity/AdwebEnquiry.java

@@ -6,20 +6,16 @@ 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 java.io.Serializable;
+import java.util.Date;
 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: 询盘信息存储表单
- * @Author: jeecg-boot
- * @Date: 2024-10-12
- * @Version: V1.0
+ * @Description: 询盘信息存储表单 @Author: jeecg-boot @Date: 2024-10-12 @Version: V1.0
  */
 @Data
 @TableName("adweb_enquiry")
@@ -27,400 +23,331 @@ import java.util.Date;
 @EqualsAndHashCode(callSuper = false)
 @Schema(description = "询盘信息存储表单")
 public class AdwebEnquiry implements Serializable {
-    private static final long serialVersionUID = 1L;
-
-    /**
-     * 主键ID
-     */
-    @TableId(type = IdType.AUTO)
-    @Schema(description = "主键ID")
-    private Long id;
-    /**
-     * 询盘单号、根据系统规定生成
-     */
-    @Excel(name = "询盘单号、根据系统规定生成", width = 15)
-    @Schema(description = "询盘单号、根据系统规定生成")
-    private String no;
-    /**
-     * 询盘来源IP
-     */
-    @Excel(name = "询盘来源IP", width = 15)
-    @Schema(description = "询盘来源IP")
-    private String fromIp;
-    /**
-     * 询盘发送者邮箱账号
-     */
-    @Excel(name = "询盘发送者邮箱账号", width = 15)
-    @Schema(description = "询盘发送者邮箱账号")
-    private String fromEmail;
-    /**
-     * 询盘模块:web:网站询盘 ;email:邮件询盘  ;diy_element:自定义组件询盘
-     */
-    @Excel(name = "询盘模块:web:网站询盘 ;email:邮件询盘  ;diy_element:自定义组件询盘", width = 15)
-    @Schema(description = "询盘模块:web:网站询盘 ;email:邮件询盘  ;diy_element:自定义组件询盘")
-    private String modular;
-    /**
-     * 发送人姓名
-     */
-    @Excel(name = "发送人姓名", width = 15)
-    @Schema(description = "发送人姓名")
-    private String fromUser;
-    /**
-     * 0删除,1有效,默认值1   2:待解析  3:数据解析中 4.解析失败
-     */
-    @Excel(name = "0删除,1有效,默认值1   2:待解析  3:数据解析中 4.解析失败", width = 15)
-    @Schema(description = "0删除,1有效,默认值1   2:待解析  3:数据解析中 4.解析失败")
-    private Integer status;
-    /**
-     * 数据解析次数
-     */
-    @Excel(name = "数据解析次数", width = 15)
-    @Schema(description = "数据解析次数")
-    private Integer dealCount;
-    /**
-     * 系统有效性  0:无效       1;有效 后台字段
-     */
-    @Excel(name = "系统有效性  0:无效       1;有效 后台字段", width = 15)
-    @Schema(description = "系统有效性  0:无效       1;有效 后台字段")
-    private Integer sysEffective;
-    /**
-     * 用户有效性  0:无效       1:有效   2 : 待定 取自字典表
-     */
-    @Excel(name = "用户有效性  0:无效       1:有效   2 : 待定 取自字典表", width = 15)
-    @Schema(description = "用户有效性  0:无效       1:有效   2 : 待定 取自字典表")
-    private Integer userEffective;
-    /**
-     * 敏感信息
-     */
-    @Excel(name = "敏感信息", width = 15)
-    @Schema(description = "敏感信息")
-    private String sensitiveMessage;
-    /**
-     * 询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)
-     */
-    @Excel(name = "询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)", width = 15)
-    @Schema(description = "询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)")
-    private String phase;
-    /**
-     * 跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)
-     */
-    @Excel(name = "跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)", width = 15)
-    @Schema(description = "跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)")
-    private String trackStatus;
-    /**
-     * 询盘所属用户主账号ID
-     */
-    @Excel(name = "询盘所属用户主账号ID", width = 15)
-    @Schema(description = "询盘所属用户主账号ID")
-    private String uid;
-    /**
-     * 询盘跟进人 id
-     */
-    @Excel(name = "询盘跟进人 id", width = 15)
-    @Schema(description = "询盘跟进人 id")
-    private Integer tracker;
-    /**
-     * 询盘创建时间
-     */
-    @Excel(name = "询盘创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "询盘创建时间")
-    private Date recordCtime;
-    /**
-     * ADMP平台创建时间
-     */
-    @Excel(name = "ADMP平台创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "ADMP平台创建时间")
-    private Date ctime;
-    /**
-     * 国家/地区(根据ip获取)
-     */
-    @Excel(name = "国家/地区(根据ip获取)", width = 15)
-    @Schema(description = "国家/地区(根据ip获取)")
-    private String country;
-    
-    /**
-     * 询盘插件名称,名称小写,如:wpforms
-     */
-    @Excel(name = "询盘插件名称,名称小写,如:wpforms", width = 15)
-    @Schema(description = "询盘插件名称,名称小写,如:wpforms")
-    private String pluginName;
-    /**
-     * 站点code,关联站点表
-     */
-    @Excel(name = "站点code,关联站点表", width = 15)
-    @Schema(description = "站点code,关联站点表")
-    private String siteCode;
-    /**
-     * 站点token
-     */
-    @Excel(name = "站点token", width = 15)
-    @Schema(description = "站点token")
-    private String siteToken;
-    /**
-     * 询盘来自站点的域名
-     */
-    @Excel(name = "询盘来自站点的域名", width = 15)
-    @Schema(description = "询盘来自站点的域名")
-    private String siteHost;
-    /**
-     * 询盘原站点记录ID
-     */
-    @Excel(name = "询盘原站点记录ID", width = 15)
-    @Schema(description = "询盘原站点记录ID")
-    private String recordId;
-    /**
-     * 状态更新时间
-     */
-    @Excel(name = "状态更新时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "状态更新时间")
-    private Date utime;
-    /**
-     * 回复时间
-     */
-    @Excel(name = "回复时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "回复时间")
-    private Date replyTime;
-    /**
-     * 转发状态:0未转发,1已转发,默认值0
-     */
-    @Excel(name = "转发状态:0未转发,1已转发,默认值0", width = 15)
-    @Schema(description = "转发状态:0未转发,1已转发,默认值0")
-    private Integer forward;
-    /**
-     * 转发时间
-     */
-    @Excel(name = "转发时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "转发时间")
-    private Date forwardTime;
-    /**
-     * 访客id
-     */
-    @Excel(name = "访客id", width = 15)
-    @Schema(description = "访客id")
-    private String visitId;
-    /**
-     * 来源于站点的id
-     */
-    @Excel(name = "来源于站点的id", width = 15)
-    @Schema(description = "来源于站点的id")
-    private Integer siteId;
-    /**
-     * 公司id
-     */
-    @Excel(name = "公司id", width = 15)
-    @Schema(description = "公司id")
-    private Integer companyId;
-    /**
-     * 联系人id,字符串组合
-     */
-    @Excel(name = "联系人id,字符串组合", width = 15)
-    @Schema(description = "联系人id,字符串组合")
-    private String contactIds;
-    /**
-     * 定时器任务修改查询唯一标识(10位随机数)
-     */
-    @Excel(name = "定时器任务修改查询唯一标识(10位随机数)", width = 15)
-    @Schema(description = "定时器任务修改查询唯一标识(10位随机数)")
-    private String jobId;
-    /**
-     * 回复状态
-     */
-    @Excel(name = "回复状态", width = 15)
-    @Schema(description = "回复状态")
-    private String replayStatus;
-    /**
-     * 外部编号
-     */
-    @Excel(name = "外部编号", width = 15)
-    @Schema(description = "外部编号")
-    private String noOut;
-    /**
-     * 处理后的询盘当地时间字段
-     */
-    @Excel(name = "处理后的询盘当地时间字段", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "处理后的询盘当地时间字段")
-    private Date modifyRecordCtime;
-    /**
-     * transContent
-     */
-    @Excel(name = "transContent", width = 15)
-    @Schema(description = "transContent")
-    private String transContent;
-    /**
-     * 国家code
-     */
-    @Excel(name = "国家code", width = 15)
-    @Schema(description = "国家code")
-    private String countryCode;
-    /**
-     * 国家名
-     */
-    @Excel(name = "国家名", width = 15)
-    @Schema(description = "国家名")
-    private String countryName;
-    /**
-     * whatsApp
-     */
-    @Excel(name = "whatsApp", width = 15)
-    @Schema(description = "whatsApp")
-    private String whatsApp;
-    /**
-     * 0:不是;1:是
-     */
-    @Excel(name = "0:不是;1:是", width = 15)
-    @Schema(description = "0:不是;1:是")
-    private Integer wasteEnquiry;
-    /**
-     * 推送状态,0:待发送,1:成功,2不予发送
-     */
-    @Excel(name = "推送状态,0:待发送,1:成功,2不予发送", width = 15)
-    @Schema(description = "推送状态,0:待发送,1:成功,2不予发送")
-    private Integer pushStatus;
-    /**
-     * 推送错误次数
-     */
-    @Excel(name = "推送错误次数", width = 15)
-    @Schema(description = "推送错误次数")
-    private Integer pushErrorNum;
-    /**
-     * 姓名
-     */
-    @Excel(name = "姓名", width = 15)
-    @Schema(description = "姓名")
-    private String name;
-    /**
-     * 邮箱地址
-     */
-    @Excel(name = "邮箱地址", width = 15)
-    @Schema(description = "邮箱地址")
-    private String email;
-    /**
-     * 询盘信息
-     */
-    @Excel(name = "询盘信息", width = 15)
-    @Schema(description = "询盘信息")
-    private String message;
-    /**
-     * 公司名称
-     */
-    @Excel(name = "公司名称", width = 15)
-    @Schema(description = "公司名称")
-    private String company;
-    /**
-     * 来源页面
-     */
-    @Excel(name = "来源页面", width = 15)
-    @Schema(description = "来源页面")
-    private String fromPage;
-    /**
-     * form表单传入Ip
-     */
-    @Excel(name = "form表单传入Ip", width = 15)
-    @Schema(description = "form表单传入Ip")
-    private String customerIp;
-    /**
-     * 手机号
-     */
-    @Excel(name = "手机号", width = 15)
-    @Schema(description = "手机号")
-    private String phone;
-    /**
-     * whatsapp
-     */
-
-    private String whatsapp;
-    /**
-     * 阅读状态,0是未阅读,1是已阅读
-     */
-    @Excel(name = "阅读状态,0是未阅读,1是已阅读", width = 15)
-    @Schema(description = "阅读状态,0是未阅读,1是已阅读")
-    private Integer readStatus;
-    /**
-     * 负责人的id
-     */
-    @Excel(name = "负责人的id", width = 15)
-    @Schema(description = "负责人的id")
-    private String principalUid;
-    /**
-     * 0代表系统根据规则分配,1代表主账户指定
-     */
-    @Excel(name = "0代表系统根据规则分配,1代表主账户指定", width = 15)
-    @Schema(description = "0代表系统根据规则分配,1代表主账户指定")
-    private Integer principalType;
-    /**
-     * form表单中的地址
-     */
-    @Excel(name = "form表单中的地址", width = 15)
-    @Schema(description = "form表单中的地址")
-    private String address;
-    /**
-     * 客户自定义字段
-     */
-    @Excel(name = "客户自定义字段", width = 15)
-    @Schema(description = "客户自定义字段")
-    private String specialField;
-    /**
-     * 向Wp发送请求时间
-     */
-    @Excel(name = "向Wp发送请求时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "向Wp发送请求时间")
-    private Date requestTime;
-    /**
-     * Adweb实时获取WebHookS消息时间,定时器无该值
-     */
-    @Excel(name = "Adweb实时获取WebHookS消息时间,定时器无该值", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @Schema(description = "Adweb实时获取WebHookS消息时间,定时器无该值")
-    private Date acquireMessageTime;
-    /**
-     * 疑似垃圾询盘理由
-     */
-    @Excel(name = "疑似垃圾询盘理由", width = 15)
-    @Schema(description = "疑似垃圾询盘理由")
-    private String effectiveReason;
-    /**
-     * 垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other
-     */
-    @Excel(name = "垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other", width = 15)
-    @Schema(description = "垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other")
-    private String wasteEnquiryType;
-    /**
-     * 询盘关联产品
-     */
-    @Excel(name = "询盘关联产品", width = 15)
-    @Schema(description = "询盘关联产品")
-    private String cartItems;
-
-    /**
-     * 用于判断是否是·产品询盘·
-     */
-    @TableField(exist = false)
-    private Integer existProductEnquiry;
-
-    /**
-     * 用于判断是否是同步询盘进行发送询盘邮件
-     */
-    @TableField(exist = false)
-    private String isEnquirySync;
-
-    /**
-     * 用于判断是否是·联系我们询盘·
-     */
-    @TableField(exist = false)
-    private Integer existContactEnquiry;
+  private static final long serialVersionUID = 1L;
+
+  /** 主键ID */
+  @TableId(type = IdType.AUTO)
+  @Schema(description = "主键ID")
+  private Long id;
+
+  /** 询盘单号、根据系统规定生成 */
+  @Excel(name = "询盘单号、根据系统规定生成", width = 15)
+  @Schema(description = "询盘单号、根据系统规定生成")
+  private String no;
+
+  /** 询盘来源IP */
+  @Excel(name = "询盘来源IP", width = 15)
+  @Schema(description = "询盘来源IP")
+  private String fromIp;
+
+  /** 询盘发送者邮箱账号 */
+  @Excel(name = "询盘发送者邮箱账号", width = 15)
+  @Schema(description = "询盘发送者邮箱账号")
+  private String fromEmail;
+
+  /** 询盘模块:web:网站询盘 ;email:邮件询盘 ;diy_element:自定义组件询盘 */
+  @Excel(name = "询盘模块:web:网站询盘 ;email:邮件询盘  ;diy_element:自定义组件询盘", width = 15)
+  @Schema(description = "询盘模块:web:网站询盘 ;email:邮件询盘  ;diy_element:自定义组件询盘")
+  private String modular;
+
+  /** 发送人姓名 */
+  @Excel(name = "发送人姓名", width = 15)
+  @Schema(description = "发送人姓名")
+  private String fromUser;
+
+  /** 0删除,1有效,默认值1 2:待解析 3:数据解析中 4.解析失败 */
+  @Excel(name = "0删除,1有效,默认值1   2:待解析  3:数据解析中 4.解析失败", width = 15)
+  @Schema(description = "0删除,1有效,默认值1   2:待解析  3:数据解析中 4.解析失败")
+  private Integer status;
+
+  /** 数据解析次数 */
+  @Excel(name = "数据解析次数", width = 15)
+  @Schema(description = "数据解析次数")
+  private Integer dealCount;
+
+  /** 系统有效性 0:无效 1;有效 后台字段 */
+  @Excel(name = "系统有效性  0:无效       1;有效 后台字段", width = 15)
+  @Schema(description = "系统有效性  0:无效       1;有效 后台字段")
+  private Integer sysEffective;
+
+  /** 用户有效性 0:无效 1:有效 2 : 待定 取自字典表 */
+  @Excel(name = "用户有效性  0:无效       1:有效   2 : 待定 取自字典表", width = 15)
+  @Schema(description = "用户有效性  0:无效       1:有效   2 : 待定 取自字典表")
+  private Integer userEffective;
+
+  /** 敏感信息 */
+  @Excel(name = "敏感信息", width = 15)
+  @Schema(description = "敏感信息")
+  private String sensitiveMessage;
+
+  /** 询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃) */
+  @Excel(name = "询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)", width = 15)
+  @Schema(description = "询盘阶段,由跟踪来决定(1:待沟通 ;2:沟通中;3:成单;4;放弃)")
+  private String phase;
+
+  /** 跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止) */
+  @Excel(name = "跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)", width = 15)
+  @Schema(description = "跟进跟进状态,由跟踪来决定(1:待跟进 ;2:跟进中;3:完成;4;停止)")
+  private String trackStatus;
+
+  /** 询盘所属用户主账号ID */
+  @Excel(name = "询盘所属用户主账号ID", width = 15)
+  @Schema(description = "询盘所属用户主账号ID")
+  private String uid;
+
+  /** 询盘跟进人 id */
+  @Excel(name = "询盘跟进人 id", width = 15)
+  @Schema(description = "询盘跟进人 id")
+  private Integer tracker;
+
+  /** 询盘创建时间 */
+  @Excel(name = "询盘创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "询盘创建时间")
+  private Date recordCtime;
+
+  /** ADMP平台创建时间 */
+  @Excel(name = "ADMP平台创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "ADMP平台创建时间")
+  private Date ctime;
+
+  /** 国家/地区(根据ip获取) */
+  @Excel(name = "国家/地区(根据ip获取)", width = 15)
+  @Schema(description = "国家/地区(根据ip获取)")
+  private String country;
+
+  /** 询盘插件名称,名称小写,如:wpforms */
+  @Excel(name = "询盘插件名称,名称小写,如:wpforms", width = 15)
+  @Schema(description = "询盘插件名称,名称小写,如:wpforms")
+  private String pluginName;
+
+  /** 站点code,关联站点表 */
+  @Excel(name = "站点code,关联站点表", width = 15)
+  @Schema(description = "站点code,关联站点表")
+  private String siteCode;
+
+  /** 站点token */
+  @Excel(name = "站点token", width = 15)
+  @Schema(description = "站点token")
+  private String siteToken;
+
+  /** 询盘来自站点的域名 */
+  @Excel(name = "询盘来自站点的域名", width = 15)
+  @Schema(description = "询盘来自站点的域名")
+  private String siteHost;
+
+  /** 询盘原站点记录ID */
+  @Excel(name = "询盘原站点记录ID", width = 15)
+  @Schema(description = "询盘原站点记录ID")
+  private String recordId;
+
+  /** 状态更新时间 */
+  @Excel(name = "状态更新时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "状态更新时间")
+  private Date utime;
+
+  /** 回复时间 */
+  @Excel(name = "回复时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "回复时间")
+  private Date replyTime;
+
+  /** 转发状态:0未转发,1已转发,默认值0 */
+  @Excel(name = "转发状态:0未转发,1已转发,默认值0", width = 15)
+  @Schema(description = "转发状态:0未转发,1已转发,默认值0")
+  private Integer forward;
+
+  /** 转发时间 */
+  @Excel(name = "转发时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "转发时间")
+  private Date forwardTime;
+
+  /** 访客id */
+  @Excel(name = "访客id", width = 15)
+  @Schema(description = "访客id")
+  private String visitId;
+
+  /** 来源于站点的id */
+  @Excel(name = "来源于站点的id", width = 15)
+  @Schema(description = "来源于站点的id")
+  private Integer siteId;
+
+  /** 公司id */
+  @Excel(name = "公司id", width = 15)
+  @Schema(description = "公司id")
+  private Integer companyId;
+
+  /** 联系人id,字符串组合 */
+  @Excel(name = "联系人id,字符串组合", width = 15)
+  @Schema(description = "联系人id,字符串组合")
+  private String contactIds;
+
+  /** 定时器任务修改查询唯一标识(10位随机数) */
+  @Excel(name = "定时器任务修改查询唯一标识(10位随机数)", width = 15)
+  @Schema(description = "定时器任务修改查询唯一标识(10位随机数)")
+  private String jobId;
+
+  /** 回复状态 */
+  @Excel(name = "回复状态", width = 15)
+  @Schema(description = "回复状态")
+  private String replayStatus;
+
+  /** 外部编号 */
+  @Excel(name = "外部编号", width = 15)
+  @Schema(description = "外部编号")
+  private String noOut;
+
+  /** 处理后的询盘当地时间字段 */
+  @Excel(name = "处理后的询盘当地时间字段", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "处理后的询盘当地时间字段")
+  private Date modifyRecordCtime;
+
+  /** transContent */
+  @Excel(name = "transContent", width = 15)
+  @Schema(description = "transContent")
+  private String transContent;
+
+  /** 国家code */
+  @Excel(name = "国家code", width = 15)
+  @Schema(description = "国家code")
+  private String countryCode;
+
+  /** 国家名 */
+  @Excel(name = "国家名", width = 15)
+  @Schema(description = "国家名")
+  private String countryName;
+
+  /** whatsApp */
+  @Excel(name = "whatsApp", width = 15)
+  @Schema(description = "whatsApp")
+  private String whatsApp;
+
+  /** 0:不是;1:是 */
+  @Excel(name = "0:不是;1:是", width = 15)
+  @Schema(description = "0:不是;1:是")
+  private Integer wasteEnquiry;
+
+  /** 推送状态,0:待发送,1:成功,2不予发送 */
+  @Excel(name = "推送状态,0:待发送,1:成功,2不予发送", width = 15)
+  @Schema(description = "推送状态,0:待发送,1:成功,2不予发送")
+  private Integer pushStatus;
+
+  /** 推送错误次数 */
+  @Excel(name = "推送错误次数", width = 15)
+  @Schema(description = "推送错误次数")
+  private Integer pushErrorNum;
+
+  /** 姓名 */
+  @Excel(name = "姓名", width = 15)
+  @Schema(description = "姓名")
+  private String name;
+
+  /** 邮箱地址 */
+  @Excel(name = "邮箱地址", width = 15)
+  @Schema(description = "邮箱地址")
+  private String email;
+
+  /** 询盘信息 */
+  @Excel(name = "询盘信息", width = 15)
+  @Schema(description = "询盘信息")
+  private String message;
+
+  /** 公司名称 */
+  @Excel(name = "公司名称", width = 15)
+  @Schema(description = "公司名称")
+  private String company;
+
+  /** 来源页面 */
+  @Excel(name = "来源页面", width = 15)
+  @Schema(description = "来源页面")
+  private String fromPage;
+
+  /** form表单传入Ip */
+  @Excel(name = "form表单传入Ip", width = 15)
+  @Schema(description = "form表单传入Ip")
+  private String customerIp;
+
+  /** 手机号 */
+  @Excel(name = "手机号", width = 15)
+  @Schema(description = "手机号")
+  private String phone;
+
+  /** whatsapp */
+  private String whatsapp;
+
+  /** 阅读状态,0是未阅读,1是已阅读 */
+  @Excel(name = "阅读状态,0是未阅读,1是已阅读", width = 15)
+  @Schema(description = "阅读状态,0是未阅读,1是已阅读")
+  private Integer readStatus;
+
+  /** 负责人的id */
+  @Excel(name = "负责人的id", width = 15)
+  @Schema(description = "负责人的id")
+  private String principalUid;
+
+  /** 0代表系统根据规则分配,1代表主账户指定 */
+  @Excel(name = "0代表系统根据规则分配,1代表主账户指定", width = 15)
+  @Schema(description = "0代表系统根据规则分配,1代表主账户指定")
+  private Integer principalType;
+
+  /** form表单中的地址 */
+  @Excel(name = "form表单中的地址", width = 15)
+  @Schema(description = "form表单中的地址")
+  private String address;
+
+  /** 客户自定义字段 */
+  @Excel(name = "客户自定义字段", width = 15)
+  @Schema(description = "客户自定义字段")
+  private String specialField;
+
+  /** 向Wp发送请求时间 */
+  @Excel(name = "向Wp发送请求时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "向Wp发送请求时间")
+  private Date requestTime;
+
+  /** Adweb实时获取WebHookS消息时间,定时器无该值 */
+  @Excel(name = "Adweb实时获取WebHookS消息时间,定时器无该值", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+  @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+  @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+  @Schema(description = "Adweb实时获取WebHookS消息时间,定时器无该值")
+  private Date acquireMessageTime;
+
+  /** 疑似垃圾询盘理由 */
+  @Excel(name = "疑似垃圾询盘理由", width = 15)
+  @Schema(description = "疑似垃圾询盘理由")
+  private String effectiveReason;
+
+  /** 垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other */
+  @Excel(name = "垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other", width = 15)
+  @Schema(description = "垃圾询盘类型,关键词:keyword,邮箱:email,ip: ip,其他:other")
+  private String wasteEnquiryType;
+
+  /** 询盘关联产品 */
+  @Excel(name = "询盘关联产品", width = 15)
+  @Schema(description = "询盘关联产品")
+  private String cartItems;
+
+  /** 用于判断是否是·产品询盘· */
+  @TableField(exist = false)
+  private Integer existProductEnquiry;
+
+  /** 用于判断是否是同步询盘进行发送询盘邮件 */
+  @TableField(exist = false)
+  private String isEnquirySync;
+
+  /** 用于判断是否是·联系我们询盘· */
+  @TableField(exist = false)
+  private Integer existContactEnquiry;
 }

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

@@ -416,10 +416,6 @@ public class AdwebUserCountryController
   @PostMapping(value = "/updateSendEmailType")
   public Result<?> updateSendEmailType(
       @RequestParam Integer siteId, @RequestParam String sendEmailType) {
-    LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
-    //        if(sysUser.isPerform()){
-    //            return Result.FORBIDDEN("\"演示版\"没有操作权限,如果需要操作,请切换到\"正式版\"再操作!");
-    //        }
     LambdaUpdateWrapper<AdwebSite> updateWrapper = new LambdaUpdateWrapper<>();
     updateWrapper.eq(AdwebSite::getId, siteId);
     updateWrapper.set(AdwebSite::getEnquirySendEmailType, sendEmailType);

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

@@ -41,7 +41,8 @@
     </select>
     <select id="getSubUserOptions" resultType="org.jeecg.modules.adweb.userCountry.dto.SubUser">
         SELECT t1.id,
-               t1.realname username
+               t1.username username,
+               t1.realname realname
         FROM adweb_master_sub_account_relation t0,
              sys_user t1
         WHERE t0.sub_id = t1.id