1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package cn.lili.modules.statistics.service;
|
| import cn.lili.modules.member.entity.dos.MemberEvaluation;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * 会员商品评价统计
| *
| * @author Bulbasaur
| * @since 2020-02-25 14:10:16
| */
| public interface MemberEvaluationStatisticsService extends IService<MemberEvaluation> {
|
| /**
| * 获取今天新增的评价数量
| *
| * @return 今日评价数量
| */
| long todayMemberEvaluation();
|
| /**
| * 获取等待回复评价数量
| *
| * @return 等待回复评价数量
| */
| long getWaitReplyNum();
|
| }
|
|