| | |
| | | package cc.mrbird.febs.dapp.mapper; |
| | | |
| | | import cc.mrbird.febs.dapp.entity.DappStorage; |
| | | import cn.hutool.core.date.DateTime; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | |
| | | |
| | | List<DappStorage> selectListByDate( @Param("date") Date date); |
| | | |
| | | DappStorage selectAmountByDesc(@Param("date") Date date,int offset,int count); |
| | | List<DappStorage> selectListByDateFiveToFiver(@Param("startTime")DateTime startTime); |
| | | |
| | | DappStorage selectAmountByDesc(@Param("date") Date date,@Param("offset")int offset,@Param("count")int count); |
| | | |
| | | DappStorage selectOneByCreateTimeDesc(@Param("offset")int offset,@Param("count")int count); |
| | | |
| | | List<DappStorage> selectByAmountDesc(@Param("date") Date date,@Param("offset")int offset,@Param("count")int count); |
| | | |
| | | List<DappStorage> selectSumByAmountDesc(@Param("date") Date date,@Param("offset")int offset,@Param("count")int count); |
| | | |
| | | DappStorage selectAmountByAmountDesc(@Param("memberId")Long memberId,@Param("offset")int offset,@Param("count")int count); |
| | | |
| | | IPage<DappStorage> selectListInPage(@Param("record")DappStorage dappStorage, Page<DappStorage> page); |
| | | |
| | | List<DappStorage> selectListGroupByMemberId(); |
| | | |
| | | List<DappStorage> selectSumByAmountDescFiveToFive(@Param("startTime")DateTime startTime, @Param("offset")int offset,@Param("count")int count); |
| | | |
| | | DappStorage selectNewRecordByRefMemberId(@Param("memberId")Long memberId); |
| | | } |