| | |
| | | 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); |
| | | |
| | | 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);
|
| | |
|
| | | } |