init
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.SysPushLog;
|
||||
|
||||
/**
|
||||
* 推送系统消息记录Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-28
|
||||
*/
|
||||
public interface SysPushLogService extends IService<SysPushLog> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.SysPush;
|
||||
|
||||
/**
|
||||
* 推送系统消息Service接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-28
|
||||
*/
|
||||
public interface SysPushService extends IService<SysPush> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.ruoyi.cai.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.cai.domain.SysPushLog;
|
||||
import com.ruoyi.cai.mapper.SysPushLogMapper;
|
||||
import com.ruoyi.cai.service.SysPushLogService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 推送系统消息记录Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-28
|
||||
*/
|
||||
@Service
|
||||
public class SysPushLogServiceImpl extends ServiceImpl<SysPushLogMapper,SysPushLog> implements SysPushLogService {
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.ruoyi.cai.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ruoyi.cai.domain.SysPush;
|
||||
import com.ruoyi.cai.mapper.SysPushMapper;
|
||||
import com.ruoyi.cai.service.SysPushService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 推送系统消息Service业务层处理
|
||||
*
|
||||
* @author 77
|
||||
* @date 2024-01-28
|
||||
*/
|
||||
@Service
|
||||
public class SysPushServiceImpl extends ServiceImpl<SysPushMapper, SysPush> implements SysPushService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user