1
2
3
4
5
6
7
8
9
10
11
12
| package com.doumee.dao.business;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.doumee.dao.business.model.Refund;
| import com.github.yulichang.base.MPJBaseMapper;
| /**
| * 订单退款信息表Mapper定义
| * @author doumee
| * @date 2026-02-06 11:35:16
| */
| public interface RefundMapper extends MPJBaseMapper<Refund> {
| }
|
|