1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.yeshi.fanli.dao.mybatis.integral;
|
| import org.apache.ibatis.annotations.Param;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.integral.UserGetIntegralFromOrderRecord;
|
| public interface UserGetIntegralFromOrderRecordMapper extends BaseMapper<UserGetIntegralFromOrderRecord> {
|
| /**
| * 根据用户,事件类型,订单信息计数
| *
| * @param eventType
| * @param uid
| * @param orderNo
| * @param orderSourceType
| * @return
| */
| long countByRecordInfo(@Param("record") UserGetIntegralFromOrderRecord record);
|
| }
|
|