| | |
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity; |
| | | import com.xcong.excoin.modules.coin.entity.ZhiYaEntity; |
| | | import com.xcong.excoin.modules.coin.entity.ZhiYaRecordEntity; |
| | | import com.xcong.excoin.modules.coin.entity.ZhiyaRewardEntity; |
| | | import com.xcong.excoin.modules.coin.parameter.vo.ZhiyaInfoVo; |
| | | import com.xcong.excoin.modules.coin.parameter.vo.ZhiyaRewardVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface ZhiYaRecordDao extends BaseMapper<ZhiYaRecordEntity> { |
| | |
| | | List<ZhiyaInfoVo> selectByMemberId(@Param("memberId")Long memberId); |
| | | |
| | | IPage<ZhiyaInfoVo> selectByMemberIdInPage(Page<ZhiyaInfoVo> page, @Param("record") ZhiYaEntity zhiya); |
| | | |
| | | IPage<ZhiyaRewardVo> selectZhiyaRewardByMemberIdInPage(Page<ZhiyaRewardVo> page, @Param("record") ZhiyaRewardEntity zhiyaRewardEntity); |
| | | |
| | | List<ZhiYaRecordEntity> selectZhiYaRewardByStatueAndTime(@Param("orderStatus")int i, @Param("now")Date date); |
| | | |
| | | Long selectTotalGusdByStatueAndTime(@Param("orderStatus")int i, @Param("now")Date date); |
| | | |
| | | // void selectZhiYaRewardByStatueAndTime(@Param("orderStatus")int i, @Param("now")Date date); |
| | | } |