yangys
2024-05-18 040976de6f9934b99f30268a28e2ecf42260e217
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.qianwen.smartman.modules.notify.service.impl;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.qianwen.core.mp.base.BaseServiceImpl;
import com.qianwen.smartman.modules.notify.entity.NotifySubscriberEntity;
import com.qianwen.smartman.modules.notify.mapper.NotifySubscriberMapper;
import com.qianwen.smartman.modules.notify.service.INotifySubscriberService;
import org.springframework.stereotype.Service;
 
@Service
 
public class NotifySubscriberServiceImpl extends BaseServiceImpl<NotifySubscriberMapper, NotifySubscriberEntity> implements INotifySubscriberService {
    private static final Logger log = LoggerFactory.getLogger(NotifySubscriberServiceImpl.class);
}