You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
502 B
22 lines
502 B
package com.cyl.oms.mapper;
|
|
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.cyl.oms.domain.RefundItem;
|
|
|
|
/**
|
|
* 订单售后Mapper接口
|
|
*
|
|
* @author zcc
|
|
*/
|
|
public interface RefundItemMapper extends BaseMapper<RefundItem> {
|
|
/**
|
|
* 查询订单售后列表
|
|
*
|
|
* @param refundItem 订单售后
|
|
* @return 订单售后集合
|
|
*/
|
|
List<RefundItem> selectByEntity(RefundItem refundItem);
|
|
}
|