12345678910111213141516171819202122232425262728293031 |
- package com.qtzl.alterSales.manager.service;
-
-
- import com.qtzl.alterSales.manager.enums.BlackListReson;
- import com.qtzl.alterSales.manager.enums.BlacklistOpType;
-
- /***
- * <p>
- * 黑名单管理
- * </p>
- * @author hou yi
- * {@code @date} 2024/4/14 13:11
- **/
-
- public interface AflBlackInfoManager {
-
- /***
- * 状态名单执行
- * @param agreementNum 用户协议号
- * @param opType 状态名单类型
- * @param reason 原因
- * @param orderId 流水订单号
- * @param payId 流水交易单号
- * @param agencyId 渠道编号
- * @param blackListReson \
- * @param createTime \
- */
- void execute(String agreementNum, BlacklistOpType opType, String reason, String orderId, String payId, String agencyId,
- BlackListReson blackListReson, String createTime);
-
- }
|