package com.xcong.excoin.modules.coin.dao;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
|
import com.xcong.excoin.modules.coin.entity.ZhiYaRecordEntity;
|
import org.apache.ibatis.annotations.Param;
|
|
public interface ZhiYaRecordDao extends BaseMapper<ZhiYaRecordEntity> {
|
|
long getOrderCountByToday(@Param("now")String now, @Param("tomorrow") String tomorrow);
|
|
ZhiYaRecordEntity selectByMemberIdAndOrderStatus(@Param("memberId")Long memberId,@Param("orderStatus") Integer orderStatus);
|
}
|