| | |
| | | import com.xcong.excoin.modules.contract.entity.ContractEntrustOrderEntity; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author helius |
| | | */ |
| | | public interface ContractEntrustOrderDao extends BaseMapper<ContractEntrustOrderEntity> { |
| | | |
| | | public ContractEntrustOrderEntity selectEntrustOrderByIdAndMemberId(@Param("id") Long id, @Param("memberId") Long memberId); |
| | | |
| | | public List<ContractEntrustOrderEntity> selectEntrustOrderListByMemberId(@Param("memberId") Long memberId); |
| | | |
| | | public List<ContractEntrustOrderEntity> selectEntrustOrderListByIds(@Param("list") List<Long> list); |
| | | } |