yangys
2024-10-30 c27b939fa5fa6ce4d712f7e9ced2ad811d69d5ec
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);
}