1
2
3
4
5
6
7
8
9
10
11
12
| package com.gkhy.safePlatform.specialWork.service.baseService;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.gkhy.safePlatform.specialWork.entity.WorkAnalysisConsumerLog;
|
| public interface WorkAnalysisConsumerLogService extends IService<WorkAnalysisConsumerLog> {
|
| long countByMessageKey(String messageKey);
|
| void saveConsumerLog(WorkAnalysisConsumerLog consumerLog);
|
| }
|
|