1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.xmzs.system.mapper;
|
| import com.xmzs.system.domain.PaymentOrders;
| import com.xmzs.system.domain.vo.PaymentOrdersVo;
| import com.xmzs.common.mybatis.core.mapper.BaseMapperPlus;
|
| /**
| * 支付订单Mapper接口
| *
| * @author Lion Li
| * @date 2023-12-29
| */
| public interface PaymentOrdersMapper extends BaseMapperPlus<PaymentOrders, PaymentOrdersVo> {
|
| }
|
|