123
This commit is contained in:
@@ -3,6 +3,9 @@ package com.ruoyi.cai.service;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.SysPush;
|
||||
import com.ruoyi.cai.dto.admin.query.syspush.SysPushParams;
|
||||
import com.ruoyi.cai.dto.admin.vo.syspush.SendSysPushResp;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 推送系统消息Service接口
|
||||
@@ -13,4 +16,16 @@ import com.ruoyi.cai.dto.admin.query.syspush.SysPushParams;
|
||||
public interface SysPushService extends IService<SysPush> {
|
||||
|
||||
void saveSysPush(SysPushParams params);
|
||||
|
||||
void fastStart(Long id);
|
||||
|
||||
void handStart(Long id);
|
||||
|
||||
void doRun(Long id);
|
||||
|
||||
SendSysPushResp sendSysPush(SysPush sysPush, List<Long> userIds);
|
||||
|
||||
void checkAll();
|
||||
|
||||
void closeSysPush(Long id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user