update 后管订单详情页查询退款信息

This commit is contained in:
2023-09-15 14:25:51 +08:00
parent cadfa31c98
commit 2fe34b5bf7
6 changed files with 30 additions and 7 deletions

View File

@@ -82,4 +82,6 @@ public interface MemberWalletLogMapper {
* @return
*/
List<MemberBalanceVO> getMemberRefundAmount(List<String> memberIds);
MemberWalletLog getOrderRecord(@Param("orderCode") String orderCode, @Param("type") String type);
}

View File

@@ -15,4 +15,5 @@ public interface IMemberWalletLogService {
int updateByPrimaryKey(MemberWalletLog record);
MemberWalletLog getOrderRecord(String orderCode, String type);
}

View File

@@ -43,4 +43,9 @@ public class MemberWalletLogServiceImpl implements IMemberWalletLogService {
return memberWalletLogMapper.updateByPrimaryKey(record);
}
@Override
public MemberWalletLog getOrderRecord(String orderCode, String type) {
return memberWalletLogMapper.getOrderRecord(orderCode, type);
}
}