Pu Zhibing
9 天以前 d6a0c57043e8cc20694a3c678bf8e3a8f28f6499
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.order.service.impl.account;
 
import com.ruoyi.order.domain.pojo.account.OrderRefund;
import com.ruoyi.order.mapper.account.OrderRefundMapper;
import com.ruoyi.order.service.account.OrderRefundService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 订单退款 服务实现类
 * </p>
 *
 * @author jqs
 * @since 2023-06-02
 */
@Service
public class OrderRefundServiceImpl extends ServiceImpl<OrderRefundMapper, OrderRefund> implements OrderRefundService {
 
}