1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.system.mapper;
|
| import java.util.List;
| import com.ruoyi.system.domain.PayInfo;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 支付信息Mapper接口
| */
| @Mapper
| public interface PayInfoMapper {
| /**
| * 根据服务订单ID查询支付信息列表
| *
| * @param serviceOrdIDDt 服务订单ID
| * @return 支付信息列表
| */
| public List<PayInfo> selectPayInfoByServiceOrdIDDt(String serviceOrdIDDt);
| }
|
|