1234567891011121314151617181920212223 |
- package com.szwl.service;
- import com.szwl.model.entity.TShandeMch;
- import com.szwl.service.base.MyIService;
- import java.io.UnsupportedEncodingException;
- import java.math.BigDecimal;
- /**
- * <p>
- * 杉德支付收款信息 服务类
- * </p>
- *
- * @author wuhs
- * @since 2022-04-29
- */
- public interface TShandeMchService extends MyIService<TShandeMch> {
- public String refund(Long id , String refundSn , BigDecimal refundAmount , String refundReason , String altRefInfo) throws UnsupportedEncodingException;
- void jiesuan();
- }
|