1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.fzzy.igds.notify;
|
| import com.fzzy.igds.constant.OrderRespEnum;
| import com.fzzy.igds.data.QuantityProgressData;
|
| /**
| * @Description
| * @Author CZT
| * @Date 2026/01/08 16:36
| */
| public interface NotifyWebInvoker {
|
| String BEAN_ID = "notifyWebInvoker";
|
| /**
| * 直接通知页面
| *
| * @param companyId
| * @param orderResp
| * @param notifyMsg
| */
| void notifyWeb(String companyId, OrderRespEnum orderResp, String bizType,String notifyMsg);
|
| void notifyQuantityProgress(QuantityProgressData progress);
| }
|
|