TShandeMchService.java 536 B

1234567891011121314151617181920212223
  1. package com.szwl.service;
  2. import com.szwl.model.entity.TShandeMch;
  3. import com.szwl.service.base.MyIService;
  4. import java.io.UnsupportedEncodingException;
  5. import java.math.BigDecimal;
  6. /**
  7. * <p>
  8. * 杉德支付收款信息 服务类
  9. * </p>
  10. *
  11. * @author wuhs
  12. * @since 2022-04-29
  13. */
  14. public interface TShandeMchService extends MyIService<TShandeMch> {
  15. public String refund(Long id , String refundSn , BigDecimal refundAmount , String refundReason , String altRefInfo) throws UnsupportedEncodingException;
  16. void jiesuan();
  17. }