|
@@ -4,7 +4,9 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
4
|
4
|
import com.huiju.estateagents.statistic.entity.GenderStatistic;
|
5
|
5
|
import com.huiju.estateagents.statistic.entity.TsCustomerGenderStatistic;
|
6
|
6
|
import org.apache.ibatis.annotations.Mapper;
|
|
7
|
+import org.apache.ibatis.annotations.Param;
|
7
|
8
|
|
|
9
|
+import java.time.LocalDateTime;
|
8
|
10
|
import java.util.List;
|
9
|
11
|
|
10
|
12
|
/**
|
|
@@ -21,8 +23,9 @@ public interface TsCustomerGenderStatisticMapper extends BaseMapper<TsCustomerGe
|
21
|
23
|
/**
|
22
|
24
|
* 获取新增客户的男女性别比
|
23
|
25
|
* @return
|
|
26
|
+ * @param nowDate
|
24
|
27
|
*/
|
25
|
|
- List<GenderStatistic> getNewCustomerSexCount();
|
|
28
|
+ List<GenderStatistic> getNewCustomerSexCount(@Param("nowDate") LocalDateTime nowDate);
|
26
|
29
|
|
27
|
30
|
/**
|
28
|
31
|
* 获取跟进客户的男女性别比
|