package com.kmall.api.dao; import com.kmall.api.entity.MallOrderRefund; import com.kmall.common.dao.BaseDao; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; @Component public interface ApiOrderRefundMapper extends BaseDao { MallOrderRefund selectByPrimaryKey(Integer id); MallOrderRefund queryObjectByOrderId(@Param("orderId") String orderId); }