选装售后
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AflBlackInfoManager.java 815B

12345678910111213141516171819202122232425262728293031
  1. package com.qtzl.alterSales.manager.service;
  2. import com.qtzl.alterSales.manager.enums.BlackListReson;
  3. import com.qtzl.alterSales.manager.enums.BlacklistOpType;
  4. /***
  5. * <p>
  6. * 黑名单管理
  7. * </p>
  8. * @author hou yi
  9. * {@code @date} 2024/4/14 13:11
  10. **/
  11. public interface AflBlackInfoManager {
  12. /***
  13. * 状态名单执行
  14. * @param agreementNum 用户协议号
  15. * @param opType 状态名单类型
  16. * @param reason 原因
  17. * @param orderId 流水订单号
  18. * @param payId 流水交易单号
  19. * @param agencyId 渠道编号
  20. * @param blackListReson \
  21. * @param createTime \
  22. */
  23. void execute(String agreementNum, BlacklistOpType opType, String reason, String orderId, String payId, String agencyId,
  24. BlackListReson blackListReson, String createTime);
  25. }