|
@@ -14,7 +14,10 @@ import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
- * @Description: 询盘信息存储表单 @Author: jeecg-boot @Date: 2024-10-12 @Version: V1.0
|
|
|
+ * @Description: 询盘信息存储表单
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2024-10-12
|
|
|
+ * @Version: V1.0
|
|
|
*/
|
|
|
public interface AdwebEnquiryMapper extends BaseMapper<AdwebEnquiry> {
|
|
|
|
|
@@ -26,21 +29,22 @@ public interface AdwebEnquiryMapper extends BaseMapper<AdwebEnquiry> {
|
|
|
* @param ctimeEnd
|
|
|
* @return
|
|
|
*/
|
|
|
- IPage<EnquiryListDto> selectEnquiryList(
|
|
|
- IPage<EnquirySearchDto> page,
|
|
|
- @Param("codeList") List<String> codeList,
|
|
|
- @Param("userEffective") String userEffective,
|
|
|
- @Param("wasteEnquiryType") String wasteEnquiryType,
|
|
|
- @Param("searchText") String searchText,
|
|
|
- @Param("searchContent") String searchContent,
|
|
|
- @Param("ctimeBegin") Date ctimeBegin,
|
|
|
- @Param("ctimeEnd") Date ctimeEnd,
|
|
|
- @Param("whatsApp") String whatsApp,
|
|
|
- @Param("readStatus") Integer readStatus,
|
|
|
- @Param("principalUid") String principalUid,
|
|
|
- @Param("selfPrincipalUid") String selfPrincipalUid);
|
|
|
+ IPage<EnquiryListDto> selectEnquiryList(IPage<EnquirySearchDto> page,
|
|
|
+ @Param("codeList") List<String> codeList,
|
|
|
+ @Param("userEffective") String userEffective,
|
|
|
+ @Param("wasteEnquiryType") String wasteEnquiryType,
|
|
|
+ @Param("searchText") String searchText,
|
|
|
+ @Param("searchContent") String searchContent,
|
|
|
+ @Param("ctimeBegin") Date ctimeBegin,
|
|
|
+ @Param("ctimeEnd") Date ctimeEnd,
|
|
|
+ @Param("whatsApp") String whatsApp,
|
|
|
+ @Param("readStatus") Integer readStatus,
|
|
|
+ @Param("principalUid") String principalUid,
|
|
|
+ @Param("selfPrincipalUid") String selfPrincipalUid);
|
|
|
|
|
|
- /** 根据地区更新询盘跟进人 */
|
|
|
+ /**
|
|
|
+ * 根据地区更新询盘跟进人
|
|
|
+ */
|
|
|
void updatePrincipalUidByRegion(Integer siteId, List<Integer> siteIds);
|
|
|
|
|
|
/**
|
|
@@ -52,25 +56,17 @@ public interface AdwebEnquiryMapper extends BaseMapper<AdwebEnquiry> {
|
|
|
* @param ctimeEnd
|
|
|
* @return
|
|
|
*/
|
|
|
- IPage<EnquiryListDto> queryWasteEnquiryList(
|
|
|
- IPage<EnquirySearchDto> page,
|
|
|
- @Param("codeList") List<String> codeList,
|
|
|
- @Param("siteId") String siteId,
|
|
|
- @Param("userEffective") String userEffective,
|
|
|
- @Param("searchText") String searchText,
|
|
|
- @Param("ctimeBegin") String ctimeBegin,
|
|
|
- @Param("ctimeEnd") String ctimeEnd,
|
|
|
- @Param("whatsApp") String whatsApp,
|
|
|
- @Param("principalUid") String principalUid);
|
|
|
+ IPage<EnquiryListDto> queryWasteEnquiryList(IPage<EnquirySearchDto> page,
|
|
|
+ @Param("codeList") List<String> codeList,
|
|
|
+ @Param("siteId") String siteId,
|
|
|
+ @Param("userEffective") String userEffective,
|
|
|
+ @Param("searchText") String searchText,
|
|
|
+ @Param("ctimeBegin") String ctimeBegin,
|
|
|
+ @Param("ctimeEnd") String ctimeEnd,
|
|
|
+ @Param("whatsApp") String whatsApp,
|
|
|
+ @Param("principalUid") String principalUid);
|
|
|
|
|
|
- List<EnquiryListDto> getWastedEnquiry(
|
|
|
- String wasteEnquiryType,
|
|
|
- String ip,
|
|
|
- String email,
|
|
|
- String keyword,
|
|
|
- String searchText,
|
|
|
- String type,
|
|
|
- Integer siteId);
|
|
|
+ List<EnquiryListDto> getWastedEnquiry(String wasteEnquiryType, String ip, String email, String keyword, String searchText, String type, Integer siteId);
|
|
|
|
|
|
/**
|
|
|
* 获取每日询盘数量
|