| | |
| | | package com.xcong.excoin.modules.contract.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.xcong.excoin.modules.contract.entity.ContractOrderEntity; |
| | | |
| | | /** |
| | | * @author helius |
| | | */ |
| | | public interface ContractOrderDao extends BaseMapper<ContractOrderEntity> { |
| | | |
| | | public IPage<ContractOrderEntity> selectContractOrderInPage(Page<ContractOrderEntity> page, Long memberId); |
| | | } |