|
|
|
|
3
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
3
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
4
|
import com.huiju.estateagents.statistic.entity.TsPersonFromStatistic;
|
4
|
import com.huiju.estateagents.statistic.entity.TsPersonFromStatistic;
|
5
|
import org.apache.ibatis.annotations.Mapper;
|
5
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
6
|
+import org.apache.ibatis.annotations.Param;
|
6
|
|
7
|
|
7
|
import java.time.LocalDate;
|
8
|
import java.time.LocalDate;
|
8
|
import java.util.List;
|
9
|
import java.util.List;
|
|
|
|
|
20
|
|
21
|
|
21
|
void insertStatisticList(List<TsPersonFromStatistic> list);
|
22
|
void insertStatisticList(List<TsPersonFromStatistic> list);
|
22
|
|
23
|
|
23
|
- List<TsPersonFromStatistic> selectPersonFrom(Integer orgId, LocalDate startDate, LocalDate endDate);
|
|
|
|
|
24
|
+ List<TsPersonFromStatistic> selectPersonFrom(@Param("orgId") Integer orgId, @Param("startDate") LocalDate startDate, @Param("endDate") LocalDate endDate);
|
24
|
|
25
|
|
25
|
- List<TsPersonFromStatistic> selectPersonFromGroupByDay(Integer orgId, LocalDate startDate, LocalDate endDate);
|
|
|
|
|
26
|
+ List<TsPersonFromStatistic> selectPersonFromGroupByDay(@Param("orgId") Integer orgId, @Param("startDate") LocalDate startDate, @Param("endDate") LocalDate endDate);
|
26
|
|
27
|
|
27
|
- List<TsPersonFromStatistic> selectPersonFromGroupByData(Integer orgId, LocalDate startDate, LocalDate endDate);
|
|
|
|
|
28
|
+ List<TsPersonFromStatistic> selectPersonFromGroupByData(@Param("orgId") Integer orgId, @Param("startDate") LocalDate startDate, @Param("endDate") LocalDate endDate);
|
28
|
|
29
|
|
29
|
void deleteByData();
|
30
|
void deleteByData();
|
30
|
}
|
31
|
}
|