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.qxueyou.scc.base.service;
|
| import com.qxueyou.scc.base.model.Result;
|
| /**
| * ONSÑϸñÒì³£´¦Àí£¬ÏûÏ¢´¦Àí¶¼²¶»ñException£¬²¢ÇÒ²»Å׳ö£¬½«Òì³£´æÈë±íÖÐ
| * @author ody.yuan
| *
| */
| public interface IONSExceptionLogService {
|
|
| /**
| * ONS ÈÕÖ¾¼Ç¼
| *
| * @param topic ¶©ÔÄÖ÷Ìâ
| * @param msgType ͬһ¶©ÔÄÖ÷ÌâÖ§³Å¶à¸öÒµÎñÀàÐÍʱ£¬ÒµÎñÀàÐÍ
| * @param businessIdÒì³£¶ÑÕ»£º×Ô¶¨ÒåID
| * @param desp ²ÎÊýÁбí
| * @return
| */
| Result logSaveExceptionLog(String topic, String msgType, String businessId, String desp);
|
|
| }
|
|